/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2017-01-13 18:37:28 */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_aiowps_events` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `event_type` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `username` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `event_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ip_or_host` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referer_info` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `country_code` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `event_data` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_aiowps_failed_logins` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `failed_login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `login_attempt_ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_aiowps_global_meta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta_key1` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_key2` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_key3` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_key4` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_key5` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value1` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value2` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value3` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value4` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value5` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_aiowps_login_activity` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `logout_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `login_ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `login_country` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `browser_type` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_aiowps_login_lockdown` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `lockdown_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `release_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `failed_login_ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `lock_reason` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `unlock_key` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_aiowps_permanent_block` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `blocked_ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `block_reason` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `country_origin` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `blocked_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_datalist` (
  `url` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `keywords` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `content` longtext NOT NULL,
  `full_content` smallint(6) NOT NULL,
  PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `image` text NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) NOT NULL,
  `section` varchar(32) NOT NULL,
  `referencekey` varchar(64) DEFAULT '',
  `value` mediumtext NOT NULL,
  `system` int(11) NOT NULL DEFAULT '0',
  `editable` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `application` (`application`,`section`,`referencekey`),
  KEY `application_2` (`application`,`section`)
) ENGINE=MyISAM AUTO_INCREMENT=10015 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) NOT NULL,
  `type` varchar(254) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `type` varchar(30) NOT NULL,
  `params` mediumtext NOT NULL,
  `time` datetime NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext,
  `description` text NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=18120 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3649 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=663 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  `hover` longtext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `advanced` longtext COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_tpcmem_checkpoints` (
  `checkpoint_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `checkpoint_action` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `checkpoint_desc` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`checkpoint_id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_tpcmem_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `checkpoint_action` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `time` datetime NOT NULL,
  `usage` int(10) unsigned NOT NULL,
  `priority` tinyint(3) unsigned NOT NULL,
  `threshold` smallint(5) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE `wp_wassup` (
  `id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  `wassup_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hostname` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `urlrequested` text COLLATE utf8mb4_unicode_520_ci,
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` text COLLATE utf8mb4_unicode_520_ci,
  `search` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `searchpage` int(11) unsigned DEFAULT '0',
  `os` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `browser` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `language` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `screen_res` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `searchengine` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `spider` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `feed` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `username` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `comment_author` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `spam` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `url_wpid` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `subsite_id` mediumint(9) unsigned DEFAULT '0',
  UNIQUE KEY `id` (`id`),
  KEY `idx_wassup` (`wassup_id`(32)),
  KEY `ip` (`ip`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM AUTO_INCREMENT=1741 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_wassup_meta` (
  `meta_id` int(15) unsigned NOT NULL AUTO_INCREMENT,
  `wassup_key` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_key` varchar(80) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  `meta_expire` int(10) unsigned DEFAULT '0',
  UNIQUE KEY `meta_id` (`meta_id`),
  KEY `wassup_key` (`wassup_key`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_wassup_tmp` (
  `id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  `wassup_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hostname` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `urlrequested` text COLLATE utf8mb4_unicode_520_ci,
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` text COLLATE utf8mb4_unicode_520_ci,
  `search` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `searchpage` int(11) unsigned DEFAULT '0',
  `os` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `browser` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `language` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `screen_res` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `searchengine` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `spider` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `feed` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `username` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `comment_author` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `spam` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `url_wpid` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `subsite_id` mediumint(9) unsigned DEFAULT '0',
  UNIQUE KEY `id` (`id`),
  KEY `idx_wassup` (`wassup_id`(32)),
  KEY `ip` (`ip`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM AUTO_INCREMENT=1759 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `description` longtext COLLATE utf8mb4_unicode_520_ci,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci 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=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `order_id` bigint(20) NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci 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`(191),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) NOT NULL DEFAULT '0',
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) NOT NULL,
  `location_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) NOT NULL,
  `instance_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `method_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `location_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci 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=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci 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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`(191)),
  KEY `tax_rate_state` (`tax_rate_state`(191)),
  KEY `tax_rate_class` (`tax_rate_class`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;


/* INSERT TABLE DATA: wp_aiowps_failed_logins */
INSERT INTO `wp_aiowps_failed_logins` VALUES("1", "0", "admin", "2017-01-03 10:59:38", "201.194.248.*");

/* INSERT TABLE DATA: wp_aiowps_login_activity */
INSERT INTO `wp_aiowps_login_activity` VALUES("1", "1", "sandi", "2017-01-03 10:59:45", "0000-00-00 00:00:00", "201.194.248.88", "", "");
INSERT INTO `wp_aiowps_login_activity` VALUES("2", "1", "sandi", "2017-01-03 11:35:31", "0000-00-00 00:00:00", "201.194.248.88", "", "");
INSERT INTO `wp_aiowps_login_activity` VALUES("3", "1", "sandi", "2017-01-03 11:58:35", "0000-00-00 00:00:00", "201.194.248.88", "", "");
INSERT INTO `wp_aiowps_login_activity` VALUES("4", "1", "sandi", "2017-01-03 11:58:35", "0000-00-00 00:00:00", "201.194.248.88", "", "");
INSERT INTO `wp_aiowps_login_activity` VALUES("5", "1", "sandi", "2017-01-03 11:58:36", "0000-00-00 00:00:00", "201.194.248.88", "", "");

/* INSERT TABLE DATA: wp_commentmeta */
INSERT INTO `wp_commentmeta` VALUES("1", "2", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("2", "2", "_wp_trash_meta_time", "1483118134");

/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("1", "1", "Un comentarista de WordPress", "wapuu@wordpress.example", "https://wordpress.org/", "", "2016-12-31 20:19:22", "2016-12-31 20:19:22", "Hola, esto es un comentario.\nPara empezar a moderar, editar y borrar comentarios, por favor, visita la pantalla de comentarios en el escritorio.\nLos avatares de los comentaristas provienen de <a href=\"https://gravatar.com\">Gravatar</a>.", "0", "post-trashed", "", "", "0", "0");
INSERT INTO `wp_comments` VALUES("2", "10", "A WordPress Commenter", "wapuu@wordpress.example", "https://wordpress.org/", "", "2016-12-29 03:12:44", "2016-12-29 03:12:44", "Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\" rel=\"nofollow\">Gravatar</a>.", "0", "post-trashed", "", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("2", "20170113_sandiseguridadelectronica", "58791dc53bf2a7371170113183445", "20", "2017-01-13 18:37:28", "sandi", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-01-13 18:34:45\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.7.1\";s:9:\"VersionDB\";s:7:\"10.0.28\";s:10:\"VersionPHP\";s:5:\"7.0.6\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:2;s:4:\"Name\";s:34:\"20170113_sandiseguridadelectronica\";s:4:\"Hash\";s:29:\"58791dc53bf2a7371170113183445\";s:8:\"NameHash\";s:64:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:45:\"/home/u585192189/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:31:\"http://csandi.xyz/wp-snapshots/\";s:8:\"ScanFile\";s:74:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:5:\"sandi\";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:76:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:28:\"/home/u585192189/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\":23:{s:7:\"Created\";s:19:\"2017-01-13 18:34:45\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.7.1\";s:9:\"VersionDB\";s:7:\"10.0.28\";s:10:\"VersionPHP\";s:5:\"7.0.6\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:34:\"20170113_sandiseguridadelectronica\";s:4:\"Hash\";s:29:\"58791dc53bf2a7371170113183445\";s:8:\"NameHash\";s:64:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:45:\"/home/u585192189/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:31:\"http://csandi.xyz/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:78:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445_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:52;}s:8:\"Database\";O:12:\"DUP_Database\":12:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:77:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";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:74;s:8:\"Database\";r:87;}");

/* INSERT TABLE DATA: wp_nextend2_image_storage */
INSERT INTO `wp_nextend2_image_storage` VALUES("1", "ea1e22ef0ab1ad54f539f1504b5a38d5", "$ss$/admin/images/dummyslide.png", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("2", "51ac1b6bf02b0b1ca181107f9ef19c2e", "$upload$/2016/12/BANNERNEW-1.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("3", "3791c7638bf09c37fbf8f52e5e7af8aa", "$upload$/2016/12/bannerPATRONS-1.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("4", "cadd454f47a25ddf4ab3085b99776582", "$upload$/2016/12/banner3-1.jpeg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("5", "2fab29e9eaa800c6f86000ea98aa6cdf", "$upload$/2016/12/banner2-1.jpeg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("6", "42a11d2257e11095f2ae91f6b7f503d6", "$upload$/2016/12/banner1.jpeg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("7", "1542a020ec6b31f9010d5c2f7241f73a", "$upload$/2017/01/1.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("8", "64ea9f423cf807091b9283955a956639", "$upload$/2017/01/bocinas.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("9", "234c774e3bb589cbb1dfd45aa9935b74", "$upload$/2017/01/2.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("10", "2b9e5341cff47ef9ee6d5a90fc580f6f", "$upload$/2017/01/2X.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("11", "2b1315d77af7869c2293166f96923260", "$upload$/2017/01/3.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("12", "4c8e4f0d02a2dee4380dd47feba93e17", "$upload$/2017/01/4.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");

/* INSERT TABLE DATA: wp_nextend2_section_storage */
INSERT INTO `wp_nextend2_section_storage` VALUES("10000", "system", "global", "n2_ss3_version", "3.1.2", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10001", "system", "global", "protocol-relative", "1", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10002", "system", "global", "show-joomla-admin-footer", "0", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10003", "system", "global", "jquery", "1", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10004", "system", "global", "async", "0", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10005", "system", "global", "combine-js", "0", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10006", "system", "global", "minify-js", "1", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10007", "system", "global", "scriptattributes", "", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10008", "system", "global", "curl", "1", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10009", "system", "global", "curl-clean-proxy", "0", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10010", "smartslider", "free", "subscribeOnImport", "1", "0", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10011", "smartslider", "sliderChanged", "2", "0", "0", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10012", "smartslider", "sliderChanged", "1", "1", "0", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10013", "smartslider", "settings", "", "{\"beacon\":\"1\",\"discover\":\"1\",\"autoupdatecheck\":\"1\",\"translate-url\":\"|*|\",\"external-css-files\":\"\",\"hardware-acceleration\":\"1\",\"slide-as-file\":\"0\",\"preview-new-window\":\"0\",\"editor-icon\":\"1\",\"wp-adminbar\":\"1\",\"responsive-basedon\":\"combined\",\"responsive-screen-width-desktop-portrait\":\"1200\",\"responsive-screen-width-tablet-landscape\":\"1024\",\"responsive-screen-width-tablet-portrait\":\"800\",\"responsive-screen-width-mobile-LANDSCAPE\":\"740\",\"responsive-screen-width-mobile-portrait\":\"440\",\"responsive-default-ratio-tablet-portrait\":\"70\",\"responsive-default-ratio-mobile-portrait\":\"50\",\"tidy-input-encoding\":\"utf8\",\"tidy-output-encoding\":\"utf8\"}", "0", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10014", "smartslider", "free", "promoUpgrade", "1", "0", "1");

/* INSERT TABLE DATA: wp_nextend2_smartslider3_sliders */
INSERT INTO `wp_nextend2_smartslider3_sliders` VALUES("1", "Sample Slider", "simple", "{\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"12\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJleHRyYSI6IiIsImJhY2tncm91bmRjb2xvciI6IjA5YjQ3NGZmIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-bar-full-size\":0,\"widget-bullet-overlay\":0,\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"120\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-arrow-responsive-desktop\":1,\"widget-arrow-responsive-tablet\":0.7,\"widget-arrow-responsive-mobile\":0.5,\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$/plugins/widgetarrow/image/image/previous/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":1,\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$/plugins/widgetarrow/image/image/next/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":0,\"widget-arrow-next-hover-color\":\"ffffffcc\",\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"align\":\"normal\",\"animation\":\"horizontal\",\"animation-duration\":\"600\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"width\":\"1200\",\"height\":\"600\",\"fontsize\":\"16\",\"margin\":\"0|*|0|*|0|*|0\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"1\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widgetbullet\":\"transition\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-height\":\"81\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widgets\":\"bullet\",\"background\":\"\"}", "2015-11-01 14:14:20", "", "0");
INSERT INTO `wp_nextend2_smartslider3_sliders` VALUES("2", "Banners", "simple", "{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"animation\":\"horizontal\",\"animation-duration\":\"800\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"width\":\"600\",\"height\":\"250\",\"fontsize\":\"16\",\"margin\":\"-10|*|0|*|0|*|0\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveForceFull\":\"1\",\"responsiveSliderOrientation\":\"width_and_height\",\"responsiveSlideWidth\":\"1\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"980\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthConstrainHeight\":\"0\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"weaker-selector\":\"0\",\"overflow-hidden-page\":\"0\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widgetbullet\":\"transition\",\"widget-bullet-display-hover\":\"1\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJvcGFjaXR5IjoxMDAsInBhZGRpbmciOiI1fCp8NXwqfDV8Knw1fCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjUwIiwiZXh0cmEiOiJtYXJnaW46IDRweDsifSx7ImV4dHJhIjoiIiwiYmFja2dyb3VuZGNvbG9yIjoiZDg1OTM1ZmYifV19\",\"widget-bullet-bar\":\"\",\"widgetautoplay\":\"image\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-play\":\"$ss$\\/plugins\\/widgetautoplay\\/image\\/image\\/play\\/small-light.svg\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiMTB8KnwxMHwqfDEwfCp8MTB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMyIsImV4dHJhIjoiIn0seyJiYWNrZ3JvdW5kY29sb3IiOiIwMDAwMDBhYiJ9XX0=\",\"widget-autoplay-position-mode\":\"simple\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-position-horizontal\":\"left\",\"widget-autoplay-position-horizontal-position\":\"0\",\"widget-autoplay-position-horizontal-unit\":\"px\",\"widget-autoplay-position-vertical\":\"top\",\"widget-autoplay-position-vertical-position\":\"0\",\"widget-autoplay-position-vertical-unit\":\"px\",\"widgetbar\":\"disabled\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"shadow\",\"widget-shadow-position-mode\":\"simple\",\"widget-shadow-position-area\":\"12\",\"widget-shadow-position-stack\":\"4\",\"widget-shadow-position-offset\":\"0\",\"widget-shadow-position-horizontal\":\"left\",\"widget-shadow-position-horizontal-position\":\"0\",\"widget-shadow-position-horizontal-unit\":\"px\",\"widget-shadow-position-vertical\":\"top\",\"widget-shadow-position-vertical-position\":\"0\",\"widget-shadow-position-vertical-unit\":\"px\",\"widget-shadow-shadow\":\"$ss$\\/plugins\\/widgetshadow\\/shadow\\/shadow\\/shadow\\/centered.png\",\"widgets\":\"arrow\"}", "2016-12-31 17:09:25", "", "0");

/* INSERT TABLE DATA: wp_nextend2_smartslider3_slides */
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("1", "Slide One", "1", "2015-11-01 12:27:34", "2025-11-11 12:27:34", "1", "0", "[{\"zIndex\":1,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"MartinDwyer\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Martin Dwyer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"ApplicationDeveloper\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Application Developer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]}]", "", "http://smartslider3.com/sample/developerthumbnail.jpg", "{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http://smartslider3.com/sample/programmer.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}", "0", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("2", "Slide Two", "1", "2015-11-01 12:27:34", "2025-11-11 12:27:34", "1", "0", "[{\"zIndex\":1,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"RachelWright\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Rachel Wright\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"ArtDirector&Photographer\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Art Director & Photographer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]}]", "", "http://smartslider3.com/sample/artdirectorthumbnail.jpg", "{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http://smartslider3.com/sample/free1.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}", "1", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("3", "Slide Three", "1", "2015-11-01 12:27:34", "2025-11-11 12:27:34", "1", "0", "[{\"zIndex\":1,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"AndrewButler\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Andrew Butler\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"Photographer&Illustrator\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Photographer & Illustrator\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]}]", "", "http://smartslider3.com/sample/photographerthumbnail.jpg", "{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http://smartslider3.com/sample/photographer.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}", "2", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("4", "BANNERNEW", "2", "2016-12-30 23:13:31", "2026-12-31 23:13:31", "1", "0", "[]", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "$upload$/2016/12/BANNERNEW-1.jpg", "{\"backgroundImage\":\"$upload$\\/2016\\/12\\/BANNERNEW-1.jpg\",\"link\":\"|*|null\"}", "0", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("18", "4", "2", "2017-01-04 00:27:54", "2027-01-05 00:27:54", "1", "0", "[{\"zIndex\":1,\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"Ver catálogo\",\"namesynced\":1,\"crop\":\"visible\",\"rotation\":0,\"inneralign\":\"center\",\"parallax\":0,\"adaptivefont\":1,\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":93,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"items\":[{\"type\":\"button\",\"values\":{\"content\":\"Ver catálogo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjEyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiTW9udHNlcnJhdCxBcmlhbCIsImxpbmVoZWlnaHQiOiIwLjUiLCJib2xkIjo4MDAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJkODU5MzVmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjEwIn0seyJleHRyYSI6IiJ9XX0=\",\"link\":\"http://csandi.xyz/categoria-producto/videovigilancia/|*|_self\",\"fullwidth\":\"0\",\"nowrap\":\"1\"}}]}]", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "$upload$/2017/01/4.jpg", "{\"generator_id\":\"0\",\"background-type\":\"image\",\"backgroundImage\":\"$upload$\\/2017\\/01\\/4.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"Seguridad Electr\\u00f3nica Sand\\u00ed P\\u00e9rez Zeled\\u00f3n, Costa Rica. Alarmas Antirrobo, Detecci\\u00f3n de incendio y CCTV. Zona Sur CR\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\"}", "1", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("16", "1", "2", "2017-01-03 23:30:35", "2027-01-04 23:30:35", "1", "0", "[]", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "$upload$/2017/01/1.jpg", "{\"backgroundImage\":\"$upload$\\/2017\\/01\\/1.jpg\",\"backgroundAlt\":\"Seguridad Electr\\u00f3nica Sand\\u00ed P\\u00e9rez Zeled\\u00f3n, Costa Rica. Alarmas Antirrobo, Detecci\\u00f3n de incendio y CCTV. Zona Sur CR\",\"link\":\"|*|null\"}", "2", "0");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("17", "3", "2", "2017-01-04 00:07:56", "2027-01-05 00:07:56", "0", "0", "[]", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "$upload$/2017/01/3.jpg", "{\"backgroundImage\":\"$upload$\\/2017\\/01\\/3.jpg\",\"backgroundAlt\":\"Seguridad Electr\\u00f3nica Sand\\u00ed P\\u00e9rez Zeled\\u00f3n, Costa Rica. Alarmas Antirrobo, Detecci\\u00f3n de incendio y CCTV. Zona Sur CR\",\"link\":\"|*|null\"}", "3", "0");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://csandi.xyz", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "http://csandi.xyz", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "Sandí Seguridad Electrónica", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "CCTV | Sistemas de detección de incendio | Alarmas Antirrobo | Accesorios", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "jostrike1@gmail.com", "yes");
INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "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", "closed", "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", "j F, Y", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "j F, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("26", "comment_moderation", "", "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("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:17:{i:0;s:44:\"above-the-fold-optimization/abovethefold.php\";i:1;s:29:\"bj-lazy-load/bj-lazy-load.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:41:\"envato-wordpress-toolkit-master/index.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";i:7;s:33:\"smart-slider-3/smart-slider-3.php\";i:8;s:34:\"ultimate_vc/Ultimate_VC_Addons.php\";i:9;s:27:\"updraftplus/updraftplus.php\";i:10;s:17:\"wassup/wassup.php\";i:11;s:27:\"woocommerce/woocommerce.php\";i:12;s:24:\"wordpress-seo/wp-seo.php\";i:13;s:27:\"wp-optimize/wp-optimize.php\";i:14;s:23:\"wp-smushit/wp-smush.php\";i:15;s:27:\"wp-super-cache/wp-cache.php\";i:16;s:37:\"yith-woocommerce-ajax-search/init.php\";}", "yes");
INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("37", "gmt_offset", "-6", "yes");
INSERT INTO `wp_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("39", "recently_edited", "a:3:{i:0;s:85:\"/home/u585192189/public_html/wp-content/plugins/yith-woocommerce-ajax-search/init.php\";i:1;s:71:\"/home/u585192189/public_html/wp-content/plugins/revslider/revslider.php\";i:2;s:0:\"\";}", "no");
INSERT INTO `wp_options` VALUES("40", "template", "flatastic", "yes");
INSERT INTO `wp_options` VALUES("41", "stylesheet", "flatastic-child", "yes");
INSERT INTO `wp_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("44", "comment_registration", "1", "yes");
INSERT INTO `wp_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("48", "db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("51", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("53", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("69", "close_comments_for_old_posts", "", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("71", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("73", "page_comments", "", "yes");
INSERT INTO `wp_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("78", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("79", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "uninstall_plugins", "a:5:{s:89:\"home/u585192189/public_html/wp-content/themes/flatastic/inc/plugins/post-ratings/init.php\";a:2:{i:0;s:11:\"PostRatings\";i:1;s:9:\"Uninstall\";}s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";s:39:\"bj-lazy-load/inc/class-bjll-options.php\";s:14:\"__return_false\";s:57:\"multisite-language-switcher/MultisiteLanguageSwitcher.php\";a:2:{i:0;s:10:\"MslsPlugin\";i:1;s:9:\"uninstall\";}s:17:\"wassup/wassup.php\";s:16:\"wassup_uninstall\";}", "no");
INSERT INTO `wp_options` VALUES("82", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("83", "page_for_posts", "372", "yes");
INSERT INTO `wp_options` VALUES("84", "page_on_front", "38", "yes");
INSERT INTO `wp_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("88", "site_icon", "0", "yes");
INSERT INTO `wp_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("91", "initial_db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("92", "wp_user_roles", "a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:149:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s: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:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:19:\"edit_rswp-shortcode\";b:1;s:19:\"read_rswp-shortcode\";b:1;s:21:\"delete_rswp-shortcode\";b:1;s:20:\"edit_rswp-shortcodes\";b:1;s:27:\"edit_others_rswp-shortcodes\";b:1;s:23:\"publish_rswp-shortcodes\";b:1;s:28:\"read_private_rswp-shortcodes\";b:1;s:22:\"delete_rswp-shortcodes\";b:0;s:22:\"create_rswp-shortcodes\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:52:{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:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:19:\"edit_rswp-shortcode\";b:1;s:19:\"read_rswp-shortcode\";b:1;s:21:\"delete_rswp-shortcode\";b:1;s:20:\"edit_rswp-shortcodes\";b:1;s:27:\"edit_others_rswp-shortcodes\";b:1;s:23:\"publish_rswp-shortcodes\";b:1;s:28:\"read_private_rswp-shortcodes\";b:1;s:22:\"delete_rswp-shortcodes\";b:1;s:22:\"create_rswp-shortcodes\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:19:{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:19:\"edit_rswp-shortcode\";b:1;s:19:\"read_rswp-shortcode\";b:1;s:21:\"delete_rswp-shortcode\";b:1;s:20:\"edit_rswp-shortcodes\";b:1;s:27:\"edit_others_rswp-shortcodes\";b:1;s:23:\"publish_rswp-shortcodes\";b:1;s:28:\"read_private_rswp-shortcodes\";b:1;s:22:\"delete_rswp-shortcodes\";b:1;s:22:\"create_rswp-shortcodes\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:14:{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:19:\"edit_rswp-shortcode\";b:1;s:19:\"read_rswp-shortcode\";b:1;s:21:\"delete_rswp-shortcode\";b:1;s:20:\"edit_rswp-shortcodes\";b:1;s:27:\"edit_others_rswp-shortcodes\";b:1;s:23:\"publish_rswp-shortcodes\";b:1;s:28:\"read_private_rswp-shortcodes\";b:1;s:22:\"delete_rswp-shortcodes\";b:0;s:22:\"create_rswp-shortcodes\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:19:\"edit_rswp-shortcode\";b:1;s:19:\"read_rswp-shortcode\";b:1;s:21:\"delete_rswp-shortcode\";b:1;s:20:\"edit_rswp-shortcodes\";b:1;s:27:\"edit_others_rswp-shortcodes\";b:1;s:23:\"publish_rswp-shortcodes\";b:1;s:28:\"read_private_rswp-shortcodes\";b:1;s:22:\"delete_rswp-shortcodes\";b:0;s:22:\"create_rswp-shortcodes\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:7:\"Cliente\";s:12:\"capabilities\";a:10:{s:4:\"read\";b:1;s:19:\"edit_rswp-shortcode\";b:0;s:19:\"read_rswp-shortcode\";b:0;s:21:\"delete_rswp-shortcode\";b:0;s:20:\"edit_rswp-shortcodes\";b:0;s:27:\"edit_others_rswp-shortcodes\";b:0;s:23:\"publish_rswp-shortcodes\";b:0;s:28:\"read_private_rswp-shortcodes\";b:0;s:22:\"delete_rswp-shortcodes\";b:0;s:22:\"create_rswp-shortcodes\";b:0;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:19:\"Gestor de la tienda\";s:12:\"capabilities\";a:119:{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:19:\"edit_rswp-shortcode\";b:0;s:19:\"read_rswp-shortcode\";b:0;s:21:\"delete_rswp-shortcode\";b:0;s:20:\"edit_rswp-shortcodes\";b:0;s:27:\"edit_others_rswp-shortcodes\";b:0;s:23:\"publish_rswp-shortcodes\";b:0;s:28:\"read_private_rswp-shortcodes\";b:0;s:22:\"delete_rswp-shortcodes\";b:0;s:22:\"create_rswp-shortcodes\";b:0;}}}", "yes");
INSERT INTO `wp_options` VALUES("93", "fresh_site", "0", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:18:\"Buscar un producto\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("96", "widget_recent-comments", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("97", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("98", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("99", "sidebars_widgets", "a:5:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";}s:19:\"general-widget-area\";a:4:{i:0;s:8:\"search-2\";i:1;s:25:\"mad_widget_social_links-3\";i:2;s:23:\"mad_widget_contact_us-3\";i:3;s:10:\"calendar-3\";}s:12:\"footer-row-1\";a:0:{}s:12:\"footer-row-2\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("100", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "widget_calendar", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("102", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("103", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("104", "cron", "a:17:{i:1484332718;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:1484333564;a:1:{s:11:\"wp_cache_gc\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1484333788;a:1:{s:24:\"aiowps_hourly_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1484335973;a:1:{s:24:\"wassup_scheduled_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1484338764;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:1484338887;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:1484349437;a:1:{s:9:\"abtf_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1484350476;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:1484355503;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:1484368716;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1484373600;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:1484411916;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1484412988;a:1:{s:23:\"aiowps_daily_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1484764682;a:1:{s:15:\"wpo_cron_event2\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"wpo_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1484787122;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1486425600;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:2592000;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("9659", "_site_transient_timeout_browser_c0c4b214efa9ca4534f836fa0c819716", "1484077327", "no");
INSERT INTO `wp_options` VALUES("105", "theme_mods_twentyseventeen", "a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1483219313;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("117", "can_compress_scripts", "0", "no");
INSERT INTO `wp_options` VALUES("153", "widget_mega_main_sidebar_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("163", "woocommerce_specific_ship_to_countries", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("164", "woocommerce_default_customer_address", "geolocation", "yes");
INSERT INTO `wp_options` VALUES("165", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `wp_options` VALUES("166", "woocommerce_demo_store", "no", "yes");
INSERT INTO `wp_options` VALUES("167", "woocommerce_demo_store_notice", "-IMPORTANTE- :  Aviso de mantenimiento en la plataforma, algunos productos y/o sus imágenes podrían no estar disponibles temporalmente.", "no");
INSERT INTO `wp_options` VALUES("18055", "_site_transient_timeout_theme_roots", "1484333762", "no");
INSERT INTO `wp_options` VALUES("18056", "_site_transient_theme_roots", "a:3:{s:15:\"flatastic-child\";s:7:\"/themes\";s:9:\"flatastic\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";}", "no");
INSERT INTO `wp_options` VALUES("12734", "_site_transient_timeout_browser_9773afb24a9ad3a4ce41194819fcb26e", "1484503604", "no");
INSERT INTO `wp_options` VALUES("12735", "_site_transient_browser_9773afb24a9ad3a4ce41194819fcb26e", "a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"54.0.2840.59\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("12743", "_transient_wc_low_stock_count", "0", "no");
INSERT INTO `wp_options` VALUES("10496", "wp-smush-backup", "0", "no");
INSERT INTO `wp_options` VALUES("10740", "widget_blog_subscription", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("16627", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"jostrike1@gmail.com\";s:7:\"version\";s:5:\"4.7.1\";s:9:\"timestamp\";i:1484293495;}", "no");
INSERT INTO `wp_options` VALUES("10489", "wp-smush-hide_smush_welcome", "1", "no");
INSERT INTO `wp_options` VALUES("16615", "_transient_bsf_check_product_updates", "1", "no");
INSERT INTO `wp_options` VALUES("7169", "wp_super_cache_index_detected", "3", "no");
INSERT INTO `wp_options` VALUES("12681", "_site_transient_timeout_bsf_get_bundled_products", "1484503375", "no");
INSERT INTO `wp_options` VALUES("12682", "_site_transient_bsf_get_bundled_products", "1", "no");
INSERT INTO `wp_options` VALUES("9361", "aiowpsec_db_version", "1.8", "yes");
INSERT INTO `wp_options` VALUES("9362", "aio_wp_security_configs", "a:80:{s:19:\"aiowps_enable_debug\";s:0:\"\";s:36:\"aiowps_remove_wp_generator_meta_info\";s:0:\"\";s:25:\"aiowps_prevent_hotlinking\";s:1:\"1\";s:28:\"aiowps_enable_login_lockdown\";s:1:\"1\";s:28:\"aiowps_allow_unlock_requests\";s:0:\"\";s:25:\"aiowps_max_login_attempts\";i:3;s:24:\"aiowps_retry_time_period\";i:5;s:26:\"aiowps_lockout_time_length\";i:60;s:28:\"aiowps_set_generic_login_msg\";s:1:\"1\";s:26:\"aiowps_enable_email_notify\";s:1:\"1\";s:20:\"aiowps_email_address\";s:19:\"jostrike1@gmail.com\";s:27:\"aiowps_enable_forced_logout\";s:0:\"\";s:25:\"aiowps_logout_time_period\";s:2:\"60\";s:39:\"aiowps_enable_invalid_username_lockdown\";s:0:\"\";s:43:\"aiowps_instantly_lockout_specific_usernames\";a:0:{}s:32:\"aiowps_unlock_request_secret_key\";s:20:\"8yu6w5djrrl0gasij92e\";s:26:\"aiowps_enable_whitelisting\";s:0:\"\";s:27:\"aiowps_allowed_ip_addresses\";s:0:\"\";s:27:\"aiowps_enable_login_captcha\";s:1:\"1\";s:34:\"aiowps_enable_custom_login_captcha\";s:0:\"\";s:25:\"aiowps_captcha_secret_key\";s:20:\"7ya69b1v6wg7rvxgmtd6\";s:42:\"aiowps_enable_manual_registration_approval\";s:1:\"1\";s:39:\"aiowps_enable_registration_page_captcha\";s:0:\"\";s:27:\"aiowps_enable_random_prefix\";s:0:\"\";s:31:\"aiowps_enable_automated_backups\";s:1:\"1\";s:26:\"aiowps_db_backup_frequency\";i:4;s:25:\"aiowps_db_backup_interval\";s:1:\"2\";s:26:\"aiowps_backup_files_stored\";i:2;s:32:\"aiowps_send_backup_email_address\";s:0:\"\";s:27:\"aiowps_backup_email_address\";s:19:\"jostrike1@gmail.com\";s:27:\"aiowps_disable_file_editing\";s:1:\"1\";s:37:\"aiowps_prevent_default_wp_file_access\";s:1:\"1\";s:22:\"aiowps_system_log_file\";s:9:\"error_log\";s:26:\"aiowps_enable_blacklisting\";s:0:\"\";s:26:\"aiowps_banned_ip_addresses\";s:0:\"\";s:28:\"aiowps_enable_basic_firewall\";s:1:\"1\";s:31:\"aiowps_enable_pingback_firewall\";s:0:\"\";s:38:\"aiowps_disable_xmlrpc_pingback_methods\";s:0:\"\";s:34:\"aiowps_block_debug_log_file_access\";s:1:\"1\";s:26:\"aiowps_disable_index_views\";s:0:\"\";s:30:\"aiowps_disable_trace_and_track\";s:0:\"\";s:28:\"aiowps_forbid_proxy_comments\";s:0:\"\";s:29:\"aiowps_deny_bad_query_strings\";s:0:\"\";s:34:\"aiowps_advanced_char_string_filter\";s:0:\"\";s:25:\"aiowps_enable_5g_firewall\";s:0:\"\";s:25:\"aiowps_enable_6g_firewall\";s:0:\"\";s:26:\"aiowps_enable_custom_rules\";s:0:\"\";s:19:\"aiowps_custom_rules\";s:0:\"\";s:25:\"aiowps_enable_404_logging\";s:0:\"\";s:28:\"aiowps_enable_404_IP_lockout\";s:0:\"\";s:30:\"aiowps_404_lockout_time_length\";s:2:\"60\";s:28:\"aiowps_404_lock_redirect_url\";s:16:\"http://127.0.0.1\";s:31:\"aiowps_enable_rename_login_page\";s:0:\"\";s:28:\"aiowps_enable_login_honeypot\";s:1:\"1\";s:43:\"aiowps_enable_brute_force_attack_prevention\";s:1:\"1\";s:30:\"aiowps_brute_force_secret_word\";s:13:\"aiowps_secret\";s:24:\"aiowps_cookie_brute_test\";s:29:\"aiowps_cookie_test_zfsnc7d6jn\";s:44:\"aiowps_cookie_based_brute_force_redirect_url\";s:16:\"http://127.0.0.1\";s:59:\"aiowps_brute_force_attack_prevention_pw_protected_exception\";s:0:\"\";s:51:\"aiowps_brute_force_attack_prevention_ajax_exception\";s:1:\"1\";s:19:\"aiowps_site_lockout\";s:0:\"\";s:23:\"aiowps_site_lockout_msg\";s:298:\"&lt;h3 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #ffff00;&quot;&gt;Plataforma web en mantenimiento de 1 minuto para mejoras internas.&lt;/span&gt;&lt;/h3&gt;\r\n&amp;nbsp;\r\n&lt;h6&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;-Powered by SANDITEC&lt;/span&gt;&lt;/h6&gt;\";s:30:\"aiowps_enable_spambot_blocking\";s:1:\"1\";s:29:\"aiowps_enable_comment_captcha\";s:0:\"\";s:31:\"aiowps_enable_autoblock_spam_ip\";s:0:\"\";s:33:\"aiowps_spam_ip_min_comments_block\";s:0:\"\";s:32:\"aiowps_enable_automated_fcd_scan\";s:0:\"\";s:25:\"aiowps_fcd_scan_frequency\";s:1:\"4\";s:24:\"aiowps_fcd_scan_interval\";s:1:\"2\";s:28:\"aiowps_fcd_exclude_filetypes\";s:0:\"\";s:24:\"aiowps_fcd_exclude_files\";s:0:\"\";s:26:\"aiowps_send_fcd_scan_email\";s:0:\"\";s:29:\"aiowps_fcd_scan_email_address\";s:19:\"jostrike1@gmail.com\";s:27:\"aiowps_fcds_change_detected\";b:0;s:22:\"aiowps_copy_protection\";s:0:\"\";s:40:\"aiowps_prevent_site_display_inside_frame\";s:1:\"1\";s:32:\"aiowps_prevent_users_enumeration\";s:1:\"1\";s:26:\"aiowps_cookie_test_success\";s:1:\"1\";s:35:\"aiowps_enable_lost_password_captcha\";s:1:\"1\";s:23:\"aiowps_last_backup_time\";s:19:\"2017-01-03 11:57:16\";}", "yes");
INSERT INTO `wp_options` VALUES("6685", "wp-optimize-schedule", "true", "yes");
INSERT INTO `wp_options` VALUES("6686", "wp-optimize-last-optimized", "13 January, 2017 1:44 am", "yes");
INSERT INTO `wp_options` VALUES("6687", "wp-optimize-schedule-type", "wpo_weekly", "yes");
INSERT INTO `wp_options` VALUES("6688", "wp-optimize-retention-enabled", "false", "yes");
INSERT INTO `wp_options` VALUES("6689", "wp-optimize-retention-period", "2", "yes");
INSERT INTO `wp_options` VALUES("6690", "wp-optimize-enable-admin-menu", "true", "yes");
INSERT INTO `wp_options` VALUES("6691", "wp-optimize-total-cleaned", "771818", "yes");
INSERT INTO `wp_options` VALUES("6692", "wp-optimize-auto", "a:6:{s:9:\"revisions\";s:4:\"true\";s:6:\"drafts\";s:4:\"true\";s:9:\"transient\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";s:8:\"optimize\";s:4:\"true\";s:10:\"unapproved\";s:4:\"true\";}", "yes");
INSERT INTO `wp_options` VALUES("6693", "wp-optimize-settings", "a:6:{s:14:\"user-revisions\";s:4:\"true\";s:11:\"user-drafts\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:13:\"user-optimize\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:13:\"last_saved_in\";s:5:\"2.1.0\";}", "yes");
INSERT INTO `wp_options` VALUES("6696", "wdev-frash", "a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1483395729;}s:5:\"queue\";a:1:{s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1484000529;s:6:\"sticky\";b:1;}}s:4:\"done\";a:1:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1483395729;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1483404475;}}}", "no");
INSERT INTO `wp_options` VALUES("6697", "wp-smush-version", "2.5.2", "no");
INSERT INTO `wp_options` VALUES("6698", "wp-smush-skip-redirect", "1", "no");
INSERT INTO `wp_options` VALUES("7111", "wp-smush-install-type", "new", "no");
INSERT INTO `wp_options` VALUES("146", "mad_options_", "a:1:{s:3:\"mad\";a:221:{s:7:\"favicon\";s:66:\"http://localhost:8080/wordpress/wp-content/uploads/2016/12/fav.ico\";s:9:\"logo_type\";s:6:\"upload\";s:9:\"logo_text\";s:41:\"&lt;span&gt;SANDI &lt;/span&gt; SEGURIDAD\";s:10:\"logo_image\";s:55:\"http://csandi.xyz/wp-content/uploads/2016/12/logo-3.png\";s:10:\"logo_hover\";s:1:\"1\";s:17:\"mad_mailchimp_api\";s:37:\"45f369f90c94da40ac575d3e110c93b7-us14\";s:16:\"mad_mailchimp_id\";s:10:\"a9600fce4a\";s:20:\"mad_mailchimp_center\";s:3:\"us4\";s:9:\"analytics\";s:0:\"\";s:19:\"api-key-google-maps\";s:0:\"\";s:12:\"cookie_alert\";s:4:\"hide\";s:20:\"cookie_alert_message\";s:116:\"&iexcl;Hola! Utilizamos cookies para mejorar la experiencia de uso en el sitio, si continuas navegando aceptas esto.\";s:27:\"cookie_alert_read_more_link\";s:39:\"http://www.cookielaw.org/the-cookie-law\";s:11:\"440_content\";s:254:\"&lt;h2&gt;404&lt;/h2&gt;&lt;h3&gt; Pagina no encontrada!&lt;/h3&gt;&lt;p&gt;Esto es vergonzoso, pero a cualquiera le pudo suceder, por favor regresa al inicio&lt;/p&gt;\n&lt;a href=&quot;http://localhost:8080/wordpress/&quot;&gt;Volver al inicio&lt;/a&gt;\";s:10:\"zoom_image\";s:10:\"zoom-image\";s:12:\"color_scheme\";s:14:\"scheme_default\";s:28:\"styles-general_body_bg_color\";s:7:\"#232830\";s:13:\"styles-bg_img\";s:0:\"\";s:20:\"styles-body_bg_image\";s:0:\"\";s:18:\"styles-body_repeat\";s:9:\"no-repeat\";s:20:\"styles-body_position\";s:10:\"top center\";s:22:\"styles-body_attachment\";s:5:\"fixed\";s:25:\"styles-general_font_color\";s:7:\"#696e6e\";s:24:\"styles-general_font_size\";s:4:\"14px\";s:22:\"general_google_webfont\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-primary_color\";s:7:\"#e74c3c\";s:22:\"styles-secondary_color\";s:7:\"#e74c3c\";s:22:\"styles-highlight_color\";s:7:\"#34495e\";s:25:\"styles-highlight_bg_color\";s:7:\"#e74c3c\";s:27:\"styles-highlight_text_color\";s:4:\"#fff\";s:22:\"styles-header_bg_color\";s:7:\"#fafbfb\";s:22:\"styles-logo_font_color\";s:7:\"#e74c3c\";s:21:\"styles-logo_font_size\";s:4:\"45px\";s:23:\"styles-logo_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:22:\"styles-footer_bg_color\";s:7:\"#ffffff\";s:34:\"styles-footer_bottom_part_bg_color\";s:7:\"#292f38\";s:20:\"styles-h1_font_color\";s:7:\"#292f38\";s:19:\"styles-h1_font_size\";s:4:\"34px\";s:21:\"styles-h1_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-h2_font_color\";s:7:\"#292f38\";s:19:\"styles-h2_font_size\";s:4:\"24px\";s:21:\"styles-h2_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-h3_font_color\";s:7:\"#292f38\";s:19:\"styles-h3_font_size\";s:4:\"20px\";s:21:\"styles-h3_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-h4_font_color\";s:7:\"#292f38\";s:19:\"styles-h4_font_size\";s:4:\"18px\";s:21:\"styles-h4_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-h5_font_color\";s:7:\"#292f38\";s:19:\"styles-h5_font_size\";s:4:\"16px\";s:21:\"styles-h5_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:20:\"styles-h6_font_color\";s:7:\"#292f38\";s:19:\"styles-h6_font_size\";s:4:\"14px\";s:21:\"styles-h6_font_family\";s:32:\"Roboto:300,700,900,500,300italic\";s:16:\"custom_quick_css\";s:0:\"\";s:17:\"header_full_width\";s:1:\"1\";s:13:\"header_layout\";s:6:\"type-4\";s:16:\"nav-menu-primary\";s:2:\"14\";s:18:\"nav-menu-secondary\";s:2:\"14\";s:25:\"compatible_with_mega_menu\";s:1:\"0\";s:17:\"sticky_navigation\";s:1:\"1\";s:15:\"header_top_part\";s:4:\"show\";s:11:\"search-type\";s:7:\"product\";s:18:\"show_search_type_1\";s:18:\"show_search_type_1\";s:11:\"show_search\";s:11:\"show_search\";s:13:\"show_wishlist\";s:1:\"0\";s:12:\"show_compare\";s:1:\"0\";s:12:\"show_call_us\";s:1:\"0\";s:13:\"show_language\";s:13:\"show_language\";s:13:\"show_currency\";s:1:\"0\";s:9:\"show_cart\";s:1:\"0\";s:14:\"show_woo_links\";s:1:\"0\";s:7:\"call_us\";s:50:\"Ll&aacute;manos: &lt;b&gt;+506 88226816 &lt;/b&gt;\";s:13:\"promo_message\";s:54:\"Escr&iacute;benos: &lt;b&gt; info@csandi.xyz&lt;/b&gt;\";s:11:\"page_layout\";s:11:\"wide_layout\";s:16:\"page_breadcrumbs\";s:1:\"0\";s:18:\"single_breadcrumbs\";s:1:\"1\";s:9:\"animation\";s:1:\"0\";s:13:\"smooth_scroll\";s:1:\"1\";s:21:\"sidebar_page_position\";s:10:\"no_sidebar\";s:21:\"sidebar_post_position\";s:3:\"sbr\";s:24:\"sidebar_archive_position\";s:3:\"sbr\";s:14:\"sidebar_mobile\";s:1:\"0\";s:23:\"position_sidebar_mobile\";s:3:\"top\";s:22:\"excerpt_count_big_post\";s:3:\"500\";s:22:\"blog-listing-meta-date\";s:22:\"blog-listing-meta-date\";s:25:\"blog-listing-meta-comment\";s:25:\"blog-listing-meta-comment\";s:26:\"blog-listing-meta-category\";s:26:\"blog-listing-meta-category\";s:25:\"blog-listing-meta-ratings\";s:25:\"blog-listing-meta-ratings\";s:24:\"blog-listing-meta-author\";s:24:\"blog-listing-meta-author\";s:25:\"excerpt_count_medium_post\";s:3:\"270\";s:21:\"blog-single-meta-date\";s:21:\"blog-single-meta-date\";s:24:\"blog-single-meta-comment\";s:24:\"blog-single-meta-comment\";s:25:\"blog-single-meta-category\";s:25:\"blog-single-meta-category\";s:24:\"blog-single-meta-ratings\";s:24:\"blog-single-meta-ratings\";s:23:\"blog-single-meta-author\";s:23:\"blog-single-meta-author\";s:22:\"blog-single-link-pages\";s:22:\"blog-single-link-pages\";s:25:\"blog-single-related-posts\";s:25:\"blog-single-related-posts\";s:21:\"related_posts_columns\";s:1:\"3\";s:19:\"related_posts_count\";s:1:\"3\";s:10:\"blog_style\";s:11:\"blog-medium\";s:18:\"share-posts-enable\";s:1:\"1\";s:20:\"share-posts-facebook\";s:1:\"1\";s:19:\"share-posts-twitter\";s:1:\"1\";s:20:\"share-posts-linkedin\";s:1:\"1\";s:22:\"share-posts-googleplus\";s:1:\"1\";s:21:\"share-posts-pinterest\";s:1:\"1\";s:14:\"share-posts-vk\";s:1:\"0\";s:18:\"share-posts-tumblr\";s:1:\"1\";s:16:\"share-posts-xing\";s:1:\"0\";s:29:\"portfolio_archive_page_layout\";s:11:\"wide_layout\";s:34:\"sidebar_portfolio_archive_position\";s:10:\"no_sidebar\";s:30:\"portfolio_archive_column_count\";s:1:\"3\";s:22:\"share-portfolio-enable\";s:1:\"1\";s:24:\"share-portfolio-facebook\";s:1:\"1\";s:23:\"share-portfolio-twitter\";s:1:\"1\";s:24:\"share-portfolio-linkedin\";s:1:\"1\";s:26:\"share-portfolio-googleplus\";s:1:\"1\";s:25:\"share-portfolio-pinterest\";s:1:\"1\";s:18:\"share-portfolio-vk\";s:1:\"0\";s:22:\"share-portfolio-tumblr\";s:1:\"1\";s:20:\"share-portfolio-xing\";s:1:\"0\";s:32:\"testimonials_archive_page_layout\";s:11:\"wide_layout\";s:37:\"sidebar_testimonials_archive_position\";s:3:\"sbr\";s:33:\"testimonials_archive_column_count\";s:1:\"3\";s:25:\"share-testimonials-enable\";s:1:\"1\";s:27:\"share-testimonials-facebook\";s:1:\"1\";s:26:\"share-testimonials-twitter\";s:1:\"1\";s:27:\"share-testimonials-linkedin\";s:1:\"1\";s:29:\"share-testimonials-googleplus\";s:1:\"1\";s:28:\"share-testimonials-pinterest\";s:1:\"1\";s:21:\"share-testimonials-vk\";s:1:\"0\";s:25:\"share-testimonials-tumblr\";s:1:\"1\";s:23:\"share-testimonials-xing\";s:1:\"0\";s:32:\"team_members_archive_page_layout\";s:11:\"wide_layout\";s:37:\"sidebar_team_members_archive_position\";s:10:\"no_sidebar\";s:25:\"share-team-members-enable\";s:1:\"1\";s:27:\"share-team-members-facebook\";s:1:\"1\";s:26:\"share-team-members-twitter\";s:1:\"1\";s:27:\"share-team-members-linkedin\";s:1:\"1\";s:29:\"share-team-members-googleplus\";s:1:\"1\";s:28:\"share-team-members-pinterest\";s:1:\"1\";s:21:\"share-team-members-vk\";s:1:\"0\";s:25:\"share-team-members-tumblr\";s:1:\"1\";s:23:\"share-team-members-xing\";s:1:\"0\";s:17:\"footer_full_width\";s:1:\"1\";s:20:\"show_row_top_widgets\";s:1:\"0\";s:33:\"footer_row_top_columns_variations\";s:34:\"{&quot;1&quot;:[[&quot;12&quot;]]}\";s:23:\"show_row_bottom_widgets\";s:1:\"0\";s:36:\"footer_row_bottom_columns_variations\";s:34:\"{&quot;1&quot;:[[&quot;12&quot;]]}\";s:9:\"copyright\";s:183:\"&copy; 2017  &lt;span&gt; Seguridad Electr&oacute;nica Sand&iacute; &lt;/span&gt;.  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;P&eacute;rez Zeled&oacute;n, Costa Rica\";s:16:\"copyright_center\";s:1:\"0\";s:9:\"payment_1\";s:0:\"\";s:9:\"payment_2\";s:0:\"\";s:9:\"payment_3\";s:0:\"\";s:9:\"payment_4\";s:0:\"\";s:9:\"payment_5\";s:65:\"http://csandi.xyz/wp-content/uploads/2017/01/ssanditec2-copia.png\";s:27:\"product_archive_page_layout\";s:11:\"wide_layout\";s:16:\"shop_breadcrumbs\";s:1:\"1\";s:32:\"sidebar_product_archive_position\";s:3:\"sbr\";s:23:\"sidebar_setting_product\";s:0:\"\";s:15:\"show_review_tab\";s:1:\"0\";s:9:\"shop-view\";s:16:\"view-grid-center\";s:10:\"quick_view\";s:1:\"1\";s:25:\"lightbox_on_product_image\";s:1:\"1\";s:21:\"zoom_on_product_image\";s:1:\"1\";s:13:\"product_hover\";s:1:\"1\";s:19:\"product_title_count\";s:2:\"40\";s:15:\"products_filter\";s:1:\"1\";s:24:\"woocommerce_column_count\";s:1:\"3\";s:25:\"woocommerce_product_count\";s:1:\"9\";s:24:\"shop_single_column_items\";s:1:\"6\";s:20:\"share-product-enable\";s:1:\"0\";s:22:\"share-product-facebook\";s:1:\"1\";s:21:\"share-product-twitter\";s:1:\"1\";s:22:\"share-product-linkedin\";s:1:\"1\";s:24:\"share-product-googleplus\";s:1:\"1\";s:23:\"share-product-pinterest\";s:1:\"1\";s:16:\"share-product-vk\";s:1:\"0\";s:20:\"share-product-tumblr\";s:1:\"0\";s:18:\"share-product-xing\";s:1:\"0\";s:16:\"show_admin_panel\";s:16:\"show_admin_panel\";s:11:\"show_vk_box\";s:1:\"0\";s:8:\"vk_title\";s:13:\"Join Us on VK\";s:19:\"vk_widget_community\";s:413:\"&lt;script type=&quot;text/javascript&quot; src=&quot;//vk.com/js/api/openapi.js?116&quot;&gt;&lt;/script&gt;&lt;div id=&quot;vk_groups&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;VK.Widgets.Group(&quot;vk_groups&quot;, {mode: 0, width: &quot;220&quot;, height: &quot;400&quot;, color1: &quot;FFFFFF&quot;, color2: &quot;2B587A&quot;, color3: &quot;5B7FA6&quot;}, 20003922);&lt;/script&gt;\";s:17:\"show_facebook_box\";s:17:\"show_facebook_box\";s:14:\"facebook_title\";s:28:\"S&iacute;guenos en Facebook:\";s:18:\"facebook_page_name\";s:40:\"https://www.facebook.com/SANDISEGURIDAD/\";s:19:\"facebook_hide_cover\";s:1:\"0\";s:23:\"facebook_show_facespile\";s:1:\"1\";s:19:\"facebook_show_posts\";s:1:\"0\";s:18:\"show_latest_tweets\";s:1:\"0\";s:18:\"show_follow_button\";s:1:\"0\";s:19:\"latest_tweets_title\";s:13:\"Latest Tweets\";s:22:\"latest_tweets_username\";s:15:\"fanfbmltemplate\";s:19:\"latest_tweets_count\";s:1:\"2\";s:15:\"show_contact_us\";s:1:\"0\";s:16:\"contact_us_title\";s:12:\"Contactanos:\";s:21:\"contact_us_short_text\";s:55:\"E-mail: info@csandi.xyz   \n\nTel&eacute;fono: 88226816\n\n\";s:19:\"show_store_location\";s:19:\"show_store_location\";s:20:\"store_location_title\";s:15:\"Area de trabajo\";s:22:\"store_location_address\";s:131:\"Contamos con servicio en todo P&eacute;rez Zeled&oacute;n.\n\nTambi&eacute;n tenemos cobertura en el &aacute;rea de Dominical y Uvita\";s:27:\"store_location_embed_iframe\";s:453:\"&lt;iframe src=&quot;https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d232336.51026547863!2d-83.82187743076611!3d9.283529577244026!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8fa14e24f4b4979b%3A0x579ba03c05e588ff!2zU2FuIEpvc8OpLCBQw6lyZXogWmVsZWTDs24sIENvc3RhIFJpY2E!5e0!3m2!1ses-419!2s!4v1483118932810&quot; width=&quot;400&quot; height=&quot;300&quot; frameborder=&quot;0&quot; style=&quot;border:0&quot; allowfullscreen&gt;&lt;/iframe&gt;\";s:20:\"store_location_phone\";s:14:\"+506  88226816\";s:20:\"store_location_email\";s:15:\"info@csandi.xyz\";s:28:\"store_location_opening_hours\";s:0:\"\";s:14:\"show_instagram\";s:1:\"0\";s:15:\"instagram_title\";s:9:\"Instagram\";s:16:\"instagram_iframe\";s:379:\"&lt;iframe src=&quot;http://snapwidget.com/in/?h=YW1hemluZ3xpbnw1NXw0fDR8fG5vfDJ8bm9uZXxvblN0YXJ0fHllc3xubw==&amp;ve=300415&quot; title=&quot;Instagram Widget&quot; class=&quot;snapwidget-widget&quot; allowTransparency=&quot;true&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; style=&quot;border:none; overflow:hidden; width:228px; height:228px&quot;&gt;&lt;/iframe&gt;\";s:14:\"show_pinterest\";s:1:\"0\";s:15:\"pinterest_title\";s:9:\"Pinterest\";s:18:\"pinterest_username\";s:9:\"pinterest\";s:17:\"options_page_slug\";s:3:\"mad\";s:14:\"options_prefix\";s:12:\"mad_options_\";s:14:\"admin_ajax_url\";s:41:\"http://csandi.xyz/wp-admin/admin-ajax.php\";s:12:\"reset_action\";s:18:\"ajax_reset_options\";s:11:\"save_action\";s:22:\"ajax_save_options_page\";s:13:\"import_action\";s:24:\"ajax_import_options_page\";s:11:\"nonce-reset\";s:10:\"ef44e2efc7\";s:10:\"nonce-save\";s:10:\"685327dac3\";s:12:\"nonce-import\";s:10:\"45da3910f7\";}}", "yes");
INSERT INTO `wp_options` VALUES("135", "current_theme", "Flatastic Child Theme", "yes");
INSERT INTO `wp_options` VALUES("136", "theme_mods_flatastic-child", "a:4:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:14;s:9:\"secondary\";i:14;}s:18:\"jetpack_custom_css\";a:3:{s:12:\"preprocessor\";s:0:\"\";s:7:\"replace\";b:0;s:13:\"content_width\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("137", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("138", "post-ratings", "a:13:{s:7:\"version\";s:3:\"2.4\";s:14:\"anonymous_vote\";b:1;s:10:\"max_rating\";i:5;s:16:\"bayesian_formula\";s:40:\"(v / (v + MV)) * r + (MV / (v + MV)) * R\";s:12:\"user_formula\";s:0:\"\";s:13:\"custom_filter\";s:0:\"\";s:11:\"before_post\";b:0;s:10:\"after_post\";b:0;s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:10:\"visibility\";a:4:{i:0;s:4:\"home\";i:1;s:8:\"singular\";i:2;s:6:\"search\";i:3;s:7:\"archive\";}s:10:\"avg_rating\";i:0;s:9:\"num_votes\";i:0;s:15:\"num_rated_posts\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("139", "widget_latest_tweets_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("140", "widget_popular-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("141", "widget_mad_widget_social_links", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:13:{s:5:\"title\";s:10:\"Síguenos:\";s:14:\"facebook_links\";s:38:\"http://www.facebook.com/SANDISEGURIDAD\";s:13:\"twitter_links\";s:0:\"\";s:11:\"gplus_links\";s:0:\"\";s:9:\"rss_links\";N;s:15:\"pinterest_links\";s:0:\"\";s:15:\"instagram_links\";s:0:\"\";s:14:\"linkedin_links\";s:0:\"\";s:11:\"vimeo_links\";s:0:\"\";s:13:\"youtube_links\";s:72:\"https://www.youtube.com/playlist?list=PL5CjoqtQCnJ5kGJ6X4GqNZbJktdfrZJIj\";s:12:\"flickr_links\";s:0:\"\";s:8:\"vk_links\";s:0:\"\";s:10:\"contact_us\";s:15:\"info@csandi.xyz\";}}", "yes");
INSERT INTO `wp_options` VALUES("142", "widget_mad_widget_advertising_area", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("143", "widget_mad_widget_contact_us", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:5:{s:5:\"title\";s:12:\"Contáctanos\";s:7:\"address\";s:24:\"San Isidro De El General\";s:5:\"phone\";s:9:\"8822 6816\";s:5:\"email\";s:15:\"info@csandi.xyz\";s:5:\"hours\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("144", "widget_widget-zn-mailchimp", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("145", "widget_mad_widget_flickr", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("403", "_site_transient_timeout_wporg_theme_feature_list", "1483230056", "no");
INSERT INTO `wp_options` VALUES("404", "_site_transient_wporg_theme_feature_list", "a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}", "no");
INSERT INTO `wp_options` VALUES("440", "_site_transient_timeout_popular_importers_0a1ebf537f500dadf2e44a5387f18a0e", "1483392507", "no");
INSERT INTO `wp_options` VALUES("441", "_site_transient_popular_importers_0a1ebf537f500dadf2e44a5387f18a0e", "a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:28:\"Import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("147", "exists_stylesheetflatastic", "1", "yes");
INSERT INTO `wp_options` VALUES("148", "stylesheet_versionflatastic", "5872b841195d8", "yes");
INSERT INTO `wp_options` VALUES("169", "woocommerce_currency_pos", "left", "yes");
INSERT INTO `wp_options` VALUES("156", "mega_main_menu_updates", "a:3:{s:10:\"last_check\";i:1483318807;s:15:\"current_version\";s:5:\"2.1.2\";s:11:\"update_info\";N;}", "no");
INSERT INTO `wp_options` VALUES("149", "recently_activated", "a:1:{s:27:\"qtranslate-x/qtranslate.php\";i:1483736287;}", "yes");
INSERT INTO `wp_options` VALUES("17991", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1484341867", "no");
INSERT INTO `wp_options` VALUES("17992", "_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:\"6142\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3765\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3761\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3286\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2868\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2571\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2237\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2161\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2143\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2123\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2100\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2052\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1990\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1952\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1781\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1678\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1656\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1475\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1397\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1308\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1302\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1165\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1139\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1079\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1030\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1029\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"982\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"978\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"977\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"946\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"936\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"917\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"870\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"870\";}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:\"862\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"833\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"797\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"791\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"790\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"773\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"768\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"760\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"757\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"753\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"750\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"744\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"738\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"734\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"731\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"724\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"710\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"661\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"653\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"652\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"643\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"638\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"630\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"623\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"620\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"619\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"604\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"596\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"591\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"589\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"588\";}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:\"579\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"561\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"561\";}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:\"553\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"552\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"545\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"544\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"535\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"525\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"522\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"521\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"514\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"507\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"492\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"474\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"472\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"468\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"467\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"465\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"455\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"454\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"444\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"444\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"436\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"436\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"432\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"431\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"427\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"425\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"425\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"422\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"421\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"421\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"419\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"419\";}}", "no");
INSERT INTO `wp_options` VALUES("2644", "wc_currency_codes", "", "yes");
INSERT INTO `wp_options` VALUES("168", "woocommerce_currency", "USD", "yes");
INSERT INTO `wp_options` VALUES("158", "woocommerce_default_country", "CR", "yes");
INSERT INTO `wp_options` VALUES("159", "woocommerce_allowed_countries", "all", "yes");
INSERT INTO `wp_options` VALUES("160", "woocommerce_all_except_countries", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("161", "woocommerce_specific_allowed_countries", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("162", "woocommerce_ship_to_countries", "disabled", "yes");
INSERT INTO `wp_options` VALUES("170", "woocommerce_price_thousand_sep", ",", "yes");
INSERT INTO `wp_options` VALUES("171", "woocommerce_price_decimal_sep", ".", "yes");
INSERT INTO `wp_options` VALUES("172", "woocommerce_price_num_decimals", "2", "yes");
INSERT INTO `wp_options` VALUES("173", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `wp_options` VALUES("174", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `wp_options` VALUES("175", "woocommerce_enable_review_rating", "no", "yes");
INSERT INTO `wp_options` VALUES("176", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `wp_options` VALUES("177", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `wp_options` VALUES("178", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `wp_options` VALUES("179", "woocommerce_shop_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("180", "woocommerce_shop_page_display", "", "yes");
INSERT INTO `wp_options` VALUES("181", "woocommerce_category_archive_display", "", "yes");
INSERT INTO `wp_options` VALUES("182", "woocommerce_default_catalog_orderby", "menu_order", "yes");
INSERT INTO `wp_options` VALUES("183", "woocommerce_cart_redirect_after_add", "no", "yes");
INSERT INTO `wp_options` VALUES("184", "woocommerce_enable_ajax_add_to_cart", "no", "yes");
INSERT INTO `wp_options` VALUES("185", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"325\";s:6:\"height\";s:3:\"325\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("186", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("187", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:2:\"90\";s:6:\"height\";s:2:\"90\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("188", "woocommerce_enable_lightbox", "", "yes");
INSERT INTO `wp_options` VALUES("189", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `wp_options` VALUES("190", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `wp_options` VALUES("191", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("192", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("193", "woocommerce_stock_email_recipient", "jostrike1@gmail.com", "no");
INSERT INTO `wp_options` VALUES("194", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `wp_options` VALUES("195", "woocommerce_notify_no_stock_amount", "0", "yes");
INSERT INTO `wp_options` VALUES("196", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `wp_options` VALUES("197", "woocommerce_stock_format", "", "yes");
INSERT INTO `wp_options` VALUES("198", "woocommerce_file_download_method", "force", "no");
INSERT INTO `wp_options` VALUES("199", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `wp_options` VALUES("200", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `wp_options` VALUES("201", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `wp_options` VALUES("202", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `wp_options` VALUES("203", "woocommerce_shipping_tax_class", "", "yes");
INSERT INTO `wp_options` VALUES("204", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `wp_options` VALUES("205", "woocommerce_tax_classes", "Reduced Rate\nZero Rate", "yes");
INSERT INTO `wp_options` VALUES("206", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `wp_options` VALUES("207", "woocommerce_tax_display_cart", "excl", "no");
INSERT INTO `wp_options` VALUES("208", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `wp_options` VALUES("209", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `wp_options` VALUES("210", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `wp_options` VALUES("211", "woocommerce_shipping_cost_requires_address", "no", "no");
INSERT INTO `wp_options` VALUES("212", "woocommerce_ship_to_destination", "billing", "no");
INSERT INTO `wp_options` VALUES("213", "woocommerce_enable_coupons", "yes", "yes");
INSERT INTO `wp_options` VALUES("214", "woocommerce_calc_discounts_sequentially", "no", "no");
INSERT INTO `wp_options` VALUES("215", "woocommerce_enable_guest_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("216", "woocommerce_force_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("217", "woocommerce_unforce_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("218", "woocommerce_cart_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("219", "woocommerce_checkout_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("220", "woocommerce_terms_page_id", "", "no");
INSERT INTO `wp_options` VALUES("221", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `wp_options` VALUES("222", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `wp_options` VALUES("223", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `wp_options` VALUES("224", "woocommerce_myaccount_delete_payment_method_endpoint", "delete-payment-method", "yes");
INSERT INTO `wp_options` VALUES("225", "woocommerce_myaccount_set_default_payment_method_endpoint", "set-default-payment-method", "yes");
INSERT INTO `wp_options` VALUES("226", "woocommerce_myaccount_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("227", "woocommerce_enable_signup_and_login_from_checkout", "no", "no");
INSERT INTO `wp_options` VALUES("228", "woocommerce_enable_myaccount_registration", "no", "no");
INSERT INTO `wp_options` VALUES("229", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `wp_options` VALUES("230", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `wp_options` VALUES("231", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `wp_options` VALUES("232", "woocommerce_myaccount_orders_endpoint", "orders", "yes");
INSERT INTO `wp_options` VALUES("233", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `wp_options` VALUES("234", "woocommerce_myaccount_downloads_endpoint", "downloads", "yes");
INSERT INTO `wp_options` VALUES("235", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `wp_options` VALUES("236", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `wp_options` VALUES("237", "woocommerce_myaccount_payment_methods_endpoint", "payment-methods", "yes");
INSERT INTO `wp_options` VALUES("238", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `wp_options` VALUES("239", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `wp_options` VALUES("240", "woocommerce_email_from_name", "Sandí Seguridad Electrónica", "no");
INSERT INTO `wp_options` VALUES("241", "woocommerce_email_from_address", "jostrike1@gmail.com", "no");
INSERT INTO `wp_options` VALUES("242", "woocommerce_email_header_image", "", "no");
INSERT INTO `wp_options` VALUES("243", "woocommerce_email_footer_text", "Sandí Seguridad Electrónica - Powered by SANDITEC", "no");
INSERT INTO `wp_options` VALUES("244", "woocommerce_email_base_color", "#557da1", "no");
INSERT INTO `wp_options` VALUES("245", "woocommerce_email_background_color", "#f5f5f5", "no");
INSERT INTO `wp_options` VALUES("246", "woocommerce_email_body_background_color", "#fdfdfd", "no");
INSERT INTO `wp_options` VALUES("247", "woocommerce_email_text_color", "#505050", "no");
INSERT INTO `wp_options` VALUES("248", "woocommerce_api_enabled", "yes", "yes");
INSERT INTO `wp_options` VALUES("284", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("17417", "woocommerce_db_version", "2.6.12", "yes");
INSERT INTO `wp_options` VALUES("17418", "woocommerce_version", "2.6.12", "yes");
INSERT INTO `wp_options` VALUES("254", "woocommerce_admin_notices", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("16610", "_transient_timeout_woocommerce_currency_converter_rates", "1484336677", "no");
INSERT INTO `wp_options` VALUES("259", "_transient_woocommerce_webhook_ids", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("260", "widget_woocommerce_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("261", "widget_woocommerce_layered_nav_filters", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("262", "widget_woocommerce_layered_nav", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("263", "widget_woocommerce_price_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("264", "widget_woocommerce_product_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("265", "widget_woocommerce_product_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("266", "widget_woocommerce_product_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("267", "widget_woocommerce_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("268", "widget_woocommerce_rating_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("269", "widget_woocommerce_recent_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("270", "widget_woocommerce_recently_viewed_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("271", "widget_woocommerce_top_rated_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("272", "widget_mad-widget-woof-filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("273", "widget_woocommerce_products_specials", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("274", "mad_woof_first_init", "1", "yes");
INSERT INTO `wp_options` VALUES("275", "mad_woof_show_count", "1", "yes");
INSERT INTO `wp_options` VALUES("276", "mad_woof_checkboxes_slide", "1", "yes");
INSERT INTO `wp_options` VALUES("277", "mad_woof_show_reset", "1", "yes");
INSERT INTO `wp_options` VALUES("278", "mad_behavior", "title", "yes");
INSERT INTO `wp_options` VALUES("313", "widget_yith_woocommerce_ajax_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("300", "wpseo_permalinks", "a:9:{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:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("454", "_transient_product_query-transient-version", "1483817187", "yes");
INSERT INTO `wp_options` VALUES("455", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("3464", "product_cat_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("299", "wpseo", "a:21:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:5:\"4.0.2\";s:12:\"company_logo\";s:68:\"http://csandi.xyz/wp-content/uploads/2016/12/LOGO-Azul-PNG-copia.png\";s:12:\"company_name\";s:29:\"Seguridad Electrónica Sandí\";s:17:\"company_or_person\";s:7:\"company\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:29:\"Sandí Seguridad Electrónica\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:20:\"enable_setting_pages\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("12116", "qtranslate_next_update_mo", "1484339881", "yes");
INSERT INTO `wp_options` VALUES("12579", "_transient_timeout_wc_term_counts", "1486506780", "no");
INSERT INTO `wp_options` VALUES("1612", "_transient_product-transient-version", "1483817187", "yes");
INSERT INTO `wp_options` VALUES("298", "wpcf7", "a:2:{s:7:\"version\";s:3:\"4.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1483216080;s:7:\"version\";s:3:\"4.6\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}", "yes");
INSERT INTO `wp_options` VALUES("301", "wpseo_titles", "a:82:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:23:\"content-analysis-active\";b:1;s:23:\"keyword-analysis-active\";b:1;s:9:\"separator\";s:7:\"sc-pipe\";s:5:\"noodp\";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:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";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: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: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: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("302", "wpseo_social", "a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"1eddc6c5094817772ce521a3c2c99f0e\";s:13:\"facebook_site\";s:39:\"https://www.facebook.com/SANDISEGURIDAD\";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:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:72:\"https://www.youtube.com/playlist?list=PL5CjoqtQCnJ5kGJ6X4GqNZbJktdfrZJIj\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("303", "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("304", "wpseo_internallinks", "a:14:{s:20:\"breadcrumbs-404crumb\";s:34:\"Error 404: Pagina no encontrada :(\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:14:\"Archivos para:\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:6:\"Inicio\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:9:\"Buscaste:\";s:15:\"breadcrumbs-sep\";s:2:\"»\";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("305", "wpseo_xml", "a:22:{s:22:\"disable_author_sitemap\";b:0;s:22:\"disable_author_noposts\";b:0;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";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:30:\"post_types-post-not_in_sitemap\";b:1;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:1;s:37:\"taxonomies-post_format-not_in_sitemap\";b:1;s:33:\"post_types-product-not_in_sitemap\";b:1;s:37:\"taxonomies-product_cat-not_in_sitemap\";b:1;s:37:\"taxonomies-product_tag-not_in_sitemap\";b:1;s:48:\"taxonomies-product_shipping_class-not_in_sitemap\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("306", "wpseo_flush_rewrite", "1", "yes");
INSERT INTO `wp_options` VALUES("307", "yit_recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("12002", "_transient_timeout_yit_panel_sidebar_remote_widgets", "1490114628", "no");
INSERT INTO `wp_options` VALUES("12003", "_transient_yit_panel_sidebar_remote_widgets", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("332", "ultimate_google_fonts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("325", "ultimate_animation", "disable", "yes");
INSERT INTO `wp_options` VALUES("326", "ultimate_vc_addons_redirect", "", "yes");
INSERT INTO `wp_options` VALUES("327", "ultimate_js", "enable", "yes");
INSERT INTO `wp_options` VALUES("328", "ultimate_css", "enable", "yes");
INSERT INTO `wp_options` VALUES("347", "smile_fonts", "a:1:{s:8:\"Defaults\";a:4:{s:7:\"include\";s:20:\"smile_fonts/Defaults\";s:6:\"folder\";s:20:\"smile_fonts/Defaults\";s:5:\"style\";s:21:\"Defaults/Defaults.css\";s:6:\"config\";s:11:\"charmap.php\";}}", "yes");
INSERT INTO `wp_options` VALUES("341", "ultimate_modules", "a:41:{i:0;s:18:\"ultimate_animation\";i:1;s:16:\"ultimate_buttons\";i:2;s:18:\"ultimate_countdown\";i:3;s:17:\"ultimate_flip_box\";i:4;s:20:\"ultimate_google_maps\";i:5;s:22:\"ultimate_google_trends\";i:6;s:17:\"ultimate_headings\";i:7;s:22:\"ultimate_icon_timeline\";i:8;s:17:\"ultimate_info_box\";i:9;s:20:\"ultimate_info_circle\";i:10;s:18:\"ultimate_info_list\";i:11;s:20:\"ultimate_info_tables\";i:12;s:28:\"ultimate_interactive_banners\";i:13;s:29:\"ultimate_interactive_banner_2\";i:14;s:15:\"ultimate_modals\";i:15;s:17:\"ultimate_parallax\";i:16;s:23:\"ultimate_pricing_tables\";i:17;s:15:\"ultimate_spacer\";i:18;s:22:\"ultimate_stats_counter\";i:19;s:20:\"ultimate_swatch_book\";i:20;s:14:\"ultimate_icons\";i:21;s:18:\"ultimate_list_icon\";i:22;s:17:\"ultimate_carousel\";i:23;s:18:\"ultimate_fancytext\";i:24;s:22:\"ultimate_highlight_box\";i:25;s:20:\"ultimate_info_banner\";i:26;s:15:\"ultimate_ihover\";i:27;s:16:\"ultimate_hotspot\";i:28;s:21:\"ultimate_video_banner\";i:29;s:11:\"woocomposer\";i:30;s:20:\"ultimate_dual_button\";i:31;s:13:\"ultimate_link\";i:32;s:19:\"ultimate_fancy_text\";i:33;s:23:\"ultimate_hightlight_box\";i:34;s:20:\"ultimate_content_box\";i:35;s:24:\"ultimate_image_separator\";i:36;s:27:\"ultimate_expandable_section\";i:37;s:12:\"ultimate_tab\";i:38;s:23:\"ultimate_sticky_section\";i:39;s:13:\"ultimate_team\";i:40;s:21:\"ultimate_range_slider\";}", "yes");
INSERT INTO `wp_options` VALUES("324", "ultimate_row", "enable", "yes");
INSERT INTO `wp_options` VALUES("316", "yith_wcas_general_videobox", "a:7:{s:11:\"plugin_name\";s:28:\"YITH WooCommerce Ajax Search\";s:18:\"title_first_column\";s:30:\"Discover the Advanced Features\";s:24:\"description_first_column\";s:93:\"Upgrade to the PREMIUM VERSION\r\nof YITH WOOCOMMERCE AJAX SEARCH to benefit from all features!\";s:5:\"video\";a:3:{s:8:\"video_id\";s:9:\"118917627\";s:15:\"video_image_url\";s:103:\"http://csandi.xyz/wp-content/plugins/yith-woocommerce-ajax-search/assets/images/ajax-search-premium.jpg\";s:17:\"video_description\";s:28:\"YITH WooCommerce Ajax Search\";}s:19:\"title_second_column\";s:28:\"Get Support and Pro Features\";s:25:\"description_second_column\";s:205:\"By purchasing the premium version of the plugin, you will take advantage of the advanced features of the product and you will get one year of free updates and support through our platform available 24h/24.\";s:6:\"button\";a:2:{s:4:\"href\";s:64:\"http://yithemes.com/themes/plugins/yith-woocommerce-ajax-search/\";s:5:\"title\";s:28:\"Get Support and Pro Features\";}}", "yes");
INSERT INTO `wp_options` VALUES("317", "yith_wcas_search_input_label", "Buscar un producto", "yes");
INSERT INTO `wp_options` VALUES("318", "yith_wcas_search_submit_label", "Buscar", "yes");
INSERT INTO `wp_options` VALUES("319", "yith_wcas_min_chars", "2", "yes");
INSERT INTO `wp_options` VALUES("320", "yith_wcas_posts_per_page", "5", "yes");
INSERT INTO `wp_options` VALUES("321", "yith_wcas_enable_transient", "yes", "yes");
INSERT INTO `wp_options` VALUES("322", "yith_wcas_transient_duration", "12", "yes");
INSERT INTO `wp_options` VALUES("333", "ultimate_selected_google_fonts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("335", "vc_version", "5.0.1", "yes");
INSERT INTO `wp_options` VALUES("336", "bsf_local_transient", "1484271878", "yes");
INSERT INTO `wp_options` VALUES("339", "ultimate_updater", "enabled", "yes");
INSERT INTO `wp_options` VALUES("340", "ultimate_constants", "a:3:{s:24:\"ULTIMATE_NO_UPDATE_CHECK\";b:0;s:28:\"ULTIMATE_NO_EDIT_PAGE_NOTICE\";b:0;s:30:\"ULTIMATE_NO_PLUGIN_PAGE_NOTICE\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("17598", "updraft_jobdata_5879063d063d", "a:6:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1484328641.7597899;s:30:\"dlmessage_1484326461_plugins_0\";s:93:\"The file was found locally and matched the recorded size from the backup history (26560.6 KB)\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:27:\"dlfile_1484326461_plugins_0\";s:141:\"downloaded:27198076:/home/u585192189/public_html/wp-content/updraft/backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-plugins.zip\";s:12:\"option_cache\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("348", "brainstrom_products", "a:1:{s:7:\"plugins\";a:1:{i:6892199;a:12:{s:8:\"template\";s:34:\"ultimate_vc/Ultimate_VC_Addons.php\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:7:\"6892199\";s:12:\"product_name\";s:35:\"Ultimate Addons for Visual Composer\";s:7:\"version\";s:6:\"3.16.7\";s:6:\"remote\";s:6:\"3.16.7\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:4:\"true\";s:15:\"is_product_free\";s:5:\"false\";s:10:\"short_name\";s:0:\"\";s:13:\"changelog_url\";s:46:\"http://changelog.brainstormforce.com/ultimate/\";s:12:\"purchase_url\";s:90:\"http://codecanyon.net/item/ultimate-addons-for-visual-composer/6892199?ref=BrainstormForce\";}}}", "yes");
INSERT INTO `wp_options` VALUES("349", "bsf_local_transient_bundled", "1483876975", "yes");
INSERT INTO `wp_options` VALUES("529", "widget_smartslider3", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("406", "wpseo_sitemap_1_cache_validator", "5iPj8", "no");
INSERT INTO `wp_options` VALUES("407", "wpseo_sitemap_attachment_cache_validator", "wBSg", "no");
INSERT INTO `wp_options` VALUES("388", "revslider-update-check-short", "1483217359", "yes");
INSERT INTO `wp_options` VALUES("389", "revslider-templates-check", "1483217359", "yes");
INSERT INTO `wp_options` VALUES("392", "rs-templates-new", "", "no");
INSERT INTO `wp_options` VALUES("394", "revslider-library-check", "1483217360", "yes");
INSERT INTO `wp_options` VALUES("395", "rs-library", "a:2:{s:7:\"objects\";a:169:{i:198;a:11:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:11:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:11:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:11:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:11:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:11:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:11:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:11:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:11:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:11:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:11:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:11:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:11:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:11:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:11:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:11:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:11:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:11:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:11:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:11:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:11:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:11:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:11:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:11:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:11:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:11:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:11:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:11:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:11:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:11:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:11:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:11:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:11:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole-punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:11:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:11:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:11:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:11:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:11:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:11:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:11:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:11:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:11:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:11:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:11:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:11:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:11:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:11:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:11:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:11:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:11:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:11:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:11:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:11:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:11:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:11:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:11:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:11:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:11:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:11:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:11:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:11:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:11:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:11:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:11:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:11:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:11:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:11:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:11:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:11:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:11:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:11:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:11:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:11:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:11:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:11:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:11:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:11:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:11:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:11:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:11:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:11:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:11:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:11:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:11:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:11:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:11:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:11:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:11:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:11:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:11:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:11:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:11:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:11:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:11:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:11:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:11:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:11:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:11:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:11:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:11:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:11:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:11:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:11:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:11:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:11:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:11:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:11:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:11:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:11:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:11:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:11:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:11:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:11:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:11:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:11:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:11:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:11:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:11:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:11:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:11:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:11:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:11:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:11:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:11:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:11:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:11:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:11:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:11:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:11:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:11:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:11:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:11:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:11:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:11:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:11:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:11:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:11:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:11:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:11:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:11:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:11:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:11:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:11:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:11:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:11:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:11:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:11:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:11:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:11:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:11:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:11:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:11:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:11:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:11:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:11:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:11:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:11:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:11:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:11:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:11:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:11:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:11:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:11:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:11:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:11:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:11:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:11:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:11:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:11:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";a:13:{i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}}", "no");
INSERT INTO `wp_options` VALUES("397", "rs_tables_created", "1", "yes");
INSERT INTO `wp_options` VALUES("399", "revslider-global-settings", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("400", "revslider_update_version", "5.2.5.5", "yes");
INSERT INTO `wp_options` VALUES("13203", "_transient_timeout_external_ip_address_172.23.32.30", "1484512174", "no");
INSERT INTO `wp_options` VALUES("1810", "wpb_js_composer_license_activation_notified", "yes", "yes");
INSERT INTO `wp_options` VALUES("7758", "sm_cpages", "a:2:{i:0;O:26:\"GoogleSitemapGeneratorPage\":5:{s:4:\"_url\";s:0:\"\";s:9:\"_priority\";d:0;s:11:\"_changeFreq\";s:6:\"always\";s:8:\"_lastMod\";i:0;s:7:\"_postID\";i:0;}i:1;O:26:\"GoogleSitemapGeneratorPage\":5:{s:4:\"_url\";s:0:\"\";s:9:\"_priority\";d:0;s:11:\"_changeFreq\";s:6:\"always\";s:8:\"_lastMod\";i:0;s:7:\"_postID\";i:0;}}", "no");
INSERT INTO `wp_options` VALUES("7760", "sm_status", "O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1483419902.8469191;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1483419903.1032431;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1483419902.852272;s:7:\"endTime\";d:1483419902.9282529;s:7:\"success\";b:1;s:3:\"url\";s:92:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Fcsandi.xyz%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1483419902.928679;s:7:\"endTime\";d:1483419903.1020219;s:7:\"success\";b:1;s:3:\"url\";s:85:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Fcsandi.xyz%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}", "no");
INSERT INTO `wp_options` VALUES("4230", "wpseo_sitemap_rswp-shortcode_cache_validator", "5IKjQ", "no");
INSERT INTO `wp_options` VALUES("4247", "ossdl_off_cdn_url", "http://csandi.xyz", "yes");
INSERT INTO `wp_options` VALUES("4248", "ossdl_off_include_dirs", "wp-content,wp-includes", "yes");
INSERT INTO `wp_options` VALUES("457", "wpseo_sitemap_post_cache_validator", "5iPja", "no");
INSERT INTO `wp_options` VALUES("458", "wpseo_sitemap_page_cache_validator", "6TPE1", "no");
INSERT INTO `wp_options` VALUES("459", "wpseo_sitemap_product_cache_validator", "64lTq", "no");
INSERT INTO `wp_options` VALUES("460", "wpseo_sitemap_nav_menu_item_cache_validator", "5Nzfo", "no");
INSERT INTO `wp_options` VALUES("461", "wpseo_sitemap_category_cache_validator", "CqgR", "no");
INSERT INTO `wp_options` VALUES("462", "wpseo_sitemap_nav_menu_cache_validator", "5Nzfm", "no");
INSERT INTO `wp_options` VALUES("463", "wpseo_sitemap_product_tag_cache_validator", "64lTw", "no");
INSERT INTO `wp_options` VALUES("464", "wpseo_sitemap_product_type_cache_validator", "64lTs", "no");
INSERT INTO `wp_options` VALUES("465", "wpseo_sitemap_product_cat_cache_validator", "64lTu", "no");
INSERT INTO `wp_options` VALUES("6380", "_transient_wc_count_comments", "O:8:\"stdClass\":7:{s:12:\"post-trashed\";s:1:\"2\";s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("511", "wpseo_sitemap_customize_changeset_cache_validator", "6RIiQ", "no");
INSERT INTO `wp_options` VALUES("13204", "_transient_external_ip_address_172.23.32.30", "31.170.164.33", "no");
INSERT INTO `wp_options` VALUES("616", "wpseo_sitemap_revision_cache_validator", "64bry", "no");
INSERT INTO `wp_options` VALUES("528", "n2_ss3_version", "3.1.2", "yes");
INSERT INTO `wp_options` VALUES("979", "wpseo_sitemap_cache_validator_global", "aqa4", "no");
INSERT INTO `wp_options` VALUES("776", "tpc_memory_usage_location", "none", "yes");
INSERT INTO `wp_options` VALUES("777", "tpc_memory_usage_graph", "peak", "yes");
INSERT INTO `wp_options` VALUES("778", "tpc_memory_usage_admin_footer", "1", "yes");
INSERT INTO `wp_options` VALUES("779", "tpc_memory_usage_log", "high", "yes");
INSERT INTO `wp_options` VALUES("780", "tpc_memory_usage_log_highest", "a:4:{s:17:\"checkpoint_action\";s:8:\"shutdown\";s:15:\"checkpoint_desc\";s:8:\"Shutdown\";s:4:\"time\";i:1483403293;s:5:\"usage\";i:72740160;}", "yes");
INSERT INTO `wp_options` VALUES("781", "tpc_memory_usage_allowed_users", "admin", "yes");
INSERT INTO `wp_options` VALUES("782", "tpc_memory_usage_email_high_usage", "64", "yes");
INSERT INTO `wp_options` VALUES("783", "tpc_memory_usage_email_recipients", "", "yes");
INSERT INTO `wp_options` VALUES("784", "tpc_memory_usage_logging", "0", "yes");
INSERT INTO `wp_options` VALUES("785", "tpc_memory_usage_logging_type", "file", "yes");
INSERT INTO `wp_options` VALUES("801", "woocommerce_paypal-ec_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("802", "woocommerce_stripe_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("803", "woocommerce_paypal_settings", "a:2:{s:7:\"enabled\";s:2:\"no\";s:5:\"email\";s:19:\"jostrike1@gmail.com\";}", "yes");
INSERT INTO `wp_options` VALUES("804", "woocommerce_cheque_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("805", "woocommerce_bacs_settings", "a:1:{s:7:\"enabled\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("806", "woocommerce_cod_settings", "a:1:{s:7:\"enabled\";s:3:\"yes\";}", "yes");
INSERT INTO `wp_options` VALUES("809", "woocommerce_allow_tracking", "yes", "yes");
INSERT INTO `wp_options` VALUES("810", "woocommerce_tracker_last_send", "1483907386", "yes");
INSERT INTO `wp_options` VALUES("13417", "_site_transient_timeout_available_translations", "1483922638", "no");
INSERT INTO `wp_options` VALUES("13418", "_site_transient_available_translations", "a:90:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-09 16:12:38\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 12:56:13\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 19:24:17\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/4.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 08:38:56\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-07 08:41:41\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 16:53:20\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-05 11:04:39\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 11:08:55\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 11:33:59\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 15:48:14\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-21 21:25:23\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.7/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-21 21:24:48\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 15:44:48\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-06 20:04:40\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-15 04:56:31\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-11 18:03:11\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 08:11:17\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-03 23:03:48\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 00:34:14\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-04 17:16:39\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-07 12:13:31\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-04 18:02:43\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-25 22:19:36\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-24 20:30:13\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-03 12:46:56\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 22:11:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 22:19:40\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-22 16:41:36\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-07 18:34:12\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-06 14:20:49\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 18:04:09\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-10 17:48:28\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 16:41:35\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-05 17:22:59\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-04 01:43:25\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 21:13:09\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-08 02:27:42\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-17 12:35:49\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-25 23:06:52\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-06 20:18:25\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-16 22:13:37\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-31 11:00:19\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-05 15:13:56\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 13:03:24\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-03 10:10:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-11 11:21:27\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 12:39:15\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 06:17:03\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-23 09:02:10\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-11 08:51:51\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-09 14:23:37\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.13/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-20 09:00:07\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-08 18:37:21\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-06 14:06:25\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-21 12:56:58\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-23 13:45:11\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-06 20:27:29\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.13/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-04 16:16:38\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-26 14:54:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-04 12:04:46\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-04 13:58:23\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-09 11:05:20\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-05 08:28:07\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-03 20:47:33\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-04 20:17:20\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-03 07:14:30\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-12 07:04:13\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-19 17:56:07\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-12-01 16:07:46\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-04 23:10:17\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-08 10:04:03\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.7/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-07 17:58:49\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-08 04:30:37\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2016-12-07 09:57:58\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"4.7\";s:7:\"updated\";s:19:\"2017-01-07 10:19:30\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}", "no");
INSERT INTO `wp_options` VALUES("823", "WPLANG", "es_ES", "yes");
INSERT INTO `wp_options` VALUES("850", "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:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("7743", "rewrite_rules", "a:218:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";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: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:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s: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:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s: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:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:36:\"producto/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"producto/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"producto/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"producto/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"producto/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"producto/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"producto/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:29:\"producto/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:49:\"producto/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:44:\"producto/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:37:\"producto/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:44:\"producto/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:34:\"producto/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:40:\"producto/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"producto/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"producto/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:25:\"producto/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"producto/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"producto/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"producto/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"producto/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"producto/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:51:\"product_variation/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"product_variation/([^/]+)/embed/?$\";s:50:\"index.php?product_variation=$matches[1]&embed=true\";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:42:\"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:40:\"product_variation/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:51:\"shop_order_refund/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"shop_order_refund/([^/]+)/embed/?$\";s:50:\"index.php?shop_order_refund=$matches[1]&embed=true\";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:42:\"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:40:\"shop_order_refund/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"categoria-producto/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:52:\"categoria-producto/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:33:\"categoria-producto/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:45:\"categoria-producto/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:27:\"categoria-producto/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:58:\"etiqueta-producto/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:53:\"etiqueta-producto/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:34:\"etiqueta-producto/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:46:\"etiqueta-producto/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:28:\"etiqueta-producto/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:38:\"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]\";s:44:\"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=38&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$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:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";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:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s: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:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s: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:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s: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:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s: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:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s: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:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s: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:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$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:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$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:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s: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:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `wp_options` VALUES("7298", "_transient_woocommerce_cache_excluded_uris", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("7747", "sm_options", "a:51:{s:18:\"sm_b_prio_provider\";s:0:\"\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:1;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:2:{i:0;s:11:\"product_cat\";i:1;s:11:\"product_tag\";}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:7:\"monthly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.59999999999999998;s:15:\"sm_pr_posts_min\";d:0.20000000000000001;s:11:\"sm_pr_pages\";d:0.59999999999999998;s:10:\"sm_pr_cats\";d:0.90000000000000002;s:10:\"sm_pr_arch\";d:0.29999999999999999;s:10:\"sm_pr_auth\";d:0.29999999999999999;s:10:\"sm_pr_tags\";d:0.29999999999999999;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1483403949;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"ceba27e8bc1cc1054840\";s:13:\"sm_i_lastping\";i:1483419903;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1483410059;}", "yes");
INSERT INTO `wp_options` VALUES("1871", "wpseo-gsc-refresh_token", "1/0zIlYkxJAh7Yx4nr8r-z0yY_UK2oirntj5ngCvafxyM", "yes");
INSERT INTO `wp_options` VALUES("1872", "wpseo-gsc-access_token", "a:5:{s:13:\"refresh_token\";s:45:\"1/0zIlYkxJAh7Yx4nr8r-z0yY_UK2oirntj5ngCvafxyM\";s:12:\"access_token\";s:72:\"ya29.CjDPA82RvXa6GBycRktC0ZiTNldsfzCz69HQOI7T0uDgPtqG7SJdOWdodFxPrDdcTUY\";s:7:\"expires\";i:1484005096;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1484023096;}", "yes");
INSERT INTO `wp_options` VALUES("1874", "wpseo-gsc", "a:1:{s:7:\"profile\";s:17:\"http://csandi.xyz\";}", "yes");
INSERT INTO `wp_options` VALUES("2105", "wpseo_sitemap_shop_coupon_cache_validator", "6sZpl", "no");
INSERT INTO `wp_options` VALUES("2457", "wpseo_sitemap_100_cache_validator", "5Nzfl", "no");
INSERT INTO `wp_options` VALUES("1846", "wpseo_sitemap_author_cache_validator", "5NvYm", "no");
INSERT INTO `wp_options` VALUES("2021", "wpseo_sitemap_wpcf7_contact_form_cache_validator", "5QKpM", "no");
INSERT INTO `wp_options` VALUES("4259", "wpsupercache_start", "1483318432", "yes");
INSERT INTO `wp_options` VALUES("4260", "wpsupercache_count", "0", "yes");
INSERT INTO `wp_options` VALUES("1081", "wpseo_sitemap_104_cache_validator", "78lpB", "no");
INSERT INTO `wp_options` VALUES("1082", "wpseo_sitemap_329_cache_validator", "78lpE", "no");
INSERT INTO `wp_options` VALUES("3463", "wpseo_taxonomy_meta", "a:1:{s:11:\"product_cat\";a:1:{i:11;a:3:{s:10:\"wpseo_desc\";s:120:\"Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR\";s:13:\"wpseo_linkdex\";s:2:\"65\";s:19:\"wpseo_content_score\";s:2:\"30\";}}}", "yes");
INSERT INTO `wp_options` VALUES("4296", "supercache_stats", "a:3:{s:9:\"generated\";i:1483983372;s:10:\"supercache\";a:5:{s:7:\"expired\";i:0;s:12:\"expired_list\";a:0:{}s:6:\"cached\";i:0;s:11:\"cached_list\";a:0:{}s:2:\"ts\";i:1483983372;}s:7:\"wpcache\";a:3:{s:6:\"cached\";i:0;s:7:\"expired\";i:0;s:5:\"fsize\";s:3:\"0KB\";}}", "yes");
INSERT INTO `wp_options` VALUES("4264", "wpsupercache_gc_time", "1484329964", "yes");
INSERT INTO `wp_options` VALUES("393", "rs-templates", "a:2:{s:6:\"slider\";a:139:{i:0;a:20:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:20:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:20:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:20:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:439:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:20:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:20:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:20:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:20:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:20:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:20:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:20:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:20:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:20:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:20:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:20:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:20:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:20:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:20:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:20:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:20:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:20:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:20:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:20:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:20:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:20:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:346:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:20:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:20:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:20:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:20:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:20:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:20:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:20:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:20:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:20:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:20:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:20:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:630:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:20:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:20:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:20:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:20:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:518:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:20:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:20:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:20:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:323:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:20:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:316:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:20:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:20:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:20:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:20:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:20:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:20:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:20:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:20:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:691:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:20:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:693:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:20:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:532:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:20:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:543:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:20:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:661:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:20:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:20:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:20:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:20:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:20:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:20:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:20:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:20:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:441:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:20:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:20:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:572:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-whiteboard/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:20:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:516:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:23:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:23:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:23:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:23:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:23:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:23:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:23:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:23:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:23:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:23:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:23:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:23:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:23:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:23:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:23:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:23:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:20:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:20:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:20:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:20:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:23:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:23:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:23:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:23:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:23:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:23:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:23:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:23:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:20:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:20:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:23:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:23:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:23:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:23:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:23:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:20:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:20:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:20:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:23:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:23:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:23:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:23:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:20:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:426:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-typewriter/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:20:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:23:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:23:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:23:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:23:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:23:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:23:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:23:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:23:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:23:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:23:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:23:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:23:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:23:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:23:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:23:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:23:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:23:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:23:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:23:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:23:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:568:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:20:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:343:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:20:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:341:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:20:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:23:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:20:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:164:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:20:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:468:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:20:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:20:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:463:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:133:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}}}", "no");
INSERT INTO `wp_options` VALUES("2645", "wc_currency_converter_app_id", "", "yes");
INSERT INTO `wp_options` VALUES("4249", "ossdl_off_exclude", ".php", "yes");
INSERT INTO `wp_options` VALUES("4250", "ossdl_cname", "", "yes");
INSERT INTO `wp_options` VALUES("18047", "_site_transient_timeout_ewt_github_data", "1484335457", "no");
INSERT INTO `wp_options` VALUES("4466", "pagefrog_analytics_settings", "a:7:{s:17:\"chartbeat_enabled\";i:0;s:15:\"parsely_enabled\";i:0;s:23:\"other_analytics_enabled\";i:0;s:29:\"google_analytics_access_token\";s:71:\"ya29.Ci_HAzkeAG4MGuBhLIPUVNpBD99YZqBDHl8TPJcVODk4AsrGzSgq-YquFm_u0BzQLQ\";s:30:\"google_analytics_refresh_token\";s:45:\"1/3428Gvv81pKKkRtwEFDqvzEUCc00i3LiU0VcC9zP3Yc\";s:24:\"google_analytics_site_id\";s:13:\"UA-72886400-1\";s:24:\"google_analytics_enabled\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("4336", "p3_notices", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("4371", "p3_scan_", "{\"url\":\"\\/wp-admin\\/admin-ajax.php\",\"ip\":\"201.194.248.88\",\"pid\":7190,\"date\":\"2017-01-02T01:03:54+00:00\",\"runtime\":{\"total\":0.51639008522034,\"wordpress\":2.598762512207e-5,\"theme\":0,\"plugins\":0.51611304283142,\"profile\":0.0013728141784668,\"breakdown\":{\"p3-profiler\":0.51611304283142}},\"memory\":33554432,\"stacksize\":14,\"queries\":73}\n{\"url\":\"\\/wp-admin\\/admin-ajax.php\",\"ip\":\"201.194.248.88\",\"pid\":14794,\"date\":\"2017-01-03T00:12:24+00:00\",\"runtime\":{\"total\":0.61763906478882,\"wordpress\":2.6941299438477e-5,\"theme\":0,\"plugins\":0.61734318733215,\"profile\":0.001126766204834,\"breakdown\":{\"p3-profiler\":0.61734318733215}},\"memory\":12582912,\"stacksize\":14,\"queries\":72}\n", "yes");
INSERT INTO `wp_options` VALUES("17383", "_transient_yit_panel_sidebar_remote_widgets_update", "1", "no");
INSERT INTO `wp_options` VALUES("17389", "_transient_timeout_wc_report_sales_by_date", "1484417335", "no");
INSERT INTO `wp_options` VALUES("17390", "_transient_wc_report_sales_by_date", "a:7:{s:32:\"58fe79a41302b8610517efc67534204f\";a:0:{}s:32:\"acca9e325a2cdc972abcd90e5daca695\";a:0:{}s:32:\"5f2f39e6ee554dfec85f78a9a86cdce4\";a:0:{}s:32:\"6904bf5fc3ae78b1f49432929fdfe313\";N;s:32:\"1931deaacdb7b599f21b87c7f9f6268d\";a:0:{}s:32:\"9802ccc7509bb3ee08467deada261d1c\";a:0:{}s:32:\"d799beab66361ac5063e98aef2b4edf9\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17391", "_transient_timeout_wc_admin_report", "1484411429", "no");
INSERT INTO `wp_options` VALUES("17392", "_transient_wc_admin_report", "a:1:{s:32:\"70d5cfa0b4431589e4ea560d350269a4\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("18018", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1484331475;s:7:\"checked\";a:3:{s:15:\"flatastic-child\";s:0:\"\";s:9:\"flatastic\";s:5:\"1.6.0\";s:15:\"twentyseventeen\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17447", "_transient_timeout_plugin_slugs", "1484418557", "no");
INSERT INTO `wp_options` VALUES("17448", "_transient_plugin_slugs", "a:17:{i:0;s:44:\"above-the-fold-optimization/abovethefold.php\";i:1;s:29:\"bj-lazy-load/bj-lazy-load.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:41:\"envato-wordpress-toolkit-master/index.php\";i:5;s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";i:6;s:33:\"smart-slider-3/smart-slider-3.php\";i:7;s:34:\"ultimate_vc/Ultimate_VC_Addons.php\";i:8;s:27:\"updraftplus/updraftplus.php\";i:9;s:17:\"wassup/wassup.php\";i:10;s:27:\"woocommerce/woocommerce.php\";i:11;s:27:\"wp-optimize/wp-optimize.php\";i:12;s:27:\"js_composer/js_composer.php\";i:13;s:23:\"wp-smushit/wp-smush.php\";i:14;s:27:\"wp-super-cache/wp-cache.php\";i:15;s:37:\"yith-woocommerce-ajax-search/init.php\";i:16;s:24:\"wordpress-seo/wp-seo.php\";}", "no");
INSERT INTO `wp_options` VALUES("4486", "pagefrog_new_post_settings", "a:10:{s:19:\"amp_enable_new_post\";i:0;s:20:\"fbia_enable_new_post\";i:0;s:19:\"amp_enable_new_page\";i:0;s:20:\"fbia_enable_new_page\";i:0;s:22:\"amp_enable_new_product\";i:0;s:23:\"fbia_enable_new_product\";i:0;s:25:\"amp_disable_other_plugins\";i:0;s:26:\"fbia_disable_other_plugins\";i:0;s:22:\"amp_show_header_images\";i:0;s:23:\"fbia_show_header_images\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("4503", "wpseo_amp", "a:20:{s:7:\"version\";i:1;s:13:\"amp_site_icon\";s:0:\"\";s:13:\"default_image\";s:0:\"\";s:12:\"header-color\";s:0:\"\";s:14:\"headings-color\";s:0:\"\";s:10:\"text-color\";s:0:\"\";s:10:\"meta-color\";s:0:\"\";s:10:\"link-color\";s:0:\"\";s:16:\"link-color-hover\";s:0:\"\";s:9:\"underline\";s:9:\"underline\";s:21:\"blockquote-text-color\";s:0:\"\";s:19:\"blockquote-bg-color\";s:0:\"\";s:23:\"blockquote-border-color\";s:0:\"\";s:9:\"extra-css\";s:0:\"\";s:10:\"extra-head\";s:0:\"\";s:15:\"analytics-extra\";s:0:\"\";s:19:\"post_types-post-amp\";s:2:\"on\";s:19:\"post_types-page-amp\";s:2:\"on\";s:25:\"post_types-attachment-amp\";s:2:\"on\";s:22:\"post_types-product-amp\";s:2:\"on\";}", "yes");
INSERT INTO `wp_options` VALUES("6386", "wpseo_onpage", "a:2:{s:6:\"status\";i:-1;s:10:\"last_fetch\";i:1483404502;}", "yes");
INSERT INTO `wp_options` VALUES("7119", "wp-optimize-current-cleaned", "51268", "yes");
INSERT INTO `wp_options` VALUES("7147", "bj_lazy_load_options", "a:10:{s:14:\"filter_content\";s:3:\"yes\";s:18:\"filter_widget_text\";s:3:\"yes\";s:22:\"filter_post_thumbnails\";s:3:\"yes\";s:16:\"filter_gravatars\";s:3:\"yes\";s:16:\"lazy_load_images\";s:3:\"yes\";s:17:\"lazy_load_iframes\";s:3:\"yes\";s:15:\"placeholder_url\";s:0:\"\";s:12:\"skip_classes\";s:0:\"\";s:9:\"threshold\";s:3:\"200\";s:7:\"preview\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("7149", "wp-smush-hide_upgrade_notice", "1", "no");
INSERT INTO `wp_options` VALUES("7152", "wp-smush-hide_update_info", "1", "no");
INSERT INTO `wp_options` VALUES("10499", "wp-smush-resize_sizes", "a:2:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;}", "no");
INSERT INTO `wp_options` VALUES("12580", "_transient_wc_term_counts", "a:14:{i:11;s:2:\"27\";i:12;s:2:\"17\";i:13;s:1:\"9\";i:18;s:1:\"6\";i:15;s:2:\"12\";i:17;s:1:\"5\";i:16;s:1:\"9\";i:9;s:1:\"1\";i:20;s:1:\"5\";i:10;s:1:\"3\";i:8;s:1:\"3\";i:19;s:1:\"1\";i:7;s:1:\"4\";i:21;s:1:\"1\";}", "no");
INSERT INTO `wp_options` VALUES("9660", "_site_transient_browser_c0c4b214efa9ca4534f836fa0c819716", "a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";s:4:\"10.0\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("10497", "wp-smush-png_to_jpg", "0", "no");
INSERT INTO `wp_options` VALUES("10498", "wp-smush-image_sizes", "a:7:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:5:\"large\";i:3;s:9:\"tiny-lazy\";i:4;s:14:\"shop_thumbnail\";i:5;s:12:\"shop_catalog\";i:6;s:11:\"shop_single\";}", "no");
INSERT INTO `wp_options` VALUES("10494", "wp-smush-lossy", "0", "no");
INSERT INTO `wp_options` VALUES("10495", "wp-smush-original", "0", "no");
INSERT INTO `wp_options` VALUES("10490", "wp-smush-networkwide", "0", "no");
INSERT INTO `wp_options` VALUES("10491", "wp-smush-auto", "1", "no");
INSERT INTO `wp_options` VALUES("10492", "wp-smush-keep_exif", "0", "no");
INSERT INTO `wp_options` VALUES("10493", "wp-smush-resize", "1", "no");
INSERT INTO `wp_options` VALUES("16614", "_transient_timeout_bsf_check_product_updates", "1484466278", "no");
INSERT INTO `wp_options` VALUES("12115", "qtranslate_next_thanks", "1508877481", "yes");
INSERT INTO `wp_options` VALUES("12106", "qtranslate_admin_notices", "a:1:{s:11:\"next_thanks\";i:1483735080;}", "yes");
INSERT INTO `wp_options` VALUES("12744", "_transient_timeout_wc_outofstock_count", "1486490804", "no");
INSERT INTO `wp_options` VALUES("12745", "_transient_wc_outofstock_count", "0", "no");
INSERT INTO `wp_options` VALUES("15225", "wassup_settings", "a:42:{s:14:\"wassup_refresh\";s:1:\"3\";s:16:\"wassup_userlevel\";s:1:\"8\";s:17:\"wassup_screen_res\";s:3:\"800\";s:19:\"wassup_default_type\";s:10:\"everything\";s:23:\"wassup_default_spy_type\";s:10:\"everything\";s:20:\"wassup_default_limit\";s:2:\"50\";s:12:\"wassup_top10\";s:317:\"a:12:{s:8:\"toplimit\";i:10;s:9:\"topsearch\";s:1:\"1\";s:11:\"topreferrer\";s:1:\"1\";s:9:\"toppostid\";s:1:\"1\";s:10:\"toprequest\";s:1:\"1\";s:10:\"topbrowser\";s:1:\"1\";s:5:\"topos\";s:1:\"1\";s:9:\"toplocale\";s:1:\"0\";s:10:\"topvisitor\";s:1:\"0\";s:19:\"topreferrer_exclude\";s:0:\"\";s:15:\"top_nofrontpage\";s:1:\"0\";s:12:\"top_nospider\";s:1:\"0\";}\";s:18:\"wassup_time_format\";s:2:\"24\";s:18:\"wassup_time_period\";s:1:\"1\";s:13:\"wassup_active\";s:1:\"1\";s:15:\"wassup_loggedin\";s:1:\"1\";s:12:\"wassup_admin\";s:1:\"1\";s:13:\"wassup_spider\";s:1:\"1\";s:14:\"wassup_exclude\";s:0:\"\";s:19:\"wassup_exclude_host\";s:0:\"\";s:18:\"wassup_exclude_url\";s:0:\"\";s:19:\"wassup_exclude_user\";s:0:\"\";s:16:\"wassup_spamcheck\";s:1:\"1\";s:11:\"wassup_spam\";s:1:\"1\";s:14:\"wassup_refspam\";s:1:\"1\";s:13:\"wassup_attack\";s:1:\"1\";s:11:\"wassup_hack\";s:1:\"1\";s:12:\"wassup_table\";s:9:\"wp_wassup\";s:15:\"wassup_dbengine\";s:6:\"MyISAM\";s:16:\"wassup_uninstall\";s:1:\"0\";s:11:\"delete_auto\";s:5:\"never\";s:13:\"delete_filter\";s:3:\"all\";s:15:\"wassup_optimize\";s:10:\"1484445600\";s:16:\"wassup_remind_mb\";s:3:\"100\";s:18:\"wassup_remind_flag\";s:1:\"1\";s:14:\"delayed_insert\";s:1:\"0\";s:11:\"export_spam\";s:1:\"0\";s:17:\"export_omit_recid\";s:1:\"0\";s:22:\"wassup_dashboard_chart\";s:1:\"0\";s:12:\"wassup_chart\";s:1:\"1\";s:17:\"wassup_chart_type\";s:1:\"2\";s:16:\"wassup_geoip_map\";s:1:\"1\";s:21:\"wassup_googlemaps_key\";s:0:\"\";s:5:\"whash\";s:32:\"8874a0bbd0fb14f60cff69479f306c9a\";s:20:\"wassup_alert_message\";s:0:\"\";s:14:\"wassup_version\";s:5:\"1.9.3\";s:15:\"wassup_upgraded\";s:10:\"1484006573\";}", "yes");
INSERT INTO `wp_options` VALUES("10615", "jetpack_file_data", "a:1:{s:5:\"4.4.2\";a:50:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:40:\"Check your spelling, style, and grammar.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:64:\"Transform image galleries into gorgeous, 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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:65:\"Allow comments with WordPress.com, Twitter, Facebook, or Google+.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable 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:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:61:\"Organize and display different types of content on your site.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{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:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:54:\"Automatically load new content when a visitor scrolls.\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";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:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup 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:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate 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:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";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:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{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:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:47:\"Optimize your site for smartphones and tablets.\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";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:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";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:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{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:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{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:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:34:\"Publish posts by sending an email.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:43:\"Prevent and block malicious login attempts.\";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:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.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:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to 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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:245:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links 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:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";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:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:46:\"Secure user authentication with WordPress.com.\";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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable 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:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:55:\"Notify your readers of new posts and comments by 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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";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:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:44:\"Powerful, simple video hosting for WordPress\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}}}", "yes");
INSERT INTO `wp_options` VALUES("10616", "jetpack_available_modules", "a:1:{s:5:\"4.4.2\";a:37:{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:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";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("10628", "updraft_dropbox", "a:4:{s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:472:\"7Twwu8j/RWoID5HEjYHU/x9tZk9J+jfRp+I2xSqQLKSlwfLKP3HGBsqsUWsuq4zXKdAH5aejQnG9Skwf+IdwadJMW8mzg/Ouoi9CtU0/YqR4QZk/wgPAe2OSdoZl2ApYEmLVneRQZUjDqYpha6CPSoVAYAvLlx5NIXlKp6tYe+t8S/IgtDihIfhN2fMe5D9el02Ga9UPMCbNdIVH6pkuE0j3W3afLN66llQxKVizoMJzymEeDc9f3iCnhv2v9tQa5XNyG+uy8e4RdfwvO0ixVlxxv94rEDCxR8PV7nBR5g2fhodnOAvIdNhRkFPyhMeV5pBWWlXTtQBggnOIlTXIBWBtjHgRxBzR2JWznmUFHuasmRQQ1jY00S1o+8XTtXE+/1AWAsluVUT01YYnsvTOGFJ/O4eiR4Mt0b0AfzLgnQ6S/ag11ibAGqipeZ+11RK2Lqj52hsge7shMM1USMN8BQ==\";s:9:\"ownername\";s:14:\"Jostrike Sandi\";s:4:\"CSRF\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10620", "do_activate", "0", "yes");
INSERT INTO `wp_options` VALUES("10629", "updraftplus-addons_siteid", "1f7fa231c5b2eeb5959f334aa24373e2", "no");
INSERT INTO `wp_options` VALUES("10648", "updraft_retain_extrarules", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10649", "updraft_email", "", "yes");
INSERT INTO `wp_options` VALUES("10650", "updraft_report_warningsonly", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10651", "updraft_report_wholebackup", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10652", "updraft_extradbs", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10653", "updraft_include_more_path", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10654", "updraft_interval", "weekly", "yes");
INSERT INTO `wp_options` VALUES("10655", "updraft_retain", "2", "yes");
INSERT INTO `wp_options` VALUES("10658", "updraft_interval_database", "weekly", "yes");
INSERT INTO `wp_options` VALUES("10659", "updraft_retain_db", "2", "yes");
INSERT INTO `wp_options` VALUES("10660", "updraft_service", "dropbox", "yes");
INSERT INTO `wp_options` VALUES("10661", "updraft_s3", "a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10662", "updraft_cloudfiles", "a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10663", "updraft_googledrive", "a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}", "yes");
INSERT INTO `wp_options` VALUES("10664", "updraft_ftp", "a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("10665", "updraft_s3generic", "a:4:{s:8:\"endpoint\";s:0:\"\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10666", "updraft_openstack", "a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10667", "updraft_dreamobjects", "a:4:{s:8:\"endpoint\";s:26:\"objects-us-west-1.dream.io\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10668", "updraft_include_plugins", "1", "yes");
INSERT INTO `wp_options` VALUES("10669", "updraft_include_themes", "1", "yes");
INSERT INTO `wp_options` VALUES("10670", "updraft_include_uploads", "1", "yes");
INSERT INTO `wp_options` VALUES("10671", "updraft_include_uploads_exclude", "backup*,*backups,backwpup*,wp-clone,snapshots", "yes");
INSERT INTO `wp_options` VALUES("10672", "updraft_include_others", "1", "yes");
INSERT INTO `wp_options` VALUES("10673", "updraft_include_others_exclude", "upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log", "yes");
INSERT INTO `wp_options` VALUES("10674", "updraft_split_every", "400", "yes");
INSERT INTO `wp_options` VALUES("10675", "updraft_delete_local", "1", "yes");
INSERT INTO `wp_options` VALUES("10676", "updraft_dir", "updraft", "yes");
INSERT INTO `wp_options` VALUES("10677", "updraft_debug_mode", "0", "yes");
INSERT INTO `wp_options` VALUES("10678", "updraft_ssl_useservercerts", "0", "yes");
INSERT INTO `wp_options` VALUES("10679", "updraft_ssl_disableverify", "0", "yes");
INSERT INTO `wp_options` VALUES("10680", "updraft_ssl_nossl", "0", "yes");
INSERT INTO `wp_options` VALUES("10683", "updraft_lastmessage", "Local files deleted: 1. Remote files deleted: 5 (Ene 13 12:27:17)", "yes");
INSERT INTO `wp_options` VALUES("16631", "updraft_combine_jobs_around", "1484787122", "yes");
INSERT INTO `wp_options` VALUES("18019", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.1.26\";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("18069", "updraft_jobdata_1311d92dd009", "a:2:{s:8:\"job_type\";s:6:\"delete\";s:11:\"job_time_ms\";d:1484332023.4573579;}", "no");
INSERT INTO `wp_options` VALUES("18072", "updraft_jobdata_6709d6e539ad", "a:2:{s:8:\"job_type\";s:6:\"delete\";s:11:\"job_time_ms\";d:1484332031.4420071;}", "no");
INSERT INTO `wp_options` VALUES("10688", "updraftplus_locked_fd", "1", "yes");
INSERT INTO `wp_options` VALUES("10718", "sharing-options", "a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:12:\"Compártelo:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}", "yes");
INSERT INTO `wp_options` VALUES("10691", "updraft_last_scheduled_fd", "1484326461", "yes");
INSERT INTO `wp_options` VALUES("10689", "updraftplus_last_lock_time_fd", "2017-01-13 16:54:21", "yes");
INSERT INTO `wp_options` VALUES("10690", "updraftplus_semaphore_fd", "1", "yes");
INSERT INTO `wp_options` VALUES("10702", "updraftplus_unlocked_", "1", "yes");
INSERT INTO `wp_options` VALUES("10704", "updraftplus_semaphore_", "0", "yes");
INSERT INTO `wp_options` VALUES("10703", "updraftplus_last_lock_time_", "2017-01-05 00:54:22", "yes");
INSERT INTO `wp_options` VALUES("10719", "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\";b:0;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("10724", "jetpack_log", "a:2:{i:0;a:4:{s:4:\"time\";i:1483577817;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:5:{s:4:\"time\";i:1483577902;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:122112523;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}}", "no");
INSERT INTO `wp_options` VALUES("10725", "jetpack_private_options", "a:1:{s:9:\"authorize\";s:78:\"WxtWQ882voO9vJMLwXmTibiakmhSgnnl:W6z9GMTAxmYJ42JseXavCWozDUOAu1V3:1483578512:1\";}", "yes");
INSERT INTO `wp_options` VALUES("10734", "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("10737", "jetpack_protect_key", "ab11d87e888695389790240250307716e0ca9f61", "no");
INSERT INTO `wp_options` VALUES("10741", "widget_facebook-likebox", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10742", "widget_wpcom-goodreads", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10743", "widget_google_translate_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10744", "widget_googleplus-badge", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10745", "widget_grofile", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10746", "widget_image", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10747", "widget_jetpack_my_community", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10748", "widget_rss_links", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10749", "widget_wpcom_social_media_icons_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10750", "widget_twitter_timeline", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10751", "widget_jetpack_display_posts_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10754", "jetpack_portfolio", "0", "yes");
INSERT INTO `wp_options` VALUES("10755", "sharedaddy_disable_resources", "0", "yes");
INSERT INTO `wp_options` VALUES("10756", "jetpack_testimonial", "0", "yes");
INSERT INTO `wp_options` VALUES("11157", "updraft_backup_history", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("15226", "widget_wassup_online", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10859", "jetpack_sync_full_config", "a:9:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"terms\";b:1;s:6:\"themes\";b:1;s:5:\"users\";b:1;s:5:\"posts\";b:1;s:8:\"comments\";b:1;s:7:\"updates\";b:1;}", "no");
INSERT INTO `wp_options` VALUES("10787", "jetpack_next_sync_time_full-sync-enqueue", "1483578032", "yes");
INSERT INTO `wp_options` VALUES("10785", "jpsq_sync_checkout", "0:0", "no");
INSERT INTO `wp_options` VALUES("10798", "jetpack_active_plan", "a:6:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:18:\"product_name_short\";s:4:\"Free\";s:10:\"free_trial\";b:0;s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("10799", "post_by_email_address1", "NULL", "yes");
INSERT INTO `wp_options` VALUES("10800", "monitor_receive_notifications", "1", "yes");
INSERT INTO `wp_options` VALUES("10795", "trusted_ip_header", "O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("11158", "updraft_last_backup", "a:5:{s:11:\"backup_time\";i:1484326461;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:73:\"backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-plugins.zip\";}s:12:\"plugins-size\";i:27198076;s:6:\"themes\";a:1:{i:0;s:72:\"backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-themes.zip\";}s:11:\"themes-size\";i:8066025;s:7:\"uploads\";a:1:{i:0;s:73:\"backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-uploads.zip\";}s:12:\"uploads-size\";i:32595083;s:6:\"others\";a:1:{i:0;s:72:\"backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-others.zip\";}s:11:\"others-size\";i:1100970;s:2:\"db\";s:67:\"backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-db.gz\";s:7:\"db-size\";i:216945;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"eebc4f85f2226bf7ff6db669f4428b56baaeb84c\";s:7:\"themes0\";s:40:\"a572a8581e07cf51d93620a0ea3c27166086a22b\";s:8:\"uploads0\";s:40:\"404bcd39931472405d5f63b9ee8f101f391747e8\";s:7:\"others0\";s:40:\"f9d21bb338e1d478e5a22bd4352951c3d82090f0\";s:3:\"db0\";s:40:\"3ca0d1f9792a5bac042ea61642210405fd2923fa\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"744aa126681b\";}", "yes");
INSERT INTO `wp_options` VALUES("18119", "_transient_wc_attribute_taxonomies", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("17982", "_transient_timeout_wpseo-dashboard-totals", "1484417335", "no");
INSERT INTO `wp_options` VALUES("17983", "_transient_wpseo-dashboard-totals", "a:1:{i:1;a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17385", "_site_transient_timeout_browser_3724cf524ce46cd3376f6aebb4c04837", "1484929828", "no");
INSERT INTO `wp_options` VALUES("17386", "_site_transient_browser_3724cf524ce46cd3376f6aebb4c04837", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("12107", "qtranslate_enabled_languages", "a:2:{i:0;s:2:\"es\";i:1;s:2:\"en\";}", "yes");
INSERT INTO `wp_options` VALUES("12108", "qtranslate_default_language", "es", "yes");
INSERT INTO `wp_options` VALUES("12564", "wpseo_sitemap_640_cache_validator", "64gkJ", "no");
INSERT INTO `wp_options` VALUES("12109", "qtranslate_version_previous", "34680", "yes");
INSERT INTO `wp_options` VALUES("12110", "qtranslate_versions", "a:4:{i:34680;i:1483735080;s:1:\"l\";i:1483735080;s:1:\"t\";i:1207;s:1:\"p\";i:1483736287;}", "yes");
INSERT INTO `wp_options` VALUES("12111", "qtranslate_admin_config", "a:7:{s:4:\"post\";a:4:{s:5:\"pages\";a:2:{s:8:\"post.php\";s:0:\"\";s:12:\"post-new.php\";s:0:\"\";}s:7:\"anchors\";a:1:{s:17:\"post-body-content\";a:1:{s:5:\"where\";s:10:\"first last\";}}s:5:\"forms\";a:2:{s:4:\"post\";a:1:{s:6:\"fields\";a:8:{s:5:\"title\";a:0:{}s:7:\"excerpt\";a:0:{}s:18:\"attachment_caption\";a:0:{}s:14:\"attachment_alt\";a:0:{}s:13:\"view-post-btn\";a:1:{s:6:\"encode\";s:7:\"display\";}s:14:\"wp-editor-area\";a:1:{s:6:\"jquery\";s:15:\".wp-editor-area\";}s:15:\"gallery-caption\";a:2:{s:6:\"jquery\";s:16:\".gallery-caption\";s:6:\"encode\";s:4:\"none\";}s:15:\"wp-caption-text\";a:2:{s:6:\"jquery\";s:16:\".wp-caption-text\";s:6:\"encode\";s:7:\"display\";}}}s:14:\"wpbody-content\";a:1:{s:6:\"fields\";a:2:{s:7:\"wrap-h1\";a:2:{s:6:\"jquery\";s:8:\".wrap h1\";s:6:\"encode\";s:7:\"display\";}s:7:\"wrap-h2\";a:2:{s:6:\"jquery\";s:8:\".wrap h2\";s:6:\"encode\";s:7:\"display\";}}}}s:7:\"js-exec\";a:1:{s:9:\"post-exec\";a:1:{s:3:\"src\";s:27:\"./admin/js/post-exec.min.js\";}}}s:15:\"options-general\";a:3:{s:14:\"preg_delimiter\";s:1:\"#\";s:5:\"pages\";a:1:{s:19:\"options-general.php\";s:21:\"^(?!.*page=[^=&]+).*$\";}s:5:\"forms\";a:1:{s:7:\"options\";a:1:{s:6:\"fields\";a:3:{s:8:\"blogname\";a:0:{}s:15:\"blogdescription\";a:0:{}s:10:\"head-title\";a:2:{s:6:\"jquery\";s:10:\"head title\";s:6:\"encode\";s:7:\"display\";}}}}}s:7:\"widgets\";a:4:{s:5:\"pages\";a:1:{s:11:\"widgets.php\";s:0:\"\";}s:7:\"anchors\";a:1:{s:13:\"widgets-right\";a:1:{s:5:\"where\";s:12:\"before after\";}}s:5:\"forms\";a:1:{s:13:\"widgets-right\";a:1:{s:6:\"fields\";a:3:{s:12:\"widget-title\";a:1:{s:6:\"jquery\";s:34:\"input[id^=\'widget-\'][id$=\'-title\']\";}s:16:\"widget-text-text\";a:1:{s:6:\"jquery\";s:41:\"textarea[id^=\'widget-text-\'][id$=\'-text\']\";}s:15:\"in-widget-title\";a:2:{s:6:\"jquery\";s:20:\"span.in-widget-title\";s:6:\"encode\";s:7:\"display\";}}}}s:7:\"js-exec\";a:1:{s:12:\"widgets-exec\";a:1:{s:3:\"src\";s:30:\"./admin/js/widgets-exec.min.js\";}}}s:8:\"edit-tag\";a:3:{s:5:\"pages\";a:2:{s:8:\"term.php\";s:0:\"\";s:13:\"edit-tags.php\";s:11:\"action=edit\";}s:5:\"forms\";a:1:{s:7:\"edittag\";a:1:{s:6:\"fields\";a:3:{s:4:\"name\";a:0:{}s:11:\"description\";a:0:{}s:6:\"parent\";a:1:{s:6:\"encode\";s:7:\"display\";}}}}s:7:\"js-exec\";a:1:{s:13:\"edit-tag-exec\";a:1:{s:3:\"src\";s:31:\"./admin/js/edit-tag-exec.min.js\";}}}s:9:\"edit-tags\";a:5:{s:14:\"preg_delimiter\";s:1:\"#\";s:5:\"pages\";a:1:{s:13:\"edit-tags.php\";s:21:\"^(?!.*action=edit).*$\";}s:7:\"anchors\";a:1:{s:12:\"posts-filter\";a:1:{s:5:\"where\";s:12:\"before after\";}}s:5:\"forms\";a:3:{s:6:\"addtag\";a:1:{s:6:\"fields\";a:3:{s:8:\"tag-name\";a:0:{}s:15:\"tag-description\";a:0:{}s:6:\"parent\";a:1:{s:6:\"encode\";s:7:\"display\";}}}s:8:\"col-left\";a:1:{s:6:\"fields\";a:1:{s:8:\"tagcloud\";a:2:{s:6:\"jquery\";s:13:\".tagcloud > a\";s:6:\"encode\";s:7:\"display\";}}}s:8:\"the-list\";a:1:{s:6:\"fields\";a:2:{s:9:\"row-title\";a:2:{s:6:\"jquery\";s:10:\".row-title\";s:6:\"encode\";s:7:\"display\";}s:11:\"description\";a:2:{s:6:\"jquery\";s:12:\".description\";s:6:\"encode\";s:7:\"display\";}}}}s:7:\"js-exec\";a:1:{s:14:\"edit-tags-exec\";a:1:{s:3:\"src\";s:32:\"./admin/js/edit-tags-exec.min.js\";}}}s:9:\"nav-menus\";a:4:{s:5:\"pages\";a:1:{s:13:\"nav-menus.php\";s:23:\"action=edit|menu=\\d+|^$\";}s:7:\"anchors\";a:1:{s:12:\"menu-to-edit\";a:1:{s:5:\"where\";s:12:\"before after\";}}s:5:\"forms\";a:2:{s:15:\"update-nav-menu\";a:1:{s:6:\"fields\";a:5:{s:5:\"title\";a:1:{s:6:\"jquery\";s:27:\"[id^=edit-menu-item-title-]\";}s:10:\"attr-title\";a:1:{s:6:\"jquery\";s:32:\"[id^=edit-menu-item-attr-title-]\";}s:11:\"description\";a:1:{s:6:\"jquery\";s:33:\"[id^=edit-menu-item-description-]\";}s:10:\"span.title\";a:2:{s:6:\"jquery\";s:20:\"span.menu-item-title\";s:6:\"encode\";s:7:\"display\";}s:16:\"link-to-original\";a:2:{s:6:\"jquery\";s:20:\".link-to-original >a\";s:6:\"encode\";s:7:\"display\";}}}s:14:\"side-sortables\";a:1:{s:6:\"fields\";a:2:{s:11:\"label.title\";a:2:{s:6:\"jquery\";s:21:\"label.menu-item-title\";s:6:\"encode\";s:7:\"display\";}s:23:\"accordion-section-title\";a:2:{s:6:\"jquery\";s:26:\"h3.accordion-section-title\";s:6:\"encode\";s:7:\"display\";}}}}s:7:\"js-exec\";a:1:{s:14:\"nav-menus-exec\";a:1:{s:3:\"src\";s:32:\"./admin/js/nav-menus-exec.min.js\";}}}s:9:\"all-pages\";a:1:{s:7:\"filters\";a:1:{s:4:\"text\";a:1:{s:11:\"admin_title\";s:2:\"20\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("12113", "widget_qtranslate", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("12112", "qtranslate_front_config", "a:1:{s:9:\"all-pages\";a:1:{s:7:\"filters\";a:3:{s:4:\"text\";a:11:{s:12:\"widget_title\";s:2:\"20\";s:11:\"widget_text\";s:2:\"20\";s:9:\"the_title\";s:2:\"20\";s:20:\"category_description\";s:2:\"20\";s:9:\"list_cats\";s:2:\"20\";s:16:\"wp_dropdown_cats\";s:2:\"20\";s:9:\"term_name\";s:2:\"20\";s:18:\"get_comment_author\";s:2:\"20\";s:10:\"the_author\";s:2:\"20\";s:9:\"tml_title\";s:2:\"20\";s:16:\"term_description\";s:2:\"20\";}s:4:\"term\";a:10:{s:7:\"cat_row\";s:1:\"0\";s:8:\"cat_rows\";s:1:\"0\";s:19:\"wp_get_object_terms\";s:1:\"0\";s:16:\"single_cat_title\";s:1:\"0\";s:16:\"single_tag_title\";s:1:\"0\";s:17:\"single_term_title\";s:1:\"0\";s:12:\"the_category\";s:1:\"0\";s:8:\"get_term\";s:1:\"0\";s:9:\"get_terms\";s:1:\"0\";s:12:\"get_category\";s:1:\"0\";}s:3:\"url\";a:16:{s:16:\"author_feed_link\";s:2:\"10\";s:11:\"author_link\";s:2:\"10\";s:27:\"get_comment_author_url_link\";s:2:\"10\";s:23:\"post_comments_feed_link\";s:2:\"10\";s:8:\"day_link\";s:2:\"10\";s:10:\"month_link\";s:2:\"10\";s:9:\"year_link\";s:2:\"10\";s:9:\"page_link\";s:2:\"10\";s:9:\"post_link\";s:2:\"10\";s:13:\"category_link\";s:2:\"10\";s:18:\"category_feed_link\";s:2:\"10\";s:8:\"tag_link\";s:2:\"10\";s:9:\"term_link\";s:2:\"10\";s:13:\"the_permalink\";s:2:\"10\";s:9:\"feed_link\";s:2:\"10\";s:13:\"tag_feed_link\";s:2:\"10\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("16611", "_transient_woocommerce_currency_converter_rates", "{\n  \"disclaimer\": \"Exchange rates provided for informational purposes only and do not constitute financial advice of any kind. Although every attempt is made to ensure quality, no guarantees are made of accuracy, validity, availability, or fitness for any purpose. All usage subject to acceptance of Terms: https://openexchangerates.org/terms/\",\n  \"license\": \"Data sourced from various providers; resale prohibited; no warranties given of any kind. All usage subject to License Agreement: https://openexchangerates.org/license/\",\n  \"timestamp\": 1484293200,\n  \"base\": \"USD\",\n  \"rates\": {\n    \"AED\": 3.673299,\n    \"AFN\": 67.126,\n    \"ALL\": 128.984581,\n    \"AMD\": 485.142504,\n    \"ANG\": 1.776828,\n    \"AOA\": 165.9035,\n    \"ARS\": 15.8125,\n    \"AUD\": 1.333847,\n    \"AWG\": 1.799996,\n    \"AZN\": 1.82235,\n    \"BAM\": 1.843148,\n    \"BBD\": 2.009189,\n    \"BDT\": 79.626534,\n    \"BGN\": 1.84169,\n    \"BHD\": 0.377006,\n    \"BIF\": 1683.1,\n    \"BMD\": 1,\n    \"BND\": 1.42445,\n    \"BOB\": 6.956332,\n    \"BRL\": 3.188007,\n    \"BSD\": 1.003907,\n    \"BTC\": 0.001285942081,\n    \"BTN\": 68.119184,\n    \"BWP\": 10.58935,\n    \"BYN\": 1.960915,\n    \"BYR\": 20026.25,\n    \"BZD\": 2.017799,\n    \"CAD\": 1.313584,\n    \"CDF\": 1212.522046,\n    \"CHF\": 1.008192,\n    \"CLF\": 0.0252,\n    \"CLP\": 661.3,\n    \"CNY\": 6.8921,\n    \"COP\": 2924.5,\n    \"CRC\": 557.625,\n    \"CUC\": 1,\n    \"CUP\": 24.728383,\n    \"CVE\": 103.775,\n    \"CZK\": 25.3993,\n    \"DJF\": 178.97,\n    \"DKK\": 6.988594,\n    \"DOP\": 46.726598,\n    \"DZD\": 109.78,\n    \"EEK\": 14.7182,\n    \"EGP\": 18.9235,\n    \"ERN\": 15.33775,\n    \"ETB\": 22.660331,\n    \"EUR\": 0.939989,\n    \"FJD\": 2.077803,\n    \"FKP\": 0.821406,\n    \"GBP\": 0.821406,\n    \"GEL\": 2.736199,\n    \"GGP\": 0.821406,\n    \"GHS\": 4.296279,\n    \"GIP\": 0.821406,\n    \"GMD\": 43.7,\n    \"GNF\": 9467.25,\n    \"GTQ\": 7.559726,\n    \"GYD\": 208.78845,\n    \"HKD\": 7.754944,\n    \"HNL\": 23.038139,\n    \"HRK\": 7.085488,\n    \"HTG\": 66.306493,\n    \"HUF\": 289.086875,\n    \"IDR\": 13286.633333,\n    \"ILS\": 3.8257,\n    \"IMP\": 0.821406,\n    \"INR\": 68.2355,\n    \"IQD\": 1186.5,\n    \"IRR\": 32380.525,\n    \"ISK\": 114.210688,\n    \"JEP\": 0.821406,\n    \"JMD\": 129.303155,\n    \"JOD\": 0.709302,\n    \"JPY\": 114.629364,\n    \"KES\": 103.96,\n    \"KGS\": 69.482651,\n    \"KHR\": 4041,\n    \"KMF\": 461.935614,\n    \"KPW\": 900.09,\n    \"KRW\": 1172.63,\n    \"KWD\": 0.305519,\n    \"KYD\": 0.836453,\n    \"KZT\": 333.19,\n    \"LAK\": 8206,\n    \"LBP\": 1513.95,\n    \"LKR\": 150.63,\n    \"LRD\": 93.490275,\n    \"LSL\": 13.50054,\n    \"LTL\": 3.2479,\n    \"LVL\": 0.661102,\n    \"LYD\": 1.442446,\n    \"MAD\": 10.0712,\n    \"MDL\": 20.189866,\n    \"MGA\": 3337.4,\n    \"MKD\": 57.8905,\n    \"MMK\": 1369.25,\n    \"MNT\": 2492.723333,\n    \"MOP\": 8.01727,\n    \"MRO\": 360.2,\n    \"MTL\": 0.683738,\n    \"MUR\": 35.9505,\n    \"MVR\": 15.399855,\n    \"MWK\": 732.83,\n    \"MXN\": 21.8271,\n    \"MYR\": 4.458018,\n    \"MZN\": 70.5,\n    \"NAD\": 13.50054,\n    \"NGN\": 316.389481,\n    \"NIO\": 29.597047,\n    \"NOK\": 8.510048,\n    \"NPR\": 109.315841,\n    \"NZD\": 1.402492,\n    \"OMR\": 0.38502,\n    \"PAB\": 1.003746,\n    \"PEN\": 3.3615,\n    \"PGK\": 3.188966,\n    \"PHP\": 49.639,\n    \"PKR\": 105.219506,\n    \"PLN\": 4.10836,\n    \"PYG\": 5776.9,\n    \"QAR\": 3.6409,\n    \"RON\": 4.226196,\n    \"RSD\": 116.312691,\n    \"RUB\": 59.3548,\n    \"RWF\": 837.145746,\n    \"SAR\": 3.75055,\n    \"SBD\": 7.90339,\n    \"SCR\": 13.45,\n    \"SDG\": 6.455652,\n    \"SEK\": 8.929032,\n    \"SGD\": 1.426941,\n    \"SHP\": 0.821406,\n    \"SLL\": 7391.6425,\n    \"SOS\": 580.745,\n    \"SRD\": 7.466,\n    \"STD\": 23063.04961,\n    \"SVC\": 8.783114,\n    \"SYP\": 213.98,\n    \"SZL\": 13.542131,\n    \"THB\": 35.399,\n    \"TJS\": 7.904803,\n    \"TMT\": 3.499986,\n    \"TND\": 2.310097,\n    \"TOP\": 2.303285,\n    \"TRY\": 3.788142,\n    \"TTD\": 6.745575,\n    \"TWD\": 31.528914,\n    \"TZS\": 2228.6,\n    \"UAH\": 27.385361,\n    \"UGX\": 3633.8,\n    \"USD\": 1,\n    \"UYU\": 28.80644,\n    \"UZS\": 3255.3,\n    \"VEF\": 9.99001,\n    \"VND\": 22550.083333,\n    \"VUV\": 109.851667,\n    \"WST\": 2.56206,\n    \"XAF\": 617.872276,\n    \"XAG\": 0.05979087,\n    \"XAU\": 0.00083584,\n    \"XCD\": 2.70255,\n    \"XDR\": 0.73924,\n    \"XOF\": 619.210176,\n    \"XPD\": 0.00133938,\n    \"XPF\": 112.173614,\n    \"XPT\": 0.0010304,\n    \"YER\": 250.256642,\n    \"ZAR\": 13.491683,\n    \"ZMK\": 5253.075255,\n    \"ZMW\": 10.063057,\n    \"ZWL\": 322.322775\n  }\n}", "no");
INSERT INTO `wp_options` VALUES("12680", "brainstrom_bundled_products", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("12742", "_transient_timeout_wc_low_stock_count", "1486490804", "no");
INSERT INTO `wp_options` VALUES("14598", "abovethefold", "a:29:{s:9:\"csseditor\";b:1;s:11:\"cssdelivery\";b:0;s:16:\"loadcss_enhanced\";b:1;s:20:\"cssdelivery_position\";s:6:\"header\";s:10:\"jsdelivery\";b:0;s:19:\"jsdelivery_position\";s:6:\"footer\";s:17:\"jsdelivery_jquery\";b:1;s:20:\"jsdelivery_async_all\";b:1;s:4:\"gwfo\";b:1;s:15:\"gwfo_loadmethod\";s:6:\"inline\";s:17:\"gwfo_loadposition\";s:6:\"header\";s:5:\"debug\";b:0;s:8:\"adminbar\";b:1;s:15:\"clear_pagecache\";b:0;s:17:\"gwfo_config_valid\";b:1;s:15:\"jsdelivery_deps\";b:1;s:23:\"jsdelivery_scriptloader\";s:13:\"little-loader\";s:17:\"jsdelivery_ignore\";a:0:{}s:17:\"jsdelivery_remove\";a:0:{}s:16:\"jsdelivery_async\";a:0:{}s:25:\"jsdelivery_async_disabled\";a:0:{}s:19:\"lazyscripts_enabled\";b:1;s:12:\"update_count\";i:7;s:18:\"cssdelivery_ignore\";a:0:{}s:18:\"cssdelivery_remove\";a:0:{}s:23:\"cssdelivery_renderdelay\";b:0;s:11:\"gwfo_config\";s:0:\"\";s:16:\"gwfo_googlefonts\";a:0:{}s:23:\"gwfo_googlefonts_remove\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("14599", "wpabtf_version", "2.7.10", "no");
INSERT INTO `wp_options` VALUES("14605", "abovethefold-criticalcss", "a:1:{s:10:\"global.css\";a:3:{s:4:\"file\";s:90:\"/home/u585192189/public_html/wp-content/themes/flatastic-child/abovethefold/css/global.css\";s:1:\"t\";i:1484293446;s:6:\"weight\";i:0;}}", "yes");
INSERT INTO `wp_options` VALUES("14603", "abovethefold-proxy-stats", "a:4:{s:5:\"files\";i:0;s:4:\"size\";i:0;s:7:\"deleted\";i:0;s:4:\"date\";i:1484306259;}", "no");
INSERT INTO `wp_options` VALUES("14615", "abovethefold_notices", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("14618", "abtf_lazyxt_version", "1.1.0", "yes");
INSERT INTO `wp_options` VALUES("14622", "abtf_webfontjs_version", "1.6.27", "yes");
INSERT INTO `wp_options` VALUES("15227", "widget_wassup_topstats", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10980", "gravatar_disable_hovercards", "0", "yes");
INSERT INTO `wp_options` VALUES("10860", "jetpack_sync_full_enqueue_status", "a:16:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:15:\"network_options\";b:0;s:5:\"terms\";a:3:{i:0;i:6;i:1;i:6;i:2;b:1;}s:6:\"themes\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"users\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"posts\";a:3:{i:0;i:21;i:1;i:21;i:2;b:1;}s:8:\"comments\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"updates\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:11:\"attachments\";b:0;s:4:\"meta\";b:0;s:7:\"plugins\";b:0;s:7:\"protect\";b:0;s:9:\"full-sync\";b:0;s:5:\"stats\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("10900", "jpsq_full_sync_checkout", "0:0", "no");
INSERT INTO `wp_options` VALUES("10843", "jetpack_restapi_stats_cache", "a:1:{s:32:\"42059e92695a1d61d58cd797d8603caa\";a:1:{i:1483577914;O:8:\"stdClass\":3:{s:4:\"date\";s:10:\"2017-01-05\";s:5:\"stats\";O:8:\"stdClass\":19:{s:14:\"visitors_today\";i:0;s:18:\"visitors_yesterday\";i:0;s:8:\"visitors\";i:0;s:11:\"views_today\";i:0;s:15:\"views_yesterday\";i:0;s:14:\"views_best_day\";s:0:\"\";s:20:\"views_best_day_total\";i:0;s:5:\"views\";i:0;s:8:\"comments\";i:0;s:5:\"posts\";i:0;s:14:\"followers_blog\";i:0;s:18:\"followers_comments\";i:0;s:18:\"comments_per_month\";i:0;s:31:\"comments_most_active_recent_day\";s:0:\"\";s:25:\"comments_most_active_time\";s:3:\"N/A\";s:13:\"comments_spam\";i:0;s:10:\"categories\";i:0;s:4:\"tags\";i:0;s:6:\"shares\";i:0;}s:6:\"visits\";O:8:\"stdClass\":3:{s:4:\"unit\";s:3:\"day\";s:6:\"fields\";a:3:{i:0;s:6:\"period\";i:1;s:5:\"views\";i:2;s:8:\"visitors\";}s:4:\"data\";a:0:{}}}}}", "no");
INSERT INTO `wp_options` VALUES("11053", "jpsq_sync-1483578046.401495-624461-1", "a:5:{i:0;s:14:\"deleted_plugin\";i:1;a:2:{i:0;s:19:\"jetpack/jetpack.php\";i:1;b:1;}i:2;i:1;i:3;d:1483578046.4014881;i:4;b:0;}", "no");
INSERT INTO `wp_options` VALUES("11052", "jetpack_sync_settings_disable", "0", "yes");
INSERT INTO `wp_options` VALUES("18016", "_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:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-4.7.1.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/es_ES/wordpress-4.7.1.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.1\";s:7:\"version\";s:5:\"4.7.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.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1484331473;s:15:\"version_checked\";s:5:\"4.7.1\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("18017", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1484331475;s:7:\"checked\";a:17:{s:44:\"above-the-fold-optimization/abovethefold.php\";s:6:\"2.7.10\";s:29:\"bj-lazy-load/bj-lazy-load.php\";s:5:\"1.0.7\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"4.6\";s:25:\"duplicator/duplicator.php\";s:6:\"1.1.26\";s:41:\"envato-wordpress-toolkit-master/index.php\";s:5:\"1.7.3\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";s:5:\"1.3.1\";s:33:\"smart-slider-3/smart-slider-3.php\";s:5:\"3.1.2\";s:34:\"ultimate_vc/Ultimate_VC_Addons.php\";s:6:\"3.16.7\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.12.30\";s:17:\"wassup/wassup.php\";s:5:\"1.9.3\";s:27:\"woocommerce/woocommerce.php\";s:6:\"2.6.12\";s:27:\"wp-optimize/wp-optimize.php\";s:5:\"2.1.0\";s:27:\"js_composer/js_composer.php\";s:5:\"5.0.1\";s:23:\"wp-smushit/wp-smush.php\";s:5:\"2.5.3\";s:27:\"wp-super-cache/wp-cache.php\";s:5:\"1.4.8\";s:37:\"yith-woocommerce-ajax-search/init.php\";s:5:\"1.4.1\";s:24:\"wordpress-seo/wp-seo.php\";s:5:\"4.0.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:14:{s:44:\"above-the-fold-optimization/abovethefold.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57719\";s:4:\"slug\";s:27:\"above-the-fold-optimization\";s:6:\"plugin\";s:44:\"above-the-fold-optimization/abovethefold.php\";s:11:\"new_version\";s:6:\"2.7.10\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/above-the-fold-optimization/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/above-the-fold-optimization.zip\";}s:29:\"bj-lazy-load/bj-lazy-load.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"27554\";s:4:\"slug\";s:12:\"bj-lazy-load\";s:6:\"plugin\";s:29:\"bj-lazy-load/bj-lazy-load.php\";s:11:\"new_version\";s:5:\"1.0.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/bj-lazy-load/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/bj-lazy-load.1.0.7.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.6\";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.6.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:\"1.1.26\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.1.26.zip\";}s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"46630\";s:4:\"slug\";s:42:\"remove-query-strings-from-static-resources\";s:6:\"plugin\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/remove-query-strings-from-static-resources/\";s:7:\"package\";s:91:\"https://downloads.wordpress.org/plugin/remove-query-strings-from-static-resources.1.3.1.zip\";}s:33:\"smart-slider-3/smart-slider-3.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"66277\";s:4:\"slug\";s:14:\"smart-slider-3\";s:6:\"plugin\";s:33:\"smart-slider-3/smart-slider-3.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/smart-slider-3/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/smart-slider-3.3.1.2.zip\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31679\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.12.30\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.12.30.zip\";}s:17:\"wassup/wassup.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1124\";s:4:\"slug\";s:6:\"wassup\";s:6:\"plugin\";s:17:\"wassup/wassup.php\";s:11:\"new_version\";s:5:\"1.9.3\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/wassup/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wassup.1.9.3.zip\";s:14:\"upgrade_notice\";s:123:\"Important bugfix upgrade. DO NOT UPGRADE when your site busy! Read installation instructions for safe upgrade instructions.\";}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:6:\"2.6.12\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/woocommerce.2.6.12.zip\";}s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"6250\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:5:\"2.1.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.2.1.0.zip\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5534\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:5:\"2.5.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.2.5.3.zip\";}s:27:\"wp-super-cache/wp-cache.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1221\";s:4:\"slug\";s:14:\"wp-super-cache\";s:6:\"plugin\";s:27:\"wp-super-cache/wp-cache.php\";s:11:\"new_version\";s:5:\"1.4.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-super-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-super-cache.1.4.8.zip\";s:14:\"upgrade_notice\";s:38:\"Removed malware URL in a code comment.\";}s:37:\"yith-woocommerce-ajax-search/init.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"42851\";s:4:\"slug\";s:28:\"yith-woocommerce-ajax-search\";s:6:\"plugin\";s:37:\"yith-woocommerce-ajax-search/init.php\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/yith-woocommerce-ajax-search/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/yith-woocommerce-ajax-search.1.4.1.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:\"4.0.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.4.0.2.zip\";}}}", "no");
INSERT INTO `wp_options` VALUES("17620", "updraft_jobdata_5879063d0fe0", "a:6:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1484329519.81534;s:29:\"dlmessage_1484326461_themes_0\";s:90:\"The file was found locally and matched the recorded size from the backup history (7877 KB)\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:26:\"dlfile_1484326461_themes_0\";s:139:\"downloaded:8066025:/home/u585192189/public_html/wp-content/updraft/backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-themes.zip\";s:12:\"option_cache\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17576", "updraft_jobdata_5879063d0d77", "a:6:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1484328213.238348;s:25:\"dlmessage_1484326461_db_0\";s:49:\"Remote fetch was successful (file size: 211.9 KB)\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:22:\"dlfile_1484326461_db_0\";s:133:\"downloaded:216945:/home/u585192189/public_html/wp-content/updraft/backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-db.gz\";s:12:\"option_cache\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17960", "_site_transient_timeout_ewt_readme", "1484334128", "no");
INSERT INTO `wp_options` VALUES("17961", "_site_transient_ewt_readme", "== Deprecation ==\n\nThis plugin is deprecated in favour of a newer version. Please update to using\nhttps://github.com/envato/wp-envato-market as there will no longer be any\nbugfixes or support for this version.\n\n=== Envato WordPress Toolkit ===\nContributors: envato, valendesigns\nTags: install, update, api, envato, theme, upgrade\nRequires at least: 3.7\nTested up to: 4.5\nStable tag: 1.7.3\n\nWordPress toolkit for Envato Marketplace hosted items. Currently supports the following theme functionality: install, upgrade, & backups during upgrade.\n\n== Description ==\n\nThis toolkit plugin establishes an Envato Marketplace API connection to take advantage of the new `wp-list-themes` & `wp-download` methods created specifically for this plugin. These API methods grants access to information about your purchased themes and create temporary download URL\'s for installing and upgrading those themes. Basically, users that have purchased themes from ThemeForest.net can now install and upgrade any theme that takes advantage of these new methods.\n\nFor end users, all that\'s required to get started is an Envato Marketplace username & API key, and to have purchased one of the many WordPress themes found on ThemeForest.net.\n\nFor theme authors, navigate to your theme\'s admin page on ThemeForest.net and click edit; you\'ll need to upload the `Optional WordPress Theme` ZIP which contains your installable WordPress Theme. Once you\'ve got an installable ZIP uploaded and approved, users can install & update directly from within WordPress. Also, to take advantage of the update functionality you\'ll need to increment your themes version in the style.css every time a new version is available for download and repeat the process above of uploading an installable ZIP.\n\nBelow is a description of the new api-key protected Envato Marketplace API methods or sets. For full documentation on how to use the API go to http://marketplace.envato.com/api/documentation and have a look at the examples.\n\n`wp-list-themes`\n* Details of all WordPress themes you have purchased. Contains the item ID, item name, theme name, author name & version.\n\n`wp-download`\n* Temporary download URL to a WordPress item you have purchased. Requires the item ID, e.g. wp-download:1234.\n\n== Installation ==\n\n1. Upload the `envato-wordpress-toolkit` folder to the `/wp-content/plugins/` directory.\n2. Activate the plugin through the `Plugins` menu in WordPress.\n3. To establish an Envato Marketplace API connection navigate to the `Envato Toolkit` page and insert your Marketplace username and secret API key in the designated input fields. To obtain your API Key, visit your \"My Settings\" page on any of the Envato Marketplaces.\n4. Once the API connection has been established you will see a list of themes that can be auto installed. If you don\'t see any themes and are certain you\'ve done everything correct, there is a good chance the theme author has not updated their theme to be available for auto install and update. If that\'s the case, please contact the theme author and ask them to update their theme\'s information.\n\n== Changelog ==\n\n= 1.7.3 =\n* Added a custom user agent to all API requests so a connection is once again possible.\n* Added the option to turn sslverify on and off.\n* Envato API requests are now using HTTPS endpoints.\n* Replace `wp_remote_request` with `wp_safe_remote_request`, which will validated the API url.\n* Lowered the API request timeout to something more reasonable.\n\n= 1.7.2 =\n* Added checks to stop PHP from throwing redeclare class errors.\n* Fix an issue where the `ZipArchive` class was called before the `class_exists` check.\n* Fixed the Github Updater class so it now shows updates on `update-core.php`.\n* Changed the Github Updater class to pull in the contents of `readme.txt` to build the config array.\n* Changed the `raw_url` in `_admin_update_check` to use `raw.githubusercontent`, because `raw.github` causes a second `http` request.\n\n= 1.7.1 =\n* Fixed: Stop Mojo Marketplace from tracking your movements and causing long or hanging page loads.\n* Fixed: Fix an issue that caused the timeout to be set high globally.\n* Added: Ability to deactivate the Github Updater.\n* Fixed: Stopped `wp_list_themes` from making an API request before credentials have been entered into WordPress.\n* Fixed: Changed the menu position and load priority to stop Mojo Marketplace from hiding the Envato Toolkit menu item.\n* Fixed: Switched from `.png` to a font icon, which makes it Admin Color Scheme compatible.\n* Added: New i18n file and changed the domain from `envato` to `envato-wordpress-toolkit` to avoid potential conflicts.\n* Fixed: Changed the UI so it now has tabs for better content separation.\n* Fixed: Now uses the Customizer to preview installed themes.\n\n= 1.7.0 =\n* Fixed: Converted transient names into hashes to comply with character limits.\n* Fixed: Invalid argument supplied foreach warning.\n* Fixed: Call to undefined function wp_create_nonce.\n* Fixed: Changed the WP_GitHub_Updater class so it will properly name the directory.\n* Fixed: Decompression error caused by gzinflate().\n\n= 1.6.3 =\n* Fixed: Conflict with the WP-Compatibility Installer plugin.\n\n= 1.6.2 =\n* Fixed: Conflict with other plugins using the GitHub updater.\n\n= 1.6.1 =\n* set_time_limit errors are now hidden in favor of a more user-friendly message.\n* Make error notices dismissible.\n\n= 1.6 =\n* Fixed: Bug that prevented updating if backups were enabled.\n* Added auto-updating.\n* Various bug fixes.\n\n= 1.5 =\n* Changed use of cURL to the WordPress HTTP API\n* Removed ini_set usage\n\n= 1.4 =\n* Added support for theme backups during upgrade.\n* Allow backups to be turned off from within the UI.\n\n= 1.3 =\n* Added caching to the Envato Marketplace API requests.\n* Added support for Multisite.\n\n= 1.2 =\n* Updated register_setting group ID bug.\n\n= 1.1 =\n* Gutted the unnecessary files and classes.\n* Renamed the plugin and moved functions into a single class.\n* Updated strings for future Internationalization.\n\n= 1.0 =\n* Initial release with auto theme install and update.\n* Force an increase on \'max_execution_time\' to ensure large themes finish downloading.\n", "no");
INSERT INTO `wp_options` VALUES("17845", "updraft_jobdata_5879063d0512", "a:6:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1484330258.3699679;s:30:\"dlmessage_1484326461_uploads_0\";s:93:\"The file was found locally and matched the recorded size from the backup history (31831.1 KB)\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:27:\"dlfile_1484326461_uploads_0\";s:141:\"downloaded:32595083:/home/u585192189/public_html/wp-content/updraft/backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-uploads.zip\";s:12:\"option_cache\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("18048", "_site_transient_ewt_github_data", "O:8:\"stdClass\":71:{s:2:\"id\";i:2558893;s:4:\"name\";s:24:\"envato-wordpress-toolkit\";s:9:\"full_name\";s:31:\"envato/envato-wordpress-toolkit\";s:5:\"owner\";O:8:\"stdClass\":17:{s:5:\"login\";s:6:\"envato\";s:2:\"id\";i:14786;s:10:\"avatar_url\";s:49:\"https://avatars.githubusercontent.com/u/14786?v=3\";s:11:\"gravatar_id\";s:0:\"\";s:3:\"url\";s:35:\"https://api.github.com/users/envato\";s:8:\"html_url\";s:25:\"https://github.com/envato\";s:13:\"followers_url\";s:45:\"https://api.github.com/users/envato/followers\";s:13:\"following_url\";s:58:\"https://api.github.com/users/envato/following{/other_user}\";s:9:\"gists_url\";s:51:\"https://api.github.com/users/envato/gists{/gist_id}\";s:11:\"starred_url\";s:58:\"https://api.github.com/users/envato/starred{/owner}{/repo}\";s:17:\"subscriptions_url\";s:49:\"https://api.github.com/users/envato/subscriptions\";s:17:\"organizations_url\";s:40:\"https://api.github.com/users/envato/orgs\";s:9:\"repos_url\";s:41:\"https://api.github.com/users/envato/repos\";s:10:\"events_url\";s:52:\"https://api.github.com/users/envato/events{/privacy}\";s:19:\"received_events_url\";s:51:\"https://api.github.com/users/envato/received_events\";s:4:\"type\";s:12:\"Organization\";s:10:\"site_admin\";b:0;}s:7:\"private\";b:0;s:8:\"html_url\";s:50:\"https://github.com/envato/envato-wordpress-toolkit\";s:11:\"description\";s:78:\"Wordpress toolkit for authors of items available from the Envato Market sites.\";s:4:\"fork\";b:0;s:3:\"url\";s:60:\"https://api.github.com/repos/envato/envato-wordpress-toolkit\";s:9:\"forks_url\";s:66:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/forks\";s:8:\"keys_url\";s:74:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/keys{/key_id}\";s:17:\"collaborators_url\";s:89:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/collaborators{/collaborator}\";s:9:\"teams_url\";s:66:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/teams\";s:9:\"hooks_url\";s:66:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/hooks\";s:16:\"issue_events_url\";s:83:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues/events{/number}\";s:10:\"events_url\";s:67:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/events\";s:13:\"assignees_url\";s:77:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/assignees{/user}\";s:12:\"branches_url\";s:78:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/branches{/branch}\";s:8:\"tags_url\";s:65:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/tags\";s:9:\"blobs_url\";s:76:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/blobs{/sha}\";s:12:\"git_tags_url\";s:75:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/tags{/sha}\";s:12:\"git_refs_url\";s:75:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/refs{/sha}\";s:9:\"trees_url\";s:76:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/trees{/sha}\";s:12:\"statuses_url\";s:75:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/statuses/{sha}\";s:13:\"languages_url\";s:70:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/languages\";s:14:\"stargazers_url\";s:71:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/stargazers\";s:16:\"contributors_url\";s:73:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/contributors\";s:15:\"subscribers_url\";s:72:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/subscribers\";s:16:\"subscription_url\";s:73:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/subscription\";s:11:\"commits_url\";s:74:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/commits{/sha}\";s:15:\"git_commits_url\";s:78:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/commits{/sha}\";s:12:\"comments_url\";s:78:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/comments{/number}\";s:17:\"issue_comment_url\";s:85:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues/comments{/number}\";s:12:\"contents_url\";s:77:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/contents/{+path}\";s:11:\"compare_url\";s:84:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/compare/{base}...{head}\";s:10:\"merges_url\";s:67:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/merges\";s:11:\"archive_url\";s:83:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/{archive_format}{/ref}\";s:13:\"downloads_url\";s:70:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/downloads\";s:10:\"issues_url\";s:76:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues{/number}\";s:9:\"pulls_url\";s:75:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/pulls{/number}\";s:14:\"milestones_url\";s:80:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/milestones{/number}\";s:17:\"notifications_url\";s:100:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/notifications{?since,all,participating}\";s:10:\"labels_url\";s:74:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/labels{/name}\";s:12:\"releases_url\";s:74:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/releases{/id}\";s:15:\"deployments_url\";s:72:\"https://api.github.com/repos/envato/envato-wordpress-toolkit/deployments\";s:10:\"created_at\";s:20:\"2011-10-11T22:58:26Z\";s:10:\"updated_at\";s:20:\"2017-01-02T09:05:27Z\";s:9:\"pushed_at\";s:20:\"2016-05-25T19:59:38Z\";s:7:\"git_url\";s:52:\"git://github.com/envato/envato-wordpress-toolkit.git\";s:7:\"ssh_url\";s:50:\"git@github.com:envato/envato-wordpress-toolkit.git\";s:9:\"clone_url\";s:54:\"https://github.com/envato/envato-wordpress-toolkit.git\";s:7:\"svn_url\";s:50:\"https://github.com/envato/envato-wordpress-toolkit\";s:8:\"homepage\";s:0:\"\";s:4:\"size\";i:237;s:16:\"stargazers_count\";i:357;s:14:\"watchers_count\";i:357;s:8:\"language\";s:3:\"PHP\";s:10:\"has_issues\";b:1;s:13:\"has_downloads\";b:1;s:8:\"has_wiki\";b:1;s:9:\"has_pages\";b:0;s:11:\"forks_count\";i:163;s:10:\"mirror_url\";N;s:17:\"open_issues_count\";i:82;s:5:\"forks\";i:163;s:11:\"open_issues\";i:82;s:8:\"watchers\";i:357;s:14:\"default_branch\";s:6:\"master\";s:12:\"organization\";O:8:\"stdClass\":17:{s:5:\"login\";s:6:\"envato\";s:2:\"id\";i:14786;s:10:\"avatar_url\";s:49:\"https://avatars.githubusercontent.com/u/14786?v=3\";s:11:\"gravatar_id\";s:0:\"\";s:3:\"url\";s:35:\"https://api.github.com/users/envato\";s:8:\"html_url\";s:25:\"https://github.com/envato\";s:13:\"followers_url\";s:45:\"https://api.github.com/users/envato/followers\";s:13:\"following_url\";s:58:\"https://api.github.com/users/envato/following{/other_user}\";s:9:\"gists_url\";s:51:\"https://api.github.com/users/envato/gists{/gist_id}\";s:11:\"starred_url\";s:58:\"https://api.github.com/users/envato/starred{/owner}{/repo}\";s:17:\"subscriptions_url\";s:49:\"https://api.github.com/users/envato/subscriptions\";s:17:\"organizations_url\";s:40:\"https://api.github.com/users/envato/orgs\";s:9:\"repos_url\";s:41:\"https://api.github.com/users/envato/repos\";s:10:\"events_url\";s:52:\"https://api.github.com/users/envato/events{/privacy}\";s:19:\"received_events_url\";s:51:\"https://api.github.com/users/envato/received_events\";s:4:\"type\";s:12:\"Organization\";s:10:\"site_admin\";b:0;}s:13:\"network_count\";i:163;s:17:\"subscribers_count\";i:99;}", "no");
INSERT INTO `wp_options` VALUES("17622", "updraft_jobdata_5879063d05e2", "a:6:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1484328587.491889;s:29:\"dlmessage_1484326461_others_0\";s:92:\"The file was found locally and matched the recorded size from the backup history (1075.2 KB)\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:26:\"dlfile_1484326461_others_0\";s:139:\"downloaded:1100970:/home/u585192189/public_html/wp-content/updraft/backup_2017-01-13-1054_Sand_Seguridad_Electrnica_744aa126681b-others.zip\";s:12:\"option_cache\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("17382", "_transient_timeout_yit_panel_sidebar_remote_widgets_update", "1484411414", "no");
INSERT INTO `wp_options` VALUES("17174", "_transient_timeout_wc_related_556", "1484403802", "no");
INSERT INTO `wp_options` VALUES("17175", "_transient_wc_related_556", "a:16:{i:0;s:3:\"265\";i:1;s:3:\"498\";i:2;s:3:\"503\";i:3;s:3:\"534\";i:4;s:3:\"535\";i:5;s:3:\"536\";i:6;s:3:\"537\";i:7;s:3:\"538\";i:8;s:3:\"539\";i:9;s:3:\"540\";i:10;s:3:\"541\";i:11;s:3:\"542\";i:12;s:3:\"544\";i:13;s:3:\"545\";i:14;s:3:\"546\";i:15;s:3:\"547\";}", "no");
INSERT INTO `wp_options` VALUES("18020", "duplicator_version_plugin", "1.1.26", "yes");
INSERT INTO `wp_options` VALUES("18026", "duplicator_ui_view_state", "a:3:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";s:22:\"dup-pack-archive-panel\";s:1:\"1\";s:24:\"dup-pack-installer-panel\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("18032", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2017-01-13 18:34:45\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.7.1\";s:9:\"VersionDB\";s:7:\"10.0.28\";s:10:\"VersionPHP\";s:5:\"7.0.6\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:34:\"20170113_sandiseguridadelectronica\";s:4:\"Hash\";s:29:\"58791dc53bf2a7371170113183445\";s:8:\"NameHash\";s:64:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:45:\"/home/u585192189/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:31:\"http://csandi.xyz/wp-snapshots/\";s:8:\"ScanFile\";s:74:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";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:28:\"/home/u585192189/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\":23:{s:7:\"Created\";s:19:\"2017-01-13 18:34:45\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.7.1\";s:9:\"VersionDB\";s:7:\"10.0.28\";s:10:\"VersionPHP\";s:5:\"7.0.6\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:34:\"20170113_sandiseguridadelectronica\";s:4:\"Hash\";s:29:\"58791dc53bf2a7371170113183445\";s:8:\"NameHash\";s:64:\"20170113_sandiseguridadelectronica_58791dc53bf2a7371170113183445\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:45:\"/home/u585192189/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:31:\"http://csandi.xyz/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;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:52;}s:8:\"Database\";O:12:\"DUP_Database\":12:{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:\"Compatible\";s:0:\"\";s:10:\"\0*\0Package\";r:52;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:74;s:8:\"Database\";r:87;}", "yes");
INSERT INTO `wp_options` VALUES("18067", "updraft_jobdata_b8ee02e4344f", "a:2:{s:8:\"job_type\";s:6:\"delete\";s:11:\"job_time_ms\";d:1484332017.3732769;}", "no");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("4", "5", "_form", "<label> Su nombre (requerido)\n    [text* your-name] </label>\n\n<label> Su Email (requerido)\n    [email* your-email] </label>\n\n<label> Asunto (ej: CCTV, Alarma, Seguridad)\n    [text your-subject] </label>\n\n<label> Su mensaje:\n    [textarea your-message] </label>\n\n[submit \"Enviar\"]");
INSERT INTO `wp_postmeta` VALUES("5", "5", "_mail", "a:8:{s:7:\"subject\";s:33:\"Sandí Seguridad \"[your-subject]\"\";s:6:\"sender\";s:35:\"[SANDI SEGURIDAD] <info@csandi.xyz>\";s:4:\"body\";s:159:\"De: [your-name] <[your-email]>\nAsunto: [your-subject]\n\nMensaje:\n[your-message]\n\n--\nEste mensaje se envió desde la web de Sandí Seguridad. (http://csandi.xyz)\";s:9:\"recipient\";s:19:\"jostrike1@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("6", "5", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:46:\"Sandí Seguridad Electrónica \"[your-subject]\"\";s:6:\"sender\";s:52:\"Sandí Seguridad Electrónica <wordpress@csandi.xyz>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Sandí Seguridad Electrónica (http://csandi.xyz)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: jostrike1@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("7", "5", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:78:\"¡Gracias! Mensaje enviado (Nos comunicaremos contigo en cuanto antes podamos)\";s:12:\"mail_sent_ng\";s:63:\"El mensaje no se pudo enviar (¿Revisaste todo antes de enviar?\";s:16:\"validation_error\";s:52:\"Uno de los espacios tiene un error, por favor revisa\";s:4:\"spam\";s:50:\"Hubo error de envío, filtro de spam detectó algo\";s:12:\"accept_terms\";s:34:\"Acepta los términos y condiciones\";s:16:\"invalid_required\";s:56:\"Lo siento, falta algo, por favor revisa todos los campos\";s:16:\"invalid_too_long\";s:36:\"Mucho texto, por favor escribe menos\";s:17:\"invalid_too_short\";s:38:\"Muy poco texto, por favor escribe más\";s:12:\"invalid_date\";s:34:\"El formato de fecha es incorrecto.\";s:14:\"date_too_early\";s:50:\"La fecha es anterior a la más temprana permitida.\";s:13:\"date_too_late\";s:50:\"La fecha es posterior a la más tardía permitida.\";s:13:\"upload_failed\";s:46:\"Hubo un error desconocido subiendo el archivo.\";s:24:\"upload_file_type_invalid\";s:52:\"No tienes permisos para subir archivos de este tipo.\";s:21:\"upload_file_too_large\";s:31:\"El archivo es demasiado grande.\";s:23:\"upload_failed_php_error\";s:43:\"Se ha producido un error subiendo la imagen\";s:14:\"invalid_number\";s:36:\"El formato de número no es válido.\";s:16:\"number_too_small\";s:45:\"El número es menor que el mínimo permitido.\";s:16:\"number_too_large\";s:45:\"El número es mayor que el máximo permitido.\";s:23:\"quiz_answer_not_correct\";s:44:\"La respuesta al cuestionario no es correcta.\";s:17:\"captcha_not_match\";s:37:\"El código introducido es incorrecto.\";s:13:\"invalid_email\";s:71:\"La dirección de correo electrónico que has introducido no es válida.\";s:11:\"invalid_url\";s:21:\"La URL no es válida.\";s:11:\"invalid_tel\";s:38:\"El número de teléfono no es válido.\";}");
INSERT INTO `wp_postmeta` VALUES("8", "5", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("9", "5", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("733", "320", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("732", "328", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("731", "328", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("64", "38", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("65", "38", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("66", "38", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("67", "38", "footer_row_top_show", "no");
INSERT INTO `wp_postmeta` VALUES("68", "38", "footer_row_bottom_show", "no");
INSERT INTO `wp_postmeta` VALUES("69", "38", "footer_row_top_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("70", "38", "footer_row_bottom_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("71", "38", "get_sidebars_top_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 1\";i:1;s:21:\"Footer Row - widget 2\";i:2;s:21:\"Footer Row - widget 3\";i:3;s:21:\"Footer Row - widget 4\";i:4;s:21:\"Footer Row - widget 5\";i:5;s:21:\"Footer Row - widget 6\";}");
INSERT INTO `wp_postmeta` VALUES("72", "38", "get_sidebars_bottom_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 6\";i:1;s:21:\"Footer Row - widget 7\";i:2;s:21:\"Footer Row - widget 8\";i:3;s:21:\"Footer Row - widget 9\";i:4;s:22:\"Footer Row - widget 10\";i:5;s:22:\"Footer Row - widget 11\";}");
INSERT INTO `wp_postmeta` VALUES("73", "38", "mad_breadcrumb", "hide");
INSERT INTO `wp_postmeta` VALUES("74", "38", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("75", "38", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("76", "38", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("77", "38", "mm_post_icon", "im-icon-home-2");
INSERT INTO `wp_postmeta` VALUES("78", "38", "_yoast_wpseo_meta-robots-noindex", "2");
INSERT INTO `wp_postmeta` VALUES("79", "38", "_yoast_wpseo_canonical", "http://www.csandi.xyz");
INSERT INTO `wp_postmeta` VALUES("80", "38", "_yoast_wpseo_metadesc", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV | info@csandi.xyz | San Isidro | sandi seguridad");
INSERT INTO `wp_postmeta` VALUES("81", "38", "_yoast_wpseo_focuskw_text_input", "sandi seguridad");
INSERT INTO `wp_postmeta` VALUES("82", "38", "_yoast_wpseo_focuskw", "sandi seguridad");
INSERT INTO `wp_postmeta` VALUES("83", "38", "_yoast_wpseo_linkdex", "36");
INSERT INTO `wp_postmeta` VALUES("84", "66", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("85", "66", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("86", "66", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("87", "66", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("88", "66", "footer_row_top_show", "yes");
INSERT INTO `wp_postmeta` VALUES("89", "66", "footer_row_bottom_show", "no");
INSERT INTO `wp_postmeta` VALUES("90", "66", "footer_row_top_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("91", "66", "footer_row_bottom_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("92", "66", "get_sidebars_top_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 1\";i:1;s:21:\"Footer Row - widget 2\";i:2;s:21:\"Footer Row - widget 3\";i:3;s:21:\"Footer Row - widget 4\";i:4;s:21:\"Footer Row - widget 5\";i:5;s:21:\"Footer Row - widget 6\";}");
INSERT INTO `wp_postmeta` VALUES("93", "66", "get_sidebars_bottom_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 6\";i:1;s:21:\"Footer Row - widget 7\";i:2;s:21:\"Footer Row - widget 8\";i:3;s:21:\"Footer Row - widget 9\";i:4;s:22:\"Footer Row - widget 10\";i:5;s:22:\"Footer Row - widget 11\";}");
INSERT INTO `wp_postmeta` VALUES("94", "66", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("95", "66", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("96", "66", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("123", "97", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("124", "97", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("125", "97", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("126", "97", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("127", "97", "footer_row_top_show", "yes");
INSERT INTO `wp_postmeta` VALUES("128", "97", "footer_row_bottom_show", "no");
INSERT INTO `wp_postmeta` VALUES("129", "97", "footer_row_top_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("130", "97", "footer_row_bottom_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("131", "97", "get_sidebars_top_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 1\";i:1;s:21:\"Footer Row - widget 2\";i:2;s:21:\"Footer Row - widget 3\";i:3;s:21:\"Footer Row - widget 4\";i:4;s:21:\"Footer Row - widget 5\";i:5;s:21:\"Footer Row - widget 6\";}");
INSERT INTO `wp_postmeta` VALUES("132", "97", "get_sidebars_bottom_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 6\";i:1;s:21:\"Footer Row - widget 7\";i:2;s:21:\"Footer Row - widget 8\";i:3;s:21:\"Footer Row - widget 9\";i:4;s:22:\"Footer Row - widget 10\";i:5;s:22:\"Footer Row - widget 11\";}");
INSERT INTO `wp_postmeta` VALUES("133", "97", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("134", "98", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("135", "98", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("136", "98", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("137", "98", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("138", "98", "footer_row_top_show", "yes");
INSERT INTO `wp_postmeta` VALUES("139", "98", "footer_row_bottom_show", "no");
INSERT INTO `wp_postmeta` VALUES("140", "98", "footer_row_top_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("141", "98", "footer_row_bottom_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("142", "98", "get_sidebars_top_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 1\";i:1;s:21:\"Footer Row - widget 2\";i:2;s:21:\"Footer Row - widget 3\";i:3;s:21:\"Footer Row - widget 4\";i:4;s:21:\"Footer Row - widget 5\";i:5;s:21:\"Footer Row - widget 6\";}");
INSERT INTO `wp_postmeta` VALUES("143", "98", "get_sidebars_bottom_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 6\";i:1;s:21:\"Footer Row - widget 7\";i:2;s:21:\"Footer Row - widget 8\";i:3;s:21:\"Footer Row - widget 9\";i:4;s:22:\"Footer Row - widget 10\";i:5;s:22:\"Footer Row - widget 11\";}");
INSERT INTO `wp_postmeta` VALUES("144", "98", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("145", "99", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("146", "99", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("147", "99", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("148", "99", "_menu_item_object_id", "97");
INSERT INTO `wp_postmeta` VALUES("149", "99", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("150", "99", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("151", "99", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("152", "99", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("153", "99", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1069", "486", "_form", "<label> Su nombre (requerido)\n    [text* your-name] </label>\n\n<label> Su Email (requerido)\n    [email* your-email] </label>\n\n<label> Asunto (ej: CCTV, Alarma, Seguridad)\n    [text your-subject] </label>\n\n<label> Su mensaje:\n    [textarea your-message] </label>\n\n[submit \"Enviar\"]");
INSERT INTO `wp_postmeta` VALUES("1068", "486", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("163", "101", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("164", "101", "_menu_item_type", "taxonomy");
INSERT INTO `wp_postmeta` VALUES("165", "101", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("166", "101", "_menu_item_object_id", "12");
INSERT INTO `wp_postmeta` VALUES("167", "101", "_menu_item_object", "product_cat");
INSERT INTO `wp_postmeta` VALUES("168", "101", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("169", "101", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("170", "101", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("171", "101", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("172", "102", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("173", "102", "_menu_item_type", "taxonomy");
INSERT INTO `wp_postmeta` VALUES("174", "102", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("175", "102", "_menu_item_object_id", "13");
INSERT INTO `wp_postmeta` VALUES("176", "102", "_menu_item_object", "product_cat");
INSERT INTO `wp_postmeta` VALUES("177", "102", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("178", "102", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("179", "102", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("180", "102", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("181", "103", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("182", "103", "_menu_item_type", "taxonomy");
INSERT INTO `wp_postmeta` VALUES("183", "103", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("184", "103", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("185", "103", "_menu_item_object", "product_cat");
INSERT INTO `wp_postmeta` VALUES("186", "103", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("187", "103", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("188", "103", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("189", "103", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("829", "66", "_edit_lock", "1483232576:1");
INSERT INTO `wp_postmeta` VALUES("826", "371", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("825", "371", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("824", "371", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("823", "371", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1072", "486", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:78:\"¡Gracias! Mensaje enviado (Nos comunicaremos contigo en cuanto antes podamos)\";s:12:\"mail_sent_ng\";s:63:\"El mensaje no se pudo enviar (¿Revisaste todo antes de enviar?\";s:16:\"validation_error\";s:52:\"Uno de los espacios tiene un error, por favor revisa\";s:4:\"spam\";s:50:\"Hubo error de envío, filtro de spam detectó algo\";s:12:\"accept_terms\";s:34:\"Acepta los términos y condiciones\";s:16:\"invalid_required\";s:56:\"Lo siento, falta algo, por favor revisa todos los campos\";s:16:\"invalid_too_long\";s:36:\"Mucho texto, por favor escribe menos\";s:17:\"invalid_too_short\";s:38:\"Muy poco texto, por favor escribe más\";s:12:\"invalid_date\";s:34:\"El formato de fecha es incorrecto.\";s:14:\"date_too_early\";s:50:\"La fecha es anterior a la más temprana permitida.\";s:13:\"date_too_late\";s:50:\"La fecha es posterior a la más tardía permitida.\";s:13:\"upload_failed\";s:46:\"Hubo un error desconocido subiendo el archivo.\";s:24:\"upload_file_type_invalid\";s:52:\"No tienes permisos para subir archivos de este tipo.\";s:21:\"upload_file_too_large\";s:31:\"El archivo es demasiado grande.\";s:23:\"upload_failed_php_error\";s:43:\"Se ha producido un error subiendo la imagen\";s:14:\"invalid_number\";s:36:\"El formato de número no es válido.\";s:16:\"number_too_small\";s:45:\"El número es menor que el mínimo permitido.\";s:16:\"number_too_large\";s:45:\"El número es mayor que el máximo permitido.\";s:23:\"quiz_answer_not_correct\";s:44:\"La respuesta al cuestionario no es correcta.\";s:17:\"captcha_not_match\";s:37:\"El código introducido es incorrecto.\";s:13:\"invalid_email\";s:71:\"La dirección de correo electrónico que has introducido no es válida.\";s:11:\"invalid_url\";s:21:\"La URL no es válida.\";s:11:\"invalid_tel\";s:38:\"El número de teléfono no es válido.\";}");
INSERT INTO `wp_postmeta` VALUES("1071", "486", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:46:\"Sandí Seguridad Electrónica \"[your-subject]\"\";s:6:\"sender\";s:52:\"Sandí Seguridad Electrónica <wordpress@csandi.xyz>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Sandí Seguridad Electrónica (http://csandi.xyz)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: jostrike1@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("1065", "385", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:16:\"hikvision-1.jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("1070", "486", "_mail", "a:8:{s:7:\"subject\";s:33:\"Sandí Seguridad \"[your-subject]\"\";s:6:\"sender\";s:35:\"[SANDI SEGURIDAD] <info@csandi.xyz>\";s:4:\"body\";s:159:\"De: [your-name] <[your-email]>\nAsunto: [your-subject]\n\nMensaje:\n[your-message]\n\n--\nEste mensaje se envió desde la web de Sandí Seguridad. (http://csandi.xyz)\";s:9:\"recipient\";s:19:\"jostrike1@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("1063", "5", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("207", "191", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("208", "191", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("209", "191", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("210", "264", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("211", "264", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("212", "264", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("213", "264", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("214", "264", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("215", "264", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("216", "264", "mm_post_icon", "im-icon-fire-2");
INSERT INTO `wp_postmeta` VALUES("217", "264", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("218", "264", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("219", "264", "_virtual", "yes");
INSERT INTO `wp_postmeta` VALUES("220", "264", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("221", "264", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("222", "264", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("223", "264", "_length", "");
INSERT INTO `wp_postmeta` VALUES("224", "264", "_width", "");
INSERT INTO `wp_postmeta` VALUES("225", "264", "_height", "");
INSERT INTO `wp_postmeta` VALUES("226", "264", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("227", "264", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("228", "264", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("229", "264", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("230", "264", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("231", "264", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("232", "264", "_price", "");
INSERT INTO `wp_postmeta` VALUES("233", "264", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("234", "264", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("235", "264", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("236", "264", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("237", "264", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("238", "264", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("239", "264", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("240", "264", "_product_image_gallery", "477,479,478");
INSERT INTO `wp_postmeta` VALUES("241", "264", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("242", "264", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("243", "264", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("244", "264", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("245", "264", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("246", "264", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("247", "264", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("248", "264", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("249", "264", "mad_custom_tabs", "a:1:{s:5:\"grncr\";a:2:{s:21:\"mad_title_product_tab\";s:5:\"Video\";s:23:\"mad_content_product_tab\";s:254:\"<iframe width=\"854\" height=\"480\" src=\"https://www.youtube.com/embed/YKmIIY-wFUk\" frameborder=\"0\" allowfullscreen></iframe> &nbsp; \r\n<iframe width=\"854\" height=\"480\" src=\"https://www.youtube.com/embed/5X9eHqQWRJI\" frameborder=\"0\" allowfullscreen></iframe>\";}}");
INSERT INTO `wp_postmeta` VALUES("250", "264", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("251", "264", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("252", "264", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("253", "264", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("254", "264", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("255", "264", "_yoast_wpseo_focuskw_text_input", "firelite");
INSERT INTO `wp_postmeta` VALUES("256", "264", "_yoast_wpseo_focuskw", "firelite");
INSERT INTO `wp_postmeta` VALUES("257", "264", "_yoast_wpseo_linkdex", "77");
INSERT INTO `wp_postmeta` VALUES("258", "264", "_oembed_58ff08e5c3ac670bd297584bf006b469", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("259", "264", "_thumbnail_id", "476");
INSERT INTO `wp_postmeta` VALUES("260", "264", "_yoast_wpseo_metadesc", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("261", "265", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("262", "265", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("263", "265", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("264", "265", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("265", "265", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("266", "265", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("267", "265", "mm_post_icon", "im-icon-shield");
INSERT INTO `wp_postmeta` VALUES("268", "265", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("269", "265", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("270", "265", "_virtual", "yes");
INSERT INTO `wp_postmeta` VALUES("271", "265", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("272", "265", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("273", "265", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("274", "265", "_length", "");
INSERT INTO `wp_postmeta` VALUES("275", "265", "_width", "");
INSERT INTO `wp_postmeta` VALUES("276", "265", "_height", "");
INSERT INTO `wp_postmeta` VALUES("277", "265", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("278", "265", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("279", "265", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("280", "265", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("281", "265", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("282", "265", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("283", "265", "_price", "");
INSERT INTO `wp_postmeta` VALUES("284", "265", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("285", "265", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("286", "265", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("287", "265", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("288", "265", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("289", "265", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("290", "265", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("291", "265", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("292", "265", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("293", "265", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("294", "265", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("295", "265", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("296", "265", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("297", "265", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("298", "265", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("299", "265", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("300", "265", "mad_custom_tabs", "a:1:{s:5:\"otsyi\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:120:\"Para descargar el manual por favor <strong><a href=\"http://www.paradox.com/Downloader?ID=3158\">pulse aquí </a></strong>\";}}");
INSERT INTO `wp_postmeta` VALUES("301", "265", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("302", "265", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("303", "265", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("304", "265", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("305", "265", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("306", "265", "_thumbnail_id", "459");
INSERT INTO `wp_postmeta` VALUES("307", "265", "_yoast_wpseo_focuskw_text_input", "Spectra");
INSERT INTO `wp_postmeta` VALUES("308", "265", "_yoast_wpseo_focuskw", "Spectra");
INSERT INTO `wp_postmeta` VALUES("309", "265", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("310", "265", "_yoast_wpseo_metadesc", "Panel de alarma Paradox Spectra SP4000 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("311", "266", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("312", "266", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("313", "266", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("314", "266", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("315", "266", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("316", "266", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("317", "266", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("318", "266", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("319", "266", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("320", "266", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("321", "266", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("322", "266", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("323", "266", "_length", "");
INSERT INTO `wp_postmeta` VALUES("324", "266", "_width", "");
INSERT INTO `wp_postmeta` VALUES("325", "266", "_height", "");
INSERT INTO `wp_postmeta` VALUES("326", "266", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("327", "266", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("328", "266", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("329", "266", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("330", "266", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("331", "266", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("332", "266", "_price", "");
INSERT INTO `wp_postmeta` VALUES("333", "266", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("334", "266", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("335", "266", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("336", "266", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("337", "266", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("338", "266", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("339", "266", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("340", "266", "_product_image_gallery", "465,466,464");
INSERT INTO `wp_postmeta` VALUES("341", "266", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("342", "266", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("343", "266", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("344", "266", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("345", "266", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("346", "266", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("347", "266", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("348", "266", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("349", "266", "mad_custom_tabs", "a:1:{s:5:\"rsuwi\";a:2:{s:21:\"mad_title_product_tab\";s:14:\"Ficha técnica\";s:23:\"mad_content_product_tab\";s:127:\"Para ver la ficha técnica en PDF: <a href=\"http://www.dluxsecurity.com/uploads/dlux-962944.pdf\" target=\"_blank\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("350", "266", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("351", "266", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("352", "266", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("353", "266", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("354", "266", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("355", "266", "_yoast_wpseo_metadesc", "Cámara de seguridad dLux VIR 727 |CCTV| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("356", "266", "mm_post_icon", "im-icon-camera-6");
INSERT INTO `wp_postmeta` VALUES("357", "266", "_thumbnail_id", "467");
INSERT INTO `wp_postmeta` VALUES("358", "266", "_yoast_wpseo_focuskw_text_input", "dLux");
INSERT INTO `wp_postmeta` VALUES("359", "266", "_yoast_wpseo_focuskw", "dLux");
INSERT INTO `wp_postmeta` VALUES("360", "266", "_yoast_wpseo_linkdex", "50");
INSERT INTO `wp_postmeta` VALUES("361", "299", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("362", "299", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("363", "299", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("364", "299", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("365", "299", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("366", "299", "_thumbnail_id", "401");
INSERT INTO `wp_postmeta` VALUES("367", "299", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("368", "299", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("369", "299", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("370", "299", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("371", "299", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("372", "299", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("373", "299", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("374", "299", "_length", "");
INSERT INTO `wp_postmeta` VALUES("375", "299", "_width", "");
INSERT INTO `wp_postmeta` VALUES("376", "299", "_height", "");
INSERT INTO `wp_postmeta` VALUES("377", "299", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("378", "299", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("379", "299", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("380", "299", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("381", "299", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("382", "299", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("383", "299", "_price", "");
INSERT INTO `wp_postmeta` VALUES("384", "299", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("385", "299", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("386", "299", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("387", "299", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("388", "299", "_product_image_gallery", "402");
INSERT INTO `wp_postmeta` VALUES("389", "299", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("390", "299", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("391", "299", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("392", "299", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("393", "299", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("394", "299", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("395", "299", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("396", "299", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("397", "299", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("398", "299", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("399", "299", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("400", "299", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("401", "299", "_wp_old_slug", "grabador");
INSERT INTO `wp_postmeta` VALUES("402", "299", "_yoast_wpseo_focuskw_text_input", "grabador");
INSERT INTO `wp_postmeta` VALUES("403", "299", "_yoast_wpseo_focuskw", "grabador");
INSERT INTO `wp_postmeta` VALUES("404", "299", "_yoast_wpseo_metadesc", "Grabador Dahua 5104 | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("405", "299", "_yoast_wpseo_linkdex", "73");
INSERT INTO `wp_postmeta` VALUES("406", "305", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("407", "305", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("408", "305", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("409", "305", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("410", "305", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("411", "305", "_thumbnail_id", "426");
INSERT INTO `wp_postmeta` VALUES("412", "305", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("413", "305", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("414", "305", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("415", "305", "_virtual", "yes");
INSERT INTO `wp_postmeta` VALUES("416", "305", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("417", "305", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("418", "305", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("419", "305", "_length", "");
INSERT INTO `wp_postmeta` VALUES("420", "305", "_width", "");
INSERT INTO `wp_postmeta` VALUES("421", "305", "_height", "");
INSERT INTO `wp_postmeta` VALUES("422", "305", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("423", "305", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("424", "305", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("425", "305", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("426", "305", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("427", "305", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("428", "305", "_price", "");
INSERT INTO `wp_postmeta` VALUES("429", "305", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("430", "305", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("431", "305", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("432", "305", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("433", "305", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("434", "305", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("435", "305", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("436", "305", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("437", "305", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("438", "305", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("439", "305", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("440", "305", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("441", "305", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("442", "305", "mad_custom_tabs", "a:1:{s:5:\"ayutq\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:106:\"Descarga su ficha técnica en PDF: <a href=\"http://www.dluxsecurity.com/uploads/dlux-373622.pdf\">Aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("443", "305", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("444", "305", "_yoast_wpseo_focuskw_text_input", "nixt70e");
INSERT INTO `wp_postmeta` VALUES("445", "305", "_yoast_wpseo_focuskw", "nixt70e");
INSERT INTO `wp_postmeta` VALUES("446", "305", "_yoast_wpseo_metadesc", "Cámara dLux NIXT70E con IR | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("447", "305", "_yoast_wpseo_linkdex", "55");
INSERT INTO `wp_postmeta` VALUES("448", "305", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("449", "305", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("450", "307", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("451", "307", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("452", "307", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("453", "307", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("454", "307", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("455", "307", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("456", "307", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("457", "307", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("458", "307", "_virtual", "yes");
INSERT INTO `wp_postmeta` VALUES("459", "307", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("460", "307", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("461", "307", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("462", "307", "_length", "");
INSERT INTO `wp_postmeta` VALUES("463", "307", "_width", "");
INSERT INTO `wp_postmeta` VALUES("464", "307", "_height", "");
INSERT INTO `wp_postmeta` VALUES("465", "307", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("466", "307", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("467", "307", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("468", "307", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("469", "307", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("470", "307", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("471", "307", "_price", "");
INSERT INTO `wp_postmeta` VALUES("472", "307", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("473", "307", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("474", "307", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("475", "307", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("476", "307", "_product_image_gallery", "414,413");
INSERT INTO `wp_postmeta` VALUES("477", "307", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("478", "307", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("479", "307", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("480", "307", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("481", "307", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("482", "307", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("483", "307", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("484", "307", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("485", "307", "mad_custom_tabs", "a:1:{s:5:\"skgwk\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:106:\"Descarga su ficha técnica en PDF: <a href=\"http://www.dluxsecurity.com/uploads/dlux-614622.pdf\">Aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("486", "307", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("487", "307", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("488", "307", "_thumbnail_id", "415");
INSERT INTO `wp_postmeta` VALUES("489", "307", "_yoast_wpseo_focuskw_text_input", "IRE23");
INSERT INTO `wp_postmeta` VALUES("490", "307", "_yoast_wpseo_focuskw", "IRE23");
INSERT INTO `wp_postmeta` VALUES("491", "307", "_yoast_wpseo_metadesc", "Cámara IRE23 antivandálica | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("492", "307", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("493", "307", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("494", "307", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("495", "307", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("496", "312", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("497", "312", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("498", "312", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("499", "312", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("500", "312", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("501", "312", "_thumbnail_id", "412");
INSERT INTO `wp_postmeta` VALUES("502", "312", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("503", "312", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("504", "312", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("505", "312", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("506", "312", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("507", "312", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("508", "312", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("509", "312", "_length", "");
INSERT INTO `wp_postmeta` VALUES("510", "312", "_width", "");
INSERT INTO `wp_postmeta` VALUES("511", "312", "_height", "");
INSERT INTO `wp_postmeta` VALUES("512", "312", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("513", "312", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("514", "312", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("515", "312", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("516", "312", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("517", "312", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("518", "312", "_price", "");
INSERT INTO `wp_postmeta` VALUES("519", "312", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("520", "312", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("521", "312", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("522", "312", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("523", "312", "_product_image_gallery", "410,411");
INSERT INTO `wp_postmeta` VALUES("524", "312", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("525", "312", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("526", "312", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("527", "312", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("528", "312", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("529", "312", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("530", "312", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("531", "312", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("532", "312", "mad_custom_tabs", "a:1:{s:5:\"wfwlq\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:112:\"Descarga su ficha técnica en PDF: <a href=\"http://www.dahuasecurity.com/download/DH-IPC-HFW1200S.pdf\">Aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("533", "312", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("534", "312", "_yoast_wpseo_metadesc", "Cámara IP tipo domo dahua | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("535", "312", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("536", "312", "_yoast_wpseo_focuskw_text_input", "domo");
INSERT INTO `wp_postmeta` VALUES("537", "312", "_yoast_wpseo_focuskw", "domo");
INSERT INTO `wp_postmeta` VALUES("538", "312", "_yoast_wpseo_linkdex", "64");
INSERT INTO `wp_postmeta` VALUES("539", "315", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("540", "315", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("541", "315", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("542", "315", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("543", "315", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("544", "315", "_thumbnail_id", "409");
INSERT INTO `wp_postmeta` VALUES("545", "315", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("546", "315", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("547", "315", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("548", "315", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("549", "315", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("550", "315", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("551", "315", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("552", "315", "_length", "");
INSERT INTO `wp_postmeta` VALUES("553", "315", "_width", "");
INSERT INTO `wp_postmeta` VALUES("554", "315", "_height", "");
INSERT INTO `wp_postmeta` VALUES("555", "315", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("556", "315", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("557", "315", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("558", "315", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("559", "315", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("560", "315", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("561", "315", "_price", "");
INSERT INTO `wp_postmeta` VALUES("562", "315", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("563", "315", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("564", "315", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("565", "315", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("566", "315", "_product_image_gallery", "408");
INSERT INTO `wp_postmeta` VALUES("567", "315", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("568", "315", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("569", "315", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("570", "315", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("571", "315", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("572", "315", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("573", "315", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("574", "315", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("575", "315", "mad_custom_tabs", "a:1:{s:5:\"rdtos\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:112:\"Descarga su ficha técnica en PDF: <a href=\"http://www.dahuasecurity.com/download/DH-IPC-HDW1200S.pdf\">Aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("576", "315", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("577", "315", "_yoast_wpseo_focuskw_text_input", "Bullet");
INSERT INTO `wp_postmeta` VALUES("578", "315", "_yoast_wpseo_focuskw", "Bullet");
INSERT INTO `wp_postmeta` VALUES("579", "315", "_yoast_wpseo_metadesc", "Cámara IP tipo domo marca dahua | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("580", "315", "_yoast_wpseo_linkdex", "43");
INSERT INTO `wp_postmeta` VALUES("581", "315", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("582", "315", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("583", "320", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("584", "320", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("585", "320", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("586", "320", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("587", "320", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("588", "320", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("589", "320", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("590", "320", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("591", "320", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("592", "320", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("593", "320", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("594", "320", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("595", "320", "_length", "");
INSERT INTO `wp_postmeta` VALUES("596", "320", "_width", "");
INSERT INTO `wp_postmeta` VALUES("597", "320", "_height", "");
INSERT INTO `wp_postmeta` VALUES("598", "320", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("599", "320", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("600", "320", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("601", "320", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("602", "320", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("603", "320", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("604", "320", "_price", "");
INSERT INTO `wp_postmeta` VALUES("605", "320", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("606", "320", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("607", "320", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("608", "320", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("609", "320", "_product_image_gallery", "457,458");
INSERT INTO `wp_postmeta` VALUES("610", "320", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("611", "320", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("612", "320", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("613", "320", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("614", "320", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("615", "320", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("616", "320", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("617", "320", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("618", "320", "mad_custom_tabs", "a:1:{s:5:\"fqvqw\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:111:\"Descarga su ficha técnica en PDF: <a href=\"http://www.dahuasecurity.com/download/20150529bcbzne.pdf\">Aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("619", "320", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("620", "320", "_yoast_wpseo_focuskw_text_input", "Smart 1U");
INSERT INTO `wp_postmeta` VALUES("621", "320", "_yoast_wpseo_focuskw", "Smart 1U");
INSERT INTO `wp_postmeta` VALUES("622", "320", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("623", "320", "_thumbnail_id", "456");
INSERT INTO `wp_postmeta` VALUES("624", "320", "_yoast_wpseo_linkdex", "74");
INSERT INTO `wp_postmeta` VALUES("625", "320", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("669", "328", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("670", "328", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("671", "328", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("672", "328", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("673", "328", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("674", "328", "_thumbnail_id", "396");
INSERT INTO `wp_postmeta` VALUES("675", "328", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("676", "328", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("677", "328", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("678", "328", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("679", "328", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("680", "328", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("681", "328", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("682", "328", "_length", "");
INSERT INTO `wp_postmeta` VALUES("683", "328", "_width", "");
INSERT INTO `wp_postmeta` VALUES("684", "328", "_height", "");
INSERT INTO `wp_postmeta` VALUES("685", "328", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("686", "328", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("687", "328", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("688", "328", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("689", "328", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("690", "328", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("691", "328", "_price", "");
INSERT INTO `wp_postmeta` VALUES("692", "328", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("693", "328", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("694", "328", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("695", "328", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("696", "328", "_product_image_gallery", "395");
INSERT INTO `wp_postmeta` VALUES("697", "328", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("698", "328", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("699", "328", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("700", "328", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("701", "328", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("702", "328", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("703", "328", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("704", "328", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("705", "328", "mad_custom_tabs", "a:1:{s:5:\"giycw\";a:2:{s:21:\"mad_title_product_tab\";s:5:\"Video\";s:23:\"mad_content_product_tab\";s:122:\"<iframe width=\"854\" height=\"480\" src=\"https://www.youtube.com/embed/5X9eHqQWRJI\" frameborder=\"0\" allowfullscreen></iframe>\";}}");
INSERT INTO `wp_postmeta` VALUES("706", "328", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("707", "328", "_yoast_wpseo_focuskw_text_input", "BG12");
INSERT INTO `wp_postmeta` VALUES("708", "328", "_yoast_wpseo_focuskw", "BG12");
INSERT INTO `wp_postmeta` VALUES("709", "328", "_yoast_wpseo_metadesc", "Estación manual de incendio FireLite BG12 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV.");
INSERT INTO `wp_postmeta` VALUES("710", "328", "_yoast_wpseo_linkdex", "74");
INSERT INTO `wp_postmeta` VALUES("711", "328", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("712", "328", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("822", "371", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("821", "371", "_menu_item_object_id", "66");
INSERT INTO `wp_postmeta` VALUES("820", "371", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("819", "371", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("818", "371", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("722", "330", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("723", "330", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("724", "330", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("725", "330", "_menu_item_object_id", "38");
INSERT INTO `wp_postmeta` VALUES("726", "330", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("727", "330", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("728", "330", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("729", "330", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("730", "330", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("734", "320", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("735", "315", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("736", "315", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("737", "312", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("738", "312", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("739", "307", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("740", "307", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("741", "305", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("742", "305", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("743", "299", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("744", "299", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("905", "405", "_wp_attached_file", "2016/12/720DVRIP-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("906", "405", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720DVRIP-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720DVRIP-1-150x150.jpeg\";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:\"720DVRIP-1-300x300.jpeg\";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:21:\"720DVRIP-1-90x90.jpeg\";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:23:\"720DVRIP-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720DVRIP-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("893", "399", "_wp_attached_file", "2016/12/720DG467-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("894", "399", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720DG467-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720DG467-1-150x150.jpeg\";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:\"720DG467-1-300x300.jpeg\";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:21:\"720DG467-1-90x90.jpeg\";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:23:\"720DG467-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720DG467-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("895", "400", "_wp_attached_file", "2016/12/720DG467.jpeg");
INSERT INTO `wp_postmeta` VALUES("896", "400", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720DG467.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720DG467-150x150.jpeg\";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:21:\"720DG467-300x300.jpeg\";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:19:\"720DG467-90x90.jpeg\";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:21:\"720DG467-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720DG467-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("897", "401", "_wp_attached_file", "2016/12/720DVR.jpeg");
INSERT INTO `wp_postmeta` VALUES("898", "401", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2016/12/720DVR.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"720DVR-150x150.jpeg\";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:\"720DVR-300x300.jpeg\";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:17:\"720DVR-90x90.jpeg\";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:\"720DVR-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"720DVR-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452363021\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("899", "402", "_wp_attached_file", "2016/12/720DVR2.jpeg");
INSERT INTO `wp_postmeta` VALUES("900", "402", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720DVR2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720DVR2-150x150.jpeg\";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:\"720DVR2-300x300.jpeg\";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:18:\"720DVR2-90x90.jpeg\";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:\"720DVR2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720DVR2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452364440\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("901", "403", "_wp_attached_file", "2016/12/720DVR3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("902", "403", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720DVR3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720DVR3-1-150x150.jpeg\";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:\"720DVR3-1-300x300.jpeg\";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:20:\"720DVR3-1-90x90.jpeg\";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:\"720DVR3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720DVR3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452364800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("865", "385", "_wp_attached_file", "2016/12/hikvision-1-e1483237814901.jpeg");
INSERT INTO `wp_postmeta` VALUES("866", "385", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:39:\"2016/12/hikvision-1-e1483237814901.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"hikvision-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"hikvision-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609801\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("867", "386", "_wp_attached_file", "2016/12/linksys-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("868", "386", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/linksys-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"linksys-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"linksys-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("863", "384", "_wp_attached_file", "2016/12/firelite-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("864", "384", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/firelite-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"firelite-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"firelite-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609780\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("851", "378", "_wp_attached_file", "2016/12/altronix-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("852", "378", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/altronix-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"altronix-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"altronix-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("853", "379", "_wp_attached_file", "2016/12/axis-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("854", "379", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2016/12/axis-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"axis-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"axis-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("775", "38", "_edit_lock", "1483569675:1");
INSERT INTO `wp_postmeta` VALUES("903", "404", "_wp_attached_file", "2016/12/720DVRIP-3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("904", "404", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720DVRIP-3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720DVRIP-3-1-150x150.jpeg\";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:\"720DVRIP-3-1-300x300.jpeg\";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:23:\"720DVRIP-3-1-90x90.jpeg\";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:25:\"720DVRIP-3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720DVRIP-3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("855", "380", "_wp_attached_file", "2016/12/belkin-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("856", "380", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2016/12/belkin-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"belkin-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"belkin-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("857", "381", "_wp_attached_file", "2016/12/dahua-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("858", "381", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2016/12/dahua-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dahua-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"dahua-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609645\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("859", "382", "_wp_attached_file", "2016/12/dlux-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("860", "382", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2016/12/dlux-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"dlux-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"dlux-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("861", "383", "_wp_attached_file", "2016/12/enforcer-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("862", "383", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/enforcer-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"enforcer-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"enforcer-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("784", "351", "_wp_attached_file", "2016/12/banner3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("785", "351", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:480;s:4:\"file\";s:22:\"2016/12/banner3-1.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner3-1-150x150.jpeg\";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:21:\"banner3-1-300x96.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"banner3-1-768x246.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"banner3-1-1024x328.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"banner3-1-90x29.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"banner3-1-325x104.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"banner3-1-450x144.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("786", "352", "_wp_attached_file", "2016/12/BANNERNEW-1.jpg");
INSERT INTO `wp_postmeta` VALUES("787", "352", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:480;s:4:\"file\";s:23:\"2016/12/BANNERNEW-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BANNERNEW-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:22:\"BANNERNEW-1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"BANNERNEW-1-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"BANNERNEW-1-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BANNERNEW-1-90x29.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BANNERNEW-1-325x104.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"BANNERNEW-1-450x144.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("788", "353", "_wp_attached_file", "2016/12/bannerPATRONS-1.jpg");
INSERT INTO `wp_postmeta` VALUES("789", "353", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1903;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2016/12/bannerPATRONS-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bannerPATRONS-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:26:\"bannerPATRONS-1-300x76.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"bannerPATRONS-1-768x194.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"bannerPATRONS-1-1024x258.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bannerPATRONS-1-90x23.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:23;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"bannerPATRONS-1-325x82.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"bannerPATRONS-1-450x114.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("889", "397", "_wp_attached_file", "2016/12/720DG466-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("890", "397", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720DG466-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720DG466-1-150x150.jpeg\";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:\"720DG466-1-300x300.jpeg\";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:21:\"720DG466-1-90x90.jpeg\";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:23:\"720DG466-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720DG466-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("891", "398", "_wp_attached_file", "2016/12/720DG466.jpeg");
INSERT INTO `wp_postmeta` VALUES("892", "398", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720DG466.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720DG466-150x150.jpeg\";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:21:\"720DG466-300x300.jpeg\";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:19:\"720DG466-90x90.jpeg\";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:21:\"720DG466-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720DG466-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("888", "396", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720BG12.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720BG12-150x150.jpeg\";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:\"720BG12-300x300.jpeg\";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:18:\"720BG12-90x90.jpeg\";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:\"720BG12-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720BG12-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("887", "396", "_wp_attached_file", "2016/12/720BG12.jpeg");
INSERT INTO `wp_postmeta` VALUES("869", "387", "_wp_attached_file", "2016/12/magellan-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("870", "387", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/magellan-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"magellan-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"magellan-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("871", "388", "_wp_attached_file", "2016/12/optex-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("872", "388", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2016/12/optex-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"optex-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"optex-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452279793\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("873", "389", "_wp_attached_file", "2016/12/paradox-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("874", "389", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/paradox-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"paradox-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"paradox-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445610014\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("875", "390", "_wp_attached_file", "2016/12/spectra-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("876", "390", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/spectra-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"spectra-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"spectra-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("877", "391", "_wp_attached_file", "2016/12/wd-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("878", "391", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2016/12/wd-1.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"wd-1-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"wd-1-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("879", "378", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("880", "384", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("881", "390", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("882", "385", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("883", "385", "_edit_lock", "1483228570:1");
INSERT INTO `wp_postmeta` VALUES("884", "383", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("885", "395", "_wp_attached_file", "2016/12/720BG12-1.jpg");
INSERT INTO `wp_postmeta` VALUES("886", "395", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720BG12-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720BG12-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:21:\"720BG12-1-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:19:\"720BG12-1-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:21:\"720BG12-1-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720BG12-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"GH700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1479941939\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("830", "372", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("831", "372", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("832", "372", "_edit_lock", "1483227306:1");
INSERT INTO `wp_postmeta` VALUES("833", "372", "footer_row_top_show", "yes");
INSERT INTO `wp_postmeta` VALUES("834", "372", "footer_row_bottom_show", "no");
INSERT INTO `wp_postmeta` VALUES("835", "372", "footer_row_top_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("836", "372", "footer_row_bottom_columns_variations", "{&quot;4&quot;:[[&quot;3&quot;,&quot;3&quot;,&quot;3&quot;,&quot;3&quot;]]}");
INSERT INTO `wp_postmeta` VALUES("837", "372", "get_sidebars_top_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 1\";i:1;s:21:\"Footer Row - widget 2\";i:2;s:21:\"Footer Row - widget 3\";i:3;s:21:\"Footer Row - widget 4\";i:4;s:21:\"Footer Row - widget 5\";i:5;s:21:\"Footer Row - widget 6\";}");
INSERT INTO `wp_postmeta` VALUES("838", "372", "get_sidebars_bottom_widgets", "a:6:{i:0;s:21:\"Footer Row - widget 6\";i:1;s:21:\"Footer Row - widget 7\";i:2;s:21:\"Footer Row - widget 8\";i:3;s:21:\"Footer Row - widget 9\";i:4;s:22:\"Footer Row - widget 10\";i:5;s:22:\"Footer Row - widget 11\";}");
INSERT INTO `wp_postmeta` VALUES("839", "372", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("840", "372", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("841", "372", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("849", "97", "_edit_lock", "1483227493:1");
INSERT INTO `wp_postmeta` VALUES("850", "98", "_edit_lock", "1483227623:1");
INSERT INTO `wp_postmeta` VALUES("907", "406", "_wp_attached_file", "2016/12/720G550-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("908", "406", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720G550-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720G550-2-150x150.jpeg\";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:\"720G550-2-300x300.jpeg\";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:20:\"720G550-2-90x90.jpeg\";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:\"720G550-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720G550-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("909", "407", "_wp_attached_file", "2016/12/720G550.jpeg");
INSERT INTO `wp_postmeta` VALUES("910", "407", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720G550.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720G550-150x150.jpeg\";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:\"720G550-300x300.jpeg\";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:18:\"720G550-90x90.jpeg\";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:\"720G550-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720G550-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("911", "408", "_wp_attached_file", "2016/12/720IPCHDW-2-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("912", "408", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720IPCHDW-2-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720IPCHDW-2-1-150x150.jpeg\";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:\"720IPCHDW-2-1-300x300.jpeg\";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:24:\"720IPCHDW-2-1-90x90.jpeg\";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:26:\"720IPCHDW-2-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720IPCHDW-2-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("913", "409", "_wp_attached_file", "2016/12/720IPCHDW-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("914", "409", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720IPCHDW-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720IPCHDW-1-150x150.jpeg\";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:\"720IPCHDW-1-300x300.jpeg\";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:22:\"720IPCHDW-1-90x90.jpeg\";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:\"720IPCHDW-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720IPCHDW-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("915", "410", "_wp_attached_file", "2016/12/720IPCHFW-2-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("916", "410", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720IPCHFW-2-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720IPCHFW-2-1-150x150.jpeg\";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:\"720IPCHFW-2-1-300x300.jpeg\";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:24:\"720IPCHFW-2-1-90x90.jpeg\";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:26:\"720IPCHFW-2-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720IPCHFW-2-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("917", "411", "_wp_attached_file", "2016/12/720IPCHFW-3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("918", "411", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720IPCHFW-3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720IPCHFW-3-1-150x150.jpeg\";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:\"720IPCHFW-3-1-300x300.jpeg\";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:24:\"720IPCHFW-3-1-90x90.jpeg\";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:26:\"720IPCHFW-3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720IPCHFW-3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("919", "412", "_wp_attached_file", "2016/12/720IPCHFW-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("920", "412", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720IPCHFW-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720IPCHFW-1-150x150.jpeg\";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:\"720IPCHFW-1-300x300.jpeg\";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:22:\"720IPCHFW-1-90x90.jpeg\";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:\"720IPCHFW-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720IPCHFW-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("921", "413", "_wp_attached_file", "2016/12/720IRE23-2-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("922", "413", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720IRE23-2-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720IRE23-2-1-150x150.jpeg\";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:\"720IRE23-2-1-300x300.jpeg\";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:23:\"720IRE23-2-1-90x90.jpeg\";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:25:\"720IRE23-2-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720IRE23-2-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453029181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("923", "414", "_wp_attached_file", "2016/12/720IRE23-3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("924", "414", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720IRE23-3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720IRE23-3-1-150x150.jpeg\";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:\"720IRE23-3-1-300x300.jpeg\";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:23:\"720IRE23-3-1-90x90.jpeg\";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:25:\"720IRE23-3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720IRE23-3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453029403\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("925", "415", "_wp_attached_file", "2016/12/720IRE23-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("926", "415", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720IRE23-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720IRE23-1-150x150.jpeg\";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:\"720IRE23-1-300x300.jpeg\";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:21:\"720IRE23-1-90x90.jpeg\";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:23:\"720IRE23-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720IRE23-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453028892\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("927", "416", "_wp_attached_file", "2016/12/720K10V-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("928", "416", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720K10V-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720K10V-2-150x150.jpeg\";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:\"720K10V-2-300x300.jpeg\";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:20:\"720K10V-2-90x90.jpeg\";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:\"720K10V-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720K10V-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453390028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("929", "417", "_wp_attached_file", "2016/12/720K10V.jpeg");
INSERT INTO `wp_postmeta` VALUES("930", "417", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720K10V.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720K10V-150x150.jpeg\";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:\"720K10V-300x300.jpeg\";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:18:\"720K10V-90x90.jpeg\";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:\"720K10V-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720K10V-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453390028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("931", "418", "_wp_attached_file", "2016/12/720K32-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("932", "418", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720K32-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720K32-1-150x150.jpeg\";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:21:\"720K32-1-300x300.jpeg\";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:19:\"720K32-1-90x90.jpeg\";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:21:\"720K32-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720K32-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453238980\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("933", "419", "_wp_attached_file", "2016/12/720K32-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("934", "419", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720K32-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720K32-2-150x150.jpeg\";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:21:\"720K32-2-300x300.jpeg\";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:19:\"720K32-2-90x90.jpeg\";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:21:\"720K32-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720K32-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453238073\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("935", "420", "_wp_attached_file", "2016/12/720K32.jpeg");
INSERT INTO `wp_postmeta` VALUES("936", "420", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2016/12/720K32.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"720K32-150x150.jpeg\";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:\"720K32-300x300.jpeg\";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:17:\"720K32-90x90.jpeg\";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:\"720K32-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"720K32-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453237911\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("937", "421", "_wp_attached_file", "2016/12/720K35-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("938", "421", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720K35-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720K35-2-150x150.jpeg\";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:21:\"720K35-2-300x300.jpeg\";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:19:\"720K35-2-90x90.jpeg\";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:21:\"720K35-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720K35-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453583638\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("939", "422", "_wp_attached_file", "2016/12/720K35.jpeg");
INSERT INTO `wp_postmeta` VALUES("940", "422", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2016/12/720K35.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"720K35-150x150.jpeg\";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:\"720K35-300x300.jpeg\";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:17:\"720K35-90x90.jpeg\";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:\"720K35-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"720K35-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453583638\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("941", "423", "_wp_attached_file", "2016/12/720K636-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("942", "423", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720K636-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720K636-1-150x150.jpeg\";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:\"720K636-1-300x300.jpeg\";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:20:\"720K636-1-90x90.jpeg\";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:\"720K636-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720K636-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453241356\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("943", "424", "_wp_attached_file", "2016/12/720K636.jpeg");
INSERT INTO `wp_postmeta` VALUES("944", "424", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720K636.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720K636-150x150.jpeg\";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:\"720K636-300x300.jpeg\";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:18:\"720K636-90x90.jpeg\";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:\"720K636-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720K636-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453240586\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("945", "425", "_wp_attached_file", "2016/12/720MG5050.jpeg");
INSERT INTO `wp_postmeta` VALUES("946", "425", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720MG5050.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720MG5050-150x150.jpeg\";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:\"720MG5050-300x300.jpeg\";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:20:\"720MG5050-90x90.jpeg\";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:\"720MG5050-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720MG5050-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("947", "426", "_wp_attached_file", "2016/12/720NIXT70E-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("948", "426", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720NIXT70E-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720NIXT70E-1-150x150.jpeg\";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:\"720NIXT70E-1-300x300.jpeg\";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:23:\"720NIXT70E-1-90x90.jpeg\";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:25:\"720NIXT70E-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720NIXT70E-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453029944\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2668", "569", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2669", "569", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2671", "569", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2672", "569", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2673", "569", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2674", "569", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2675", "569", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2676", "569", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2677", "569", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2678", "569", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2679", "569", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2680", "569", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2681", "569", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2682", "569", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2683", "569", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2684", "569", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2685", "569", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2686", "569", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2687", "569", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2688", "569", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2689", "569", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2690", "569", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2691", "569", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2692", "569", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2693", "569", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2694", "569", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2695", "569", "_product_image_gallery", "573");
INSERT INTO `wp_postmeta` VALUES("2696", "569", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2697", "569", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2698", "569", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2699", "569", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2700", "569", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2701", "569", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2702", "569", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2703", "569", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2704", "569", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2705", "569", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2657", "405", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2652", "386", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2653", "387", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2654", "388", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2655", "389", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2656", "391", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("957", "431", "_wp_attached_file", "2016/12/720PMD2P-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("958", "431", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720PMD2P-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720PMD2P-1-150x150.jpeg\";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:\"720PMD2P-1-300x300.jpeg\";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:21:\"720PMD2P-1-90x90.jpeg\";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:23:\"720PMD2P-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720PMD2P-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453389699\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("959", "432", "_wp_attached_file", "2016/12/720PMD2P-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("960", "432", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720PMD2P-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720PMD2P-3-150x150.jpeg\";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:\"720PMD2P-3-300x300.jpeg\";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:21:\"720PMD2P-3-90x90.jpeg\";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:23:\"720PMD2P-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720PMD2P-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453389976\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("961", "433", "_wp_attached_file", "2016/12/720PMD2P.jpeg");
INSERT INTO `wp_postmeta` VALUES("962", "433", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720PMD2P.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720PMD2P-150x150.jpeg\";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:21:\"720PMD2P-300x300.jpeg\";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:19:\"720PMD2P-90x90.jpeg\";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:21:\"720PMD2P-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720PMD2P-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453389186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("963", "434", "_wp_attached_file", "2016/12/720PMD75.jpeg");
INSERT INTO `wp_postmeta` VALUES("964", "434", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720PMD75.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720PMD75-150x150.jpeg\";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:21:\"720PMD75-300x300.jpeg\";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:19:\"720PMD75-90x90.jpeg\";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:21:\"720PMD75-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720PMD75-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453488971\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("965", "435", "_wp_attached_file", "2016/12/720PMD85-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("966", "435", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720PMD85-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720PMD85-2-150x150.jpeg\";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:\"720PMD85-2-300x300.jpeg\";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:21:\"720PMD85-2-90x90.jpeg\";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:23:\"720PMD85-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720PMD85-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453749153\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("967", "436", "_wp_attached_file", "2016/12/720PMD85-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("968", "436", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720PMD85-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720PMD85-3-150x150.jpeg\";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:\"720PMD85-3-300x300.jpeg\";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:21:\"720PMD85-3-90x90.jpeg\";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:23:\"720PMD85-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720PMD85-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453749153\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("969", "437", "_wp_attached_file", "2016/12/720PMD85-4.jpeg");
INSERT INTO `wp_postmeta` VALUES("970", "437", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720PMD85-4.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720PMD85-4-150x150.jpeg\";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:\"720PMD85-4-300x300.jpeg\";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:21:\"720PMD85-4-90x90.jpeg\";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:23:\"720PMD85-4-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720PMD85-4-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453749153\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2256", "554", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2253", "553", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2017/01/pmd85.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pmd85-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:\"pmd85-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:15:\"pmd85-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:\"pmd85-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"pmd85-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2254", "553", "_wp_attachment_image_alt", "PMD85");
INSERT INTO `wp_postmeta` VALUES("2255", "548", "_thumbnail_id", "553");
INSERT INTO `wp_postmeta` VALUES("973", "439", "_wp_attached_file", "2016/12/720REM-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("974", "439", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720REM-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720REM-3-150x150.jpeg\";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:21:\"720REM-3-300x300.jpeg\";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:19:\"720REM-3-90x90.jpeg\";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:21:\"720REM-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720REM-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287370\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("975", "440", "_wp_attached_file", "2016/12/720REM1-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("976", "440", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720REM1-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720REM1-2-150x150.jpeg\";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:\"720REM1-2-300x300.jpeg\";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:20:\"720REM1-2-90x90.jpeg\";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:\"720REM1-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720REM1-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746556\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("977", "441", "_wp_attached_file", "2016/12/720REM1.jpeg");
INSERT INTO `wp_postmeta` VALUES("978", "441", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720REM1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720REM1-150x150.jpeg\";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:\"720REM1-300x300.jpeg\";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:18:\"720REM1-90x90.jpeg\";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:\"720REM1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720REM1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746324\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("979", "442", "_wp_attached_file", "2016/12/720REM2-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("980", "442", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720REM2-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720REM2-2-150x150.jpeg\";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:\"720REM2-2-300x300.jpeg\";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:20:\"720REM2-2-90x90.jpeg\";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:\"720REM2-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720REM2-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746234\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("981", "443", "_wp_attached_file", "2016/12/720REM2.jpeg");
INSERT INTO `wp_postmeta` VALUES("982", "443", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720REM2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720REM2-150x150.jpeg\";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:\"720REM2-300x300.jpeg\";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:18:\"720REM2-90x90.jpeg\";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:\"720REM2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720REM2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453745978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("983", "444", "_wp_attached_file", "2016/12/720REM3-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("984", "444", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720REM3-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720REM3-2-150x150.jpeg\";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:\"720REM3-2-300x300.jpeg\";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:20:\"720REM3-2-90x90.jpeg\";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:\"720REM3-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720REM3-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287232\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("985", "445", "_wp_attached_file", "2016/12/720REM3.jpeg");
INSERT INTO `wp_postmeta` VALUES("986", "445", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720REM3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720REM3-150x150.jpeg\";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:\"720REM3-300x300.jpeg\";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:18:\"720REM3-90x90.jpeg\";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:\"720REM3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720REM3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287038\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("987", "446", "_wp_attached_file", "2016/12/720REM15-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("988", "446", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720REM15-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720REM15-2-150x150.jpeg\";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:\"720REM15-2-300x300.jpeg\";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:21:\"720REM15-2-90x90.jpeg\";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:23:\"720REM15-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720REM15-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453388925\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("989", "447", "_wp_attached_file", "2016/12/720REM15-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("990", "447", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720REM15-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720REM15-3-150x150.jpeg\";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:\"720REM15-3-300x300.jpeg\";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:21:\"720REM15-3-90x90.jpeg\";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:23:\"720REM15-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720REM15-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453389019\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("991", "448", "_wp_attached_file", "2016/12/720REM15.jpeg");
INSERT INTO `wp_postmeta` VALUES("992", "448", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720REM15.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720REM15-150x150.jpeg\";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:21:\"720REM15-300x300.jpeg\";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:19:\"720REM15-90x90.jpeg\";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:21:\"720REM15-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720REM15-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453388807\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("993", "449", "_wp_attached_file", "2016/12/720REM101-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("994", "449", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720REM101-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720REM101-2-150x150.jpeg\";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:\"720REM101-2-300x300.jpeg\";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:22:\"720REM101-2-90x90.jpeg\";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:\"720REM101-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720REM101-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453390028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("995", "450", "_wp_attached_file", "2016/12/720REM101-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("996", "450", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720REM101-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720REM101-3-150x150.jpeg\";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:\"720REM101-3-300x300.jpeg\";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:22:\"720REM101-3-90x90.jpeg\";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:\"720REM101-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720REM101-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453583638\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("997", "451", "_wp_attached_file", "2016/12/720REM101-4.jpeg");
INSERT INTO `wp_postmeta` VALUES("998", "451", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720REM101-4.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720REM101-4-150x150.jpeg\";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:\"720REM101-4-300x300.jpeg\";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:22:\"720REM101-4-90x90.jpeg\";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:\"720REM101-4-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720REM101-4-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453583638\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("999", "452", "_wp_attached_file", "2016/12/720REM101-5.jpeg");
INSERT INTO `wp_postmeta` VALUES("1000", "452", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720REM101-5.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720REM101-5-150x150.jpeg\";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:\"720REM101-5-300x300.jpeg\";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:22:\"720REM101-5-90x90.jpeg\";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:\"720REM101-5-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720REM101-5-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453583638\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1001", "453", "_wp_attached_file", "2016/12/720REM101.jpeg");
INSERT INTO `wp_postmeta` VALUES("1002", "453", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720REM101.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720REM101-150x150.jpeg\";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:\"720REM101-300x300.jpeg\";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:20:\"720REM101-90x90.jpeg\";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:\"720REM101-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720REM101-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453390028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1003", "454", "_wp_attached_file", "2016/12/720RX40-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1004", "454", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720RX40-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720RX40-1-150x150.jpeg\";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:\"720RX40-1-300x300.jpeg\";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:20:\"720RX40-1-90x90.jpeg\";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:\"720RX40-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720RX40-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1005", "455", "_wp_attached_file", "2016/12/720RX40.jpeg");
INSERT INTO `wp_postmeta` VALUES("1006", "455", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:20:\"2016/12/720RX40.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"720RX40-150x150.jpeg\";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:\"720RX40-300x300.jpeg\";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:18:\"720RX40-90x90.jpeg\";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:\"720RX40-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"720RX40-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1007", "456", "_wp_attached_file", "2016/12/720SMART-1-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1008", "456", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720SMART-1-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720SMART-1-1-150x150.jpeg\";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:\"720SMART-1-1-300x300.jpeg\";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:23:\"720SMART-1-1-90x90.jpeg\";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:25:\"720SMART-1-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720SMART-1-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454338755\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1009", "457", "_wp_attached_file", "2016/12/720SMART-2-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1010", "457", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720SMART-2-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720SMART-2-1-150x150.jpeg\";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:\"720SMART-2-1-300x300.jpeg\";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:23:\"720SMART-2-1-90x90.jpeg\";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:25:\"720SMART-2-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720SMART-2-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454338755\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1011", "458", "_wp_attached_file", "2016/12/720SMART-3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1012", "458", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2016/12/720SMART-3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"720SMART-3-1-150x150.jpeg\";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:\"720SMART-3-1-300x300.jpeg\";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:23:\"720SMART-3-1-90x90.jpeg\";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:25:\"720SMART-3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"720SMART-3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454338755\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1013", "459", "_wp_attached_file", "2016/12/720SP4000-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1014", "459", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720SP4000-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720SP4000-1-150x150.jpeg\";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:\"720SP4000-1-300x300.jpeg\";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:22:\"720SP4000-1-90x90.jpeg\";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:\"720SP4000-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720SP4000-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1015", "460", "_wp_attached_file", "2016/12/720TM50-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1016", "460", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720TM50-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720TM50-1-150x150.jpeg\";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:\"720TM50-1-300x300.jpeg\";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:20:\"720TM50-1-90x90.jpeg\";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:\"720TM50-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720TM50-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453388325\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1017", "461", "_wp_attached_file", "2016/12/720TM50-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1018", "461", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720TM50-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720TM50-2-150x150.jpeg\";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:\"720TM50-2-300x300.jpeg\";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:20:\"720TM50-2-90x90.jpeg\";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:\"720TM50-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720TM50-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453388453\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1019", "462", "_wp_attached_file", "2016/12/720TM50-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("1020", "462", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720TM50-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720TM50-3-150x150.jpeg\";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:\"720TM50-3-300x300.jpeg\";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:20:\"720TM50-3-90x90.jpeg\";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:\"720TM50-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720TM50-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453388453\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1021", "463", "_wp_attached_file", "2016/12/720VDMP3.jpeg");
INSERT INTO `wp_postmeta` VALUES("1022", "463", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720VDMP3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720VDMP3-150x150.jpeg\";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:21:\"720VDMP3-300x300.jpeg\";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:19:\"720VDMP3-90x90.jpeg\";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:21:\"720VDMP3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720VDMP3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1023", "464", "_wp_attached_file", "2016/12/720VIR727-1-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1024", "464", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720VIR727-1-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720VIR727-1-1-150x150.jpeg\";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:\"720VIR727-1-1-300x300.jpeg\";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:24:\"720VIR727-1-1-90x90.jpeg\";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:26:\"720VIR727-1-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720VIR727-1-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452538144\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1025", "465", "_wp_attached_file", "2016/12/720VIR727-2-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1026", "465", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720VIR727-2-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720VIR727-2-1-150x150.jpeg\";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:\"720VIR727-2-1-300x300.jpeg\";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:24:\"720VIR727-2-1-90x90.jpeg\";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:26:\"720VIR727-2-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720VIR727-2-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452537954\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1027", "466", "_wp_attached_file", "2016/12/720VIR727-3-1.jpeg");
INSERT INTO `wp_postmeta` VALUES("1028", "466", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2016/12/720VIR727-3-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"720VIR727-3-1-150x150.jpeg\";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:\"720VIR727-3-1-300x300.jpeg\";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:24:\"720VIR727-3-1-90x90.jpeg\";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:26:\"720VIR727-3-1-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"720VIR727-3-1-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452538014\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1029", "467", "_wp_attached_file", "2016/12/720VIR727-4.jpeg");
INSERT INTO `wp_postmeta` VALUES("1030", "467", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720VIR727-4.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720VIR727-4-150x150.jpeg\";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:\"720VIR727-4-300x300.jpeg\";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:22:\"720VIR727-4-90x90.jpeg\";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:\"720VIR727-4-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720VIR727-4-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452538888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1031", "468", "_wp_attached_file", "2016/12/720WDHDD-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1032", "468", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/720WDHDD-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"720WDHDD-2-150x150.jpeg\";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:\"720WDHDD-2-300x300.jpeg\";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:21:\"720WDHDD-2-90x90.jpeg\";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:23:\"720WDHDD-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"720WDHDD-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454612998\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1033", "469", "_wp_attached_file", "2016/12/720WDHDD.jpeg");
INSERT INTO `wp_postmeta` VALUES("1034", "469", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/720WDHDD.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"720WDHDD-150x150.jpeg\";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:21:\"720WDHDD-300x300.jpeg\";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:19:\"720WDHDD-90x90.jpeg\";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:21:\"720WDHDD-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"720WDHDD-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1454612560\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1035", "470", "_wp_attached_file", "2016/12/720WS588P-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1036", "470", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720WS588P-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720WS588P-2-150x150.jpeg\";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:\"720WS588P-2-300x300.jpeg\";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:22:\"720WS588P-2-90x90.jpeg\";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:\"720WS588P-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720WS588P-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1037", "471", "_wp_attached_file", "2016/12/720WS588P-3.jpeg");
INSERT INTO `wp_postmeta` VALUES("1038", "471", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2016/12/720WS588P-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"720WS588P-3-150x150.jpeg\";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:\"720WS588P-3-300x300.jpeg\";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:22:\"720WS588P-3-90x90.jpeg\";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:\"720WS588P-3-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"720WS588P-3-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287688\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1039", "472", "_wp_attached_file", "2016/12/720WS588P.jpeg");
INSERT INTO `wp_postmeta` VALUES("1040", "472", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2016/12/720WS588P.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"720WS588P-150x150.jpeg\";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:\"720WS588P-300x300.jpeg\";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:20:\"720WS588P-90x90.jpeg\";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:\"720WS588P-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"720WS588P-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453287497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1041", "473", "_wp_attached_file", "2016/12/7202WPGM-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1042", "473", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/7202WPGM-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"7202WPGM-2-150x150.jpeg\";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:\"7202WPGM-2-300x300.jpeg\";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:21:\"7202WPGM-2-90x90.jpeg\";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:23:\"7202WPGM-2-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"7202WPGM-2-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1458391446\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1043", "474", "_wp_attached_file", "2016/12/7202WPGM.jpeg");
INSERT INTO `wp_postmeta` VALUES("1044", "474", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/7202WPGM.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"7202WPGM-150x150.jpeg\";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:21:\"7202WPGM-300x300.jpeg\";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:19:\"7202WPGM-90x90.jpeg\";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:21:\"7202WPGM-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"7202WPGM-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1458391354\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1045", "475", "_wp_attached_file", "2016/12/720476.jpeg");
INSERT INTO `wp_postmeta` VALUES("1046", "475", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2016/12/720476.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"720476-150x150.jpeg\";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:\"720476-300x300.jpeg\";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:17:\"720476-90x90.jpeg\";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:\"720476-325x325.jpeg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"720476-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453491128\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1047", "476", "_wp_attached_file", "2016/12/7209050-1-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1048", "476", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/7209050-1-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"7209050-1-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:23:\"7209050-1-1-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:21:\"7209050-1-1-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:23:\"7209050-1-1-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"7209050-1-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"GH700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1479941810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1049", "477", "_wp_attached_file", "2016/12/7209050-2-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1050", "477", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/7209050-2-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"7209050-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:23:\"7209050-2-1-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:21:\"7209050-2-1-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:23:\"7209050-2-1-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"7209050-2-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"GH700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1479941810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1051", "478", "_wp_attached_file", "2016/12/7209050-3-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1052", "478", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2016/12/7209050-3-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"7209050-3-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:23:\"7209050-3-1-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:21:\"7209050-3-1-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:23:\"7209050-3-1-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"7209050-3-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"GH700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1479941810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1053", "479", "_wp_attached_file", "2016/12/7209050-4.jpg");
INSERT INTO `wp_postmeta` VALUES("1054", "479", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2016/12/7209050-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"7209050-4-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:21:\"7209050-4-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:19:\"7209050-4-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:21:\"7209050-4-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"7209050-4-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"GH700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1479941810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1055", "264", "_edit_lock", "1483324415:1");
INSERT INTO `wp_postmeta` VALUES("1056", "312", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("1057", "480", "_wp_attached_file", "2016/12/LOGO-Azul-PNG-copia.png");
INSERT INTO `wp_postmeta` VALUES("1058", "480", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:380;s:4:\"file\";s:31:\"2016/12/LOGO-Azul-PNG-copia.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"LOGO-Azul-PNG-copia-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:31:\"LOGO-Azul-PNG-copia-300x253.png\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"LOGO-Azul-PNG-copia-90x76.png\";s:5:\"width\";i:90;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"LOGO-Azul-PNG-copia-325x274.png\";s:5:\"width\";i:325;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"LOGO-Azul-PNG-copia-450x380.png\";s:5:\"width\";i:450;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1059", "481", "_wp_attached_file", "2016/12/logo-3.png");
INSERT INTO `wp_postmeta` VALUES("1060", "481", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:166;s:6:\"height\";i:37;s:4:\"file\";s:18:\"2016/12/logo-3.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"logo-3-150x37.png\";s:5:\"width\";i:150;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-3-90x20.png\";s:5:\"width\";i:90;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1061", "482", "_wp_attached_file", "2016/12/ssanditec2-1.png");
INSERT INTO `wp_postmeta` VALUES("1062", "482", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:24:\"2016/12/ssanditec2-1.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"ssanditec2-1-90x27.png\";s:5:\"width\";i:90;s:6:\"height\";i:27;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1073", "486", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("1074", "486", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("1075", "328", "_edit_lock", "1483324443:1");
INSERT INTO `wp_postmeta` VALUES("1076", "477", "_wp_attachment_image_alt", "FireLite MS 9050");
INSERT INTO `wp_postmeta` VALUES("1077", "478", "_wp_attachment_image_alt", "FireLite MS 9050");
INSERT INTO `wp_postmeta` VALUES("1078", "479", "_wp_attachment_image_alt", "FireLite MS 9050");
INSERT INTO `wp_postmeta` VALUES("1079", "476", "_wp_attachment_image_alt", "FireLite MS 9050");
INSERT INTO `wp_postmeta` VALUES("1080", "396", "_wp_attachment_image_alt", "Estación manual BG12 FireLite");
INSERT INTO `wp_postmeta` VALUES("1081", "395", "_wp_attachment_image_alt", "FireLite BG12 Estaciópn manual de incendio");
INSERT INTO `wp_postmeta` VALUES("1082", "328", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1083", "328", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1084", "328", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1085", "320", "_edit_lock", "1483307423:1");
INSERT INTO `wp_postmeta` VALUES("1086", "320", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1087", "320", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1088", "320", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1089", "457", "_wp_attachment_image_alt", "DVR Dahua Smart 1U");
INSERT INTO `wp_postmeta` VALUES("1090", "458", "_wp_attachment_image_alt", "DVR Dahua Smart 1U");
INSERT INTO `wp_postmeta` VALUES("1091", "456", "_wp_attachment_image_alt", "DVR Dahua Smart 1U");
INSERT INTO `wp_postmeta` VALUES("1092", "320", "_yoast_wpseo_metadesc", "Dahua Smart 1U | CCTV | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1093", "315", "_edit_lock", "1483307664:1");
INSERT INTO `wp_postmeta` VALUES("1094", "408", "_wp_attachment_image_alt", "Bullet IP dahua");
INSERT INTO `wp_postmeta` VALUES("1095", "409", "_wp_attachment_image_alt", "Bullet IP dahua");
INSERT INTO `wp_postmeta` VALUES("1096", "315", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1097", "315", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1098", "315", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1099", "312", "_edit_lock", "1483410550:1");
INSERT INTO `wp_postmeta` VALUES("1100", "411", "_wp_attachment_image_alt", "dahua domo IP");
INSERT INTO `wp_postmeta` VALUES("1101", "410", "_wp_attachment_image_alt", "domo dahua IP");
INSERT INTO `wp_postmeta` VALUES("1102", "412", "_wp_attachment_image_alt", "dahua domo IP");
INSERT INTO `wp_postmeta` VALUES("1103", "312", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1104", "312", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1105", "312", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1106", "312", "_wp_old_slug", "camara-bullet-ip-ipchfw1200");
INSERT INTO `wp_postmeta` VALUES("1107", "265", "_edit_lock", "1483308168:1");
INSERT INTO `wp_postmeta` VALUES("1108", "459", "_wp_attachment_image_alt", "Panel Spectra 4000");
INSERT INTO `wp_postmeta` VALUES("1109", "266", "_edit_lock", "1483308855:1");
INSERT INTO `wp_postmeta` VALUES("1110", "467", "_wp_attachment_image_alt", "VIR 727 DLX");
INSERT INTO `wp_postmeta` VALUES("1111", "466", "_wp_attachment_image_alt", "DLX VIR 727");
INSERT INTO `wp_postmeta` VALUES("1112", "464", "_wp_attachment_image_alt", "DLX V727 dLux VIR");
INSERT INTO `wp_postmeta` VALUES("1113", "465", "_wp_attachment_image_alt", "dLUX VIR 727 DLX V727");
INSERT INTO `wp_postmeta` VALUES("1114", "266", "_wp_old_slug", "vir-727");
INSERT INTO `wp_postmeta` VALUES("1115", "299", "_edit_lock", "1483308585:1");
INSERT INTO `wp_postmeta` VALUES("1116", "305", "_edit_lock", "1483308664:1");
INSERT INTO `wp_postmeta` VALUES("1117", "307", "_edit_lock", "1483309207:1");
INSERT INTO `wp_postmeta` VALUES("1118", "403", "_wp_attachment_image_alt", "dahua DVR");
INSERT INTO `wp_postmeta` VALUES("1119", "402", "_wp_attachment_image_alt", "DVR dahua");
INSERT INTO `wp_postmeta` VALUES("1120", "401", "_wp_attachment_image_alt", "Dahua DVR");
INSERT INTO `wp_postmeta` VALUES("1121", "299", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1122", "299", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1123", "299", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1124", "426", "_wp_attachment_image_alt", "NIXT");
INSERT INTO `wp_postmeta` VALUES("1125", "305", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1126", "305", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1127", "305", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1128", "415", "_wp_attachment_image_alt", "dLux IRE23");
INSERT INTO `wp_postmeta` VALUES("1129", "414", "_wp_attachment_image_alt", "dLux IRE23");
INSERT INTO `wp_postmeta` VALUES("1130", "413", "_wp_attachment_image_alt", "dLux IRE23");
INSERT INTO `wp_postmeta` VALUES("1131", "307", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1132", "492", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1133", "492", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1134", "492", "_edit_lock", "1483310538:1");
INSERT INTO `wp_postmeta` VALUES("1190", "496", "_wp_attachment_image_alt", "dahua DVR Mini 1U");
INSERT INTO `wp_postmeta` VALUES("1191", "492", "_thumbnail_id", "496");
INSERT INTO `wp_postmeta` VALUES("1192", "498", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1193", "498", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1194", "498", "_edit_lock", "1483311557:1");
INSERT INTO `wp_postmeta` VALUES("1195", "499", "_wp_attached_file", "2017/01/PCS260_45degrees_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1196", "499", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:32:\"2017/01/PCS260_45degrees_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"PCS260_45degrees_big-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:32:\"PCS260_45degrees_big-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:30:\"PCS260_45degrees_big-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:32:\"PCS260_45degrees_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"PCS260_45degrees_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1138", "494", "_wp_attached_file", "2017/01/dvr0.jpg");
INSERT INTO `wp_postmeta` VALUES("1139", "494", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1012;s:6:\"height\";i:558;s:4:\"file\";s:16:\"2017/01/dvr0.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dvr0-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:\"dvr0-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"dvr0-768x423.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"dvr0-90x50.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"dvr0-325x179.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"dvr0-450x248.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1140", "494", "_wp_attachment_image_alt", "DVR Mini 1U");
INSERT INTO `wp_postmeta` VALUES("1141", "492", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1142", "492", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1144", "492", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1145", "492", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1146", "492", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1147", "492", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1148", "492", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1149", "492", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1150", "492", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1151", "492", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1152", "492", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1153", "492", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1154", "492", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1155", "492", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1156", "492", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1157", "492", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1158", "492", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1159", "492", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1160", "492", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1161", "492", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1162", "492", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1163", "492", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1164", "492", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1165", "492", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1166", "492", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1167", "492", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1168", "492", "_product_image_gallery", "494");
INSERT INTO `wp_postmeta` VALUES("1169", "492", "_yoast_wpseo_primary_product_cat", "13");
INSERT INTO `wp_postmeta` VALUES("1170", "492", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1171", "492", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1172", "492", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1173", "492", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1174", "492", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1175", "492", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1176", "492", "mad_custom_tabs", "a:1:{s:5:\"kuooo\";a:2:{s:21:\"mad_title_product_tab\";s:14:\"Ficha técnica\";s:23:\"mad_content_product_tab\";s:143:\"Para ver la ficha técnica en PDF: <a href=\"http://www1.dahuasecurity.com/download/hcvr4104_4108_4116he-s31.pdf\" target=\"_blank\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1177", "492", "_yoast_wpseo_focuskw_text_input", "mini");
INSERT INTO `wp_postmeta` VALUES("1178", "492", "_yoast_wpseo_focuskw", "mini");
INSERT INTO `wp_postmeta` VALUES("1179", "492", "_yoast_wpseo_metadesc", "DVR dahua Mini 1U| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1180", "492", "_yoast_wpseo_linkdex", "81");
INSERT INTO `wp_postmeta` VALUES("1181", "492", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1182", "492", "_wc_rating_count", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1183", "492", "_wc_average_rating", "0");
INSERT INTO `wp_postmeta` VALUES("1184", "492", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("1188", "496", "_wp_attached_file", "2017/01/Mini1U.jpg");
INSERT INTO `wp_postmeta` VALUES("1189", "496", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2017/01/Mini1U.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Mini1U-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:\"Mini1U-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:16:\"Mini1U-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:18:\"Mini1U-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"Mini1U-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1197", "500", "_wp_attached_file", "2017/01/PCS260_Back_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1198", "500", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:27:\"2017/01/PCS260_Back_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PCS260_Back_big-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:\"PCS260_Back_big-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:25:\"PCS260_Back_big-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:27:\"PCS260_Back_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PCS260_Back_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1199", "501", "_wp_attached_file", "2017/01/PCS260_Front_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1200", "501", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:28:\"2017/01/PCS260_Front_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"PCS260_Front_big-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:\"PCS260_Front_big-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:26:\"PCS260_Front_big-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:28:\"PCS260_Front_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"PCS260_Front_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1201", "502", "_wp_attached_file", "2017/01/PCS260_Side_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1202", "502", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:27:\"2017/01/PCS260_Side_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PCS260_Side_big-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:\"PCS260_Side_big-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:25:\"PCS260_Side_big-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:27:\"PCS260_Side_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PCS260_Side_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1203", "500", "_wp_attachment_image_alt", "PCS260 4G");
INSERT INTO `wp_postmeta` VALUES("1204", "499", "_wp_attachment_image_alt", "PCS260 4G");
INSERT INTO `wp_postmeta` VALUES("1205", "501", "_wp_attachment_image_alt", "PCS260 4G Paradox");
INSERT INTO `wp_postmeta` VALUES("1206", "502", "_wp_attachment_image_alt", "4G PCS260 Paradox module");
INSERT INTO `wp_postmeta` VALUES("1207", "498", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1208", "498", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1209", "498", "_thumbnail_id", "501");
INSERT INTO `wp_postmeta` VALUES("1210", "498", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1211", "498", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1212", "498", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1213", "498", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1214", "498", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1215", "498", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1216", "498", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1217", "498", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1218", "498", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1219", "498", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1220", "498", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1221", "498", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1222", "498", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1223", "498", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1224", "498", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1225", "498", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1226", "498", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1227", "498", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1228", "498", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1229", "498", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1230", "498", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1231", "498", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1232", "498", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1233", "498", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1234", "498", "_product_image_gallery", "499,500,501,502");
INSERT INTO `wp_postmeta` VALUES("1235", "498", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1236", "498", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1237", "498", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1238", "498", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1239", "498", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1240", "498", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1241", "498", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1242", "498", "mad_custom_tabs", "a:1:{s:5:\"rxslp\";a:2:{s:21:\"mad_title_product_tab\";s:15:\"Ficha técnica:\";s:23:\"mad_content_product_tab\";s:83:\"Para ver el PDF: <a href=\"http://www.paradox.com/Downloader?ID=7710\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1243", "498", "_yoast_wpseo_focuskw_text_input", "PCS260");
INSERT INTO `wp_postmeta` VALUES("1244", "498", "_yoast_wpseo_focuskw", "PCS260");
INSERT INTO `wp_postmeta` VALUES("1245", "498", "_yoast_wpseo_metadesc", "PCS260 Módulo 4G para alarma paradox | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1246", "498", "_yoast_wpseo_linkdex", "67");
INSERT INTO `wp_postmeta` VALUES("1247", "498", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("1248", "498", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("1249", "503", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1250", "503", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1251", "503", "_edit_lock", "1483324492:1");
INSERT INTO `wp_postmeta` VALUES("1252", "504", "_wp_attached_file", "2017/01/NV780MR_45degrees_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1253", "504", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:33:\"2017/01/NV780MR_45degrees_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"NV780MR_45degrees_big-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:\"NV780MR_45degrees_big-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:31:\"NV780MR_45degrees_big-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:33:\"NV780MR_45degrees_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"NV780MR_45degrees_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1254", "505", "_wp_attached_file", "2017/01/NV780MR_Front_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1255", "505", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:29:\"2017/01/NV780MR_Front_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"NV780MR_Front_big-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:\"NV780MR_Front_big-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:27:\"NV780MR_Front_big-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:29:\"NV780MR_Front_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"NV780MR_Front_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1256", "506", "_wp_attached_file", "2017/01/NV780MR_Side_big.jpg");
INSERT INTO `wp_postmeta` VALUES("1257", "506", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:28:\"2017/01/NV780MR_Side_big.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"NV780MR_Side_big-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:\"NV780MR_Side_big-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:26:\"NV780MR_Side_big-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:28:\"NV780MR_Side_big-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"NV780MR_Side_big-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1258", "506", "_wp_attachment_image_alt", "NV780MR");
INSERT INTO `wp_postmeta` VALUES("1259", "505", "_wp_attachment_image_alt", "NV780MR");
INSERT INTO `wp_postmeta` VALUES("1260", "504", "_wp_attachment_image_alt", "NV780MR");
INSERT INTO `wp_postmeta` VALUES("1261", "503", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1262", "503", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1263", "503", "_thumbnail_id", "504");
INSERT INTO `wp_postmeta` VALUES("1264", "503", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1265", "503", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1266", "503", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1267", "503", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1268", "503", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1269", "503", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1270", "503", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1271", "503", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1272", "503", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1273", "503", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1274", "503", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1275", "503", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1276", "503", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1277", "503", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1278", "503", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1279", "503", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1280", "503", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1281", "503", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1282", "503", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1283", "503", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1284", "503", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1285", "503", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1286", "503", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1287", "503", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1288", "503", "_product_image_gallery", "505,506");
INSERT INTO `wp_postmeta` VALUES("1289", "503", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1290", "503", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1291", "503", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1292", "503", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1293", "503", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1294", "503", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1295", "503", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1296", "503", "mad_custom_tabs", "a:2:{s:5:\"tsfpo\";a:2:{s:21:\"mad_title_product_tab\";s:14:\"Ficha técnica\";s:23:\"mad_content_product_tab\";s:99:\"Para ver un PDF: <a href=\"http://www.paradox.com/Downloader?ID=7614\" target=\"_blank\">clic aquí</a>\";}s:5:\"elbtv\";a:2:{s:21:\"mad_title_product_tab\";s:5:\"VIdeo\";s:23:\"mad_content_product_tab\";s:122:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/k971DUwPnbQ\" frameborder=\"0\" allowfullscreen></iframe>\";}}");
INSERT INTO `wp_postmeta` VALUES("1297", "503", "_yoast_wpseo_focuskw_text_input", "NV780MR");
INSERT INTO `wp_postmeta` VALUES("1298", "503", "_yoast_wpseo_focuskw", "NV780MR");
INSERT INTO `wp_postmeta` VALUES("1299", "503", "_yoast_wpseo_metadesc", "NV780MR paradox sensor movimiento | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1300", "503", "_yoast_wpseo_linkdex", "72");
INSERT INTO `wp_postmeta` VALUES("1301", "503", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1302", "503", "_wc_review_count", "0");
INSERT INTO `wp_postmeta` VALUES("2510", "526", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.5661312115298;s:5:\"bytes\";i:5271;s:11:\"size_before\";i:13322;s:10:\"size_after\";i:8051;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999;s:5:\"bytes\";i:303;s:11:\"size_before\";i:4086;s:10:\"size_after\";i:3783;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000001;s:5:\"bytes\";i:172;s:11:\"size_before\";i:1947;s:10:\"size_after\";i:1775;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.799999999999997;s:5:\"bytes\";i:4796;s:11:\"size_before\";i:7289;s:10:\"size_after\";i:2493;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2511", "525", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.10254621555633;s:5:\"bytes\";i:5462;s:11:\"size_before\";i:14335;s:10:\"size_after\";i:8873;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2100000000000009;s:5:\"bytes\";i:357;s:11:\"size_before\";i:4346;s:10:\"size_after\";i:3989;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07;s:5:\"bytes\";i:231;s:11:\"size_before\";i:2294;s:10:\"size_after\";i:2063;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.340000000000003;s:5:\"bytes\";i:4874;s:11:\"size_before\";i:7695;s:10:\"size_after\";i:2821;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2509", "527", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.952153110047846;s:5:\"bytes\";i:5177;s:11:\"size_before\";i:12958;s:10:\"size_after\";i:7781;s:4:\"time\";d:0.080000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0700000000000003;s:5:\"bytes\";i:353;s:11:\"size_before\";i:3890;s:10:\"size_after\";i:3537;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000008;s:5:\"bytes\";i:156;s:11:\"size_before\";i:1920;s:10:\"size_after\";i:1764;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.299999999999997;s:5:\"bytes\";i:4668;s:11:\"size_before\";i:7148;s:10:\"size_after\";i:2480;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2508", "528", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:41.256646446491423;s:5:\"bytes\";i:5509;s:11:\"size_before\";i:13353;s:10:\"size_after\";i:7844;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992;s:5:\"bytes\";i:320;s:11:\"size_before\";i:3940;s:10:\"size_after\";i:3620;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999998;s:5:\"bytes\";i:181;s:11:\"size_before\";i:1954;s:10:\"size_after\";i:1773;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.140000000000001;s:5:\"bytes\";i:5008;s:11:\"size_before\";i:7459;s:10:\"size_after\";i:2451;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2507", "529", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:51.745797154997234;s:5:\"bytes\";i:5602;s:11:\"size_before\";i:10826;s:10:\"size_after\";i:5224;s:4:\"time\";d:0.080000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.15;s:5:\"bytes\";i:252;s:11:\"size_before\";i:2482;s:10:\"size_after\";i:2230;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:161;s:11:\"size_before\";i:1501;s:10:\"size_after\";i:1340;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.829999999999998;s:5:\"bytes\";i:5189;s:11:\"size_before\";i:6843;s:10:\"size_after\";i:1654;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2506", "530", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.386113775547848;s:5:\"bytes\";i:5338;s:11:\"size_before\";i:13553;s:10:\"size_after\";i:8215;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:316;s:11:\"size_before\";i:3950;s:10:\"size_after\";i:3634;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994;s:5:\"bytes\";i:196;s:11:\"size_before\";i:2212;s:10:\"size_after\";i:2016;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.299999999999997;s:5:\"bytes\";i:4826;s:11:\"size_before\";i:7391;s:10:\"size_after\";i:2565;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2505", "531", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:57.170131523122613;s:5:\"bytes\";i:5390;s:11:\"size_before\";i:9428;s:10:\"size_after\";i:4038;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.529999999999999;s:5:\"bytes\";i:296;s:11:\"size_before\";i:1906;s:10:\"size_after\";i:1610;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.789999999999999;s:5:\"bytes\";i:177;s:11:\"size_before\";i:1384;s:10:\"size_after\";i:1207;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:80.109999999999999;s:5:\"bytes\";i:4917;s:11:\"size_before\";i:6138;s:10:\"size_after\";i:1221;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2504", "532", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:48.997630763623107;s:5:\"bytes\";i:5377;s:11:\"size_before\";i:10974;s:10:\"size_after\";i:5597;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000005;s:5:\"bytes\";i:256;s:11:\"size_before\";i:2751;s:10:\"size_after\";i:2495;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992;s:5:\"bytes\";i:130;s:11:\"size_before\";i:1508;s:10:\"size_after\";i:1378;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.329999999999998;s:5:\"bytes\";i:4991;s:11:\"size_before\";i:6715;s:10:\"size_after\";i:1724;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2502", "553", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.528212465349192;s:5:\"bytes\";i:19260;s:11:\"size_before\";i:89464;s:10:\"size_after\";i:70204;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8499999999999996;s:5:\"bytes\";i:254;s:11:\"size_before\";i:3707;s:10:\"size_after\";i:3453;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8399999999999999;s:5:\"bytes\";i:536;s:11:\"size_before\";i:9174;s:10:\"size_after\";i:8638;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8300000000000001;s:5:\"bytes\";i:145;s:11:\"size_before\";i:2122;s:10:\"size_after\";i:1977;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7300000000000004;s:5:\"bytes\";i:691;s:11:\"size_before\";i:10265;s:10:\"size_after\";i:9574;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4400000000000004;s:5:\"bytes\";i:1243;s:11:\"size_before\";i:16714;s:10:\"size_after\";i:15471;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.520000000000003;s:5:\"bytes\";i:16391;s:11:\"size_before\";i:47482;s:10:\"size_after\";i:31091;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2503", "533", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:40.591995553085049;s:5:\"bytes\";i:5842;s:11:\"size_before\";i:14392;s:10:\"size_after\";i:8550;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.109999999999999;s:5:\"bytes\";i:430;s:11:\"size_before\";i:4254;s:10:\"size_after\";i:3824;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7100000000000009;s:5:\"bytes\";i:217;s:11:\"size_before\";i:2234;s:10:\"size_after\";i:2017;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.730000000000004;s:5:\"bytes\";i:5195;s:11:\"size_before\";i:7904;s:10:\"size_after\";i:2709;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("1350", "522", "_wp_attached_file", "2016/12/altronix-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1351", "522", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/altronix-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"altronix-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"altronix-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1352", "523", "_wp_attached_file", "2016/12/axis-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1353", "523", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2016/12/axis-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"axis-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"axis-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1354", "524", "_wp_attached_file", "2016/12/belkin-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1355", "524", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2016/12/belkin-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"belkin-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"belkin-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1356", "525", "_wp_attached_file", "2016/12/dahua-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1357", "525", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2016/12/dahua-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dahua-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"dahua-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609645\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1358", "526", "_wp_attached_file", "2016/12/dlux-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1359", "526", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2016/12/dlux-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"dlux-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"dlux-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1360", "527", "_wp_attached_file", "2016/12/enforcer-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1361", "527", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/enforcer-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"enforcer-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"enforcer-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1362", "528", "_wp_attached_file", "2016/12/linksys-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1363", "528", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/linksys-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"linksys-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"linksys-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1364", "529", "_wp_attached_file", "2016/12/magellan-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1365", "529", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2016/12/magellan-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"magellan-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"magellan-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1366", "530", "_wp_attached_file", "2016/12/optex-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1367", "530", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2016/12/optex-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"optex-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"optex-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452279793\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1368", "531", "_wp_attached_file", "2016/12/paradox-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1369", "531", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/paradox-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"paradox-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"paradox-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445610014\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1370", "532", "_wp_attached_file", "2016/12/spectra-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1371", "532", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2016/12/spectra-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"spectra-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"spectra-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1372", "533", "_wp_attached_file", "2016/12/wd-2.jpeg");
INSERT INTO `wp_postmeta` VALUES("1373", "533", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:165;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2016/12/wd-2.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"wd-2-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"wd-2-90x44.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445609491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1374", "38", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1375", "38", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1376", "481", "_wp_attachment_image_alt", "SANDI SEGURIDAD ELECTRONICA");
INSERT INTO `wp_postmeta` VALUES("1377", "480", "_wp_attachment_image_alt", "SEGURIDAD ELECTRONICA SANDI");
INSERT INTO `wp_postmeta` VALUES("1378", "534", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1379", "534", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1380", "534", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1381", "423", "_wp_attachment_image_alt", "Teclado K636");
INSERT INTO `wp_postmeta` VALUES("1382", "424", "_wp_attachment_image_alt", "Teclado k636");
INSERT INTO `wp_postmeta` VALUES("1383", "534", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1384", "534", "_edit_lock", "1483323712:1");
INSERT INTO `wp_postmeta` VALUES("1385", "534", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1386", "534", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1387", "534", "_thumbnail_id", "424");
INSERT INTO `wp_postmeta` VALUES("1388", "534", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1389", "534", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1390", "534", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1391", "534", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1392", "534", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1393", "534", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1394", "534", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1395", "534", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1396", "534", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1397", "534", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1398", "534", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1399", "534", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1400", "534", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1401", "534", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1402", "534", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1403", "534", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1404", "534", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1405", "534", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1406", "534", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1407", "534", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1408", "534", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1409", "534", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1410", "534", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1411", "534", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1412", "534", "_product_image_gallery", "423");
INSERT INTO `wp_postmeta` VALUES("1413", "534", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1414", "534", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1415", "534", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1416", "534", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1417", "534", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1418", "534", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1419", "534", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1420", "534", "mad_custom_tabs", "a:1:{s:5:\"dqdts\";a:2:{s:21:\"mad_title_product_tab\";s:14:\"Ficha técnica\";s:23:\"mad_content_product_tab\";s:89:\"Para descargar en PDF: <a href=\"http://www.paradox.com/Downloader/?ID=809\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1421", "534", "_yoast_wpseo_focuskw_text_input", "K636");
INSERT INTO `wp_postmeta` VALUES("1422", "534", "_yoast_wpseo_focuskw", "K636");
INSERT INTO `wp_postmeta` VALUES("1423", "534", "_yoast_wpseo_metadesc", "Teclado K636 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1424", "534", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("1425", "534", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1426", "535", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1427", "535", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1428", "535", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1429", "503", "_pagefrog_fbia_status", "1");
INSERT INTO `wp_postmeta` VALUES("1430", "503", "_pagefrog_amp_status", "1");
INSERT INTO `wp_postmeta` VALUES("1431", "535", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1432", "535", "_edit_lock", "1483325188:1");
INSERT INTO `wp_postmeta` VALUES("1433", "535", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1434", "535", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1435", "535", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1436", "535", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1437", "535", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1438", "535", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1439", "535", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1440", "535", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1441", "535", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1442", "535", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1443", "535", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1444", "535", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1445", "535", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1446", "535", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1447", "535", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1448", "535", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1449", "535", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1450", "535", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1451", "535", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1452", "535", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1453", "535", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1454", "535", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1455", "535", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1456", "535", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1457", "535", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1458", "535", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1459", "535", "_product_image_gallery", "462,461");
INSERT INTO `wp_postmeta` VALUES("1460", "535", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1461", "535", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1462", "535", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1463", "535", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1464", "535", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1465", "535", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1466", "535", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1467", "535", "mad_custom_tabs", "a:2:{s:5:\"owbhi\";a:2:{s:21:\"mad_title_product_tab\";s:5:\"Video\";s:23:\"mad_content_product_tab\";s:122:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/DaZVeEZ2w9s\" frameborder=\"0\" allowfullscreen></iframe>\";}s:5:\"qnlrf\";a:2:{s:21:\"mad_title_product_tab\";s:22:\"Demostración virtual \";s:23:\"mad_content_product_tab\";s:140:\"<a href=\"http://www.paradox.com/flash/TM50DemoMGSPWithPresentation3D.swf\" target=\"_blank\">CLIC EN ESTE ENLACE PARA ABRIR TECLADO VIRTUAL</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1468", "535", "_yoast_wpseo_focuskw_text_input", "TM50");
INSERT INTO `wp_postmeta` VALUES("1469", "535", "_yoast_wpseo_focuskw", "TM50");
INSERT INTO `wp_postmeta` VALUES("1470", "535", "_yoast_wpseo_linkdex", "71");
INSERT INTO `wp_postmeta` VALUES("1471", "535", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1472", "460", "_wp_attachment_image_alt", "Teclado tactil tm50 paradox");
INSERT INTO `wp_postmeta` VALUES("1473", "462", "_wp_attachment_image_alt", "teclado tactil paradox tm50");
INSERT INTO `wp_postmeta` VALUES("1474", "461", "_wp_attachment_image_alt", "teclado tactil paradox tm50");
INSERT INTO `wp_postmeta` VALUES("1475", "535", "_thumbnail_id", "460");
INSERT INTO `wp_postmeta` VALUES("1476", "535", "_yoast_wpseo_metadesc", "Teclado táctil Paradox TM50 Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1477", "536", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1478", "536", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1479", "536", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1480", "536", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1481", "536", "_edit_lock", "1483328244:1");
INSERT INTO `wp_postmeta` VALUES("1482", "416", "_wp_attachment_image_alt", "Teclado K10V");
INSERT INTO `wp_postmeta` VALUES("1483", "417", "_wp_attachment_image_alt", "K10 keyboard teclado paradox");
INSERT INTO `wp_postmeta` VALUES("1484", "536", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1485", "536", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1486", "536", "_thumbnail_id", "416");
INSERT INTO `wp_postmeta` VALUES("1487", "536", "_wp_old_slug", "k10");
INSERT INTO `wp_postmeta` VALUES("1488", "536", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1489", "536", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1490", "536", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1491", "536", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1492", "536", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1493", "536", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1494", "536", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1495", "536", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1496", "536", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1497", "536", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1498", "536", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1499", "536", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1500", "536", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1501", "536", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1502", "536", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1503", "536", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1504", "536", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1505", "536", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1506", "536", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1507", "536", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1508", "536", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1509", "536", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1510", "536", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1511", "536", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1512", "536", "_product_image_gallery", "417");
INSERT INTO `wp_postmeta` VALUES("1513", "536", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1514", "536", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1515", "536", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1516", "536", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1517", "536", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1518", "536", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1519", "536", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1520", "536", "mad_custom_tabs", "a:1:{s:5:\"ldzpo\";a:2:{s:21:\"mad_title_product_tab\";s:23:\"Manual de programación\";s:23:\"mad_content_product_tab\";s:79:\"<a href=\"http://www.paradox.com/Downloader?ID=3158\">Descargar manual en PDF</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1521", "536", "_yoast_wpseo_focuskw_text_input", "k10");
INSERT INTO `wp_postmeta` VALUES("1522", "536", "_yoast_wpseo_focuskw", "k10");
INSERT INTO `wp_postmeta` VALUES("1523", "536", "_yoast_wpseo_metadesc", "K10 teclado paradox | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1524", "536", "_yoast_wpseo_linkdex", "52");
INSERT INTO `wp_postmeta` VALUES("1525", "536", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1526", "537", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1527", "537", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1528", "537", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1529", "537", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1530", "537", "_edit_lock", "1483328703:1");
INSERT INTO `wp_postmeta` VALUES("1531", "418", "_wp_attachment_image_alt", "K32 teclado paradox");
INSERT INTO `wp_postmeta` VALUES("1532", "419", "_wp_attachment_image_alt", "Teclado K32");
INSERT INTO `wp_postmeta` VALUES("1533", "420", "_wp_attachment_image_alt", "Teclado K32");
INSERT INTO `wp_postmeta` VALUES("1534", "537", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1535", "537", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1536", "537", "_thumbnail_id", "418");
INSERT INTO `wp_postmeta` VALUES("1537", "537", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1538", "537", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1539", "537", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1540", "537", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1541", "537", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1542", "537", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1543", "537", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1544", "537", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1545", "537", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1546", "537", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1547", "537", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1548", "537", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1549", "537", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1550", "537", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1551", "537", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1552", "537", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1553", "537", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1554", "537", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1555", "537", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1556", "537", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1557", "537", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1558", "537", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1559", "537", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1560", "537", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1561", "537", "_product_image_gallery", "420,419");
INSERT INTO `wp_postmeta` VALUES("1562", "537", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1563", "537", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1564", "537", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1565", "537", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1566", "537", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1567", "537", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1568", "537", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1569", "537", "mad_custom_tabs", "a:2:{s:5:\"qjsec\";a:2:{s:21:\"mad_title_product_tab\";s:22:\"Gúi de inicio rápido\";s:23:\"mad_content_product_tab\";s:88:\"<a href=\"http://www.paradox.com/Downloader?ID=6727\">Clic aquí para descargar en PDF</a>\";}s:5:\"elnwr\";a:2:{s:21:\"mad_title_product_tab\";s:0:\"\";s:23:\"mad_content_product_tab\";s:0:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1570", "537", "_yoast_wpseo_focuskw_text_input", "K32");
INSERT INTO `wp_postmeta` VALUES("1571", "537", "_yoast_wpseo_focuskw", "K32");
INSERT INTO `wp_postmeta` VALUES("1572", "537", "_yoast_wpseo_metadesc", "Teclado K32 paradox | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1573", "537", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("1574", "537", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1575", "538", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1576", "538", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1577", "538", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1578", "538", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1579", "538", "_edit_lock", "1483329024:1");
INSERT INTO `wp_postmeta` VALUES("1580", "425", "_wp_attachment_image_alt", "magellan MG5050 panel paradox");
INSERT INTO `wp_postmeta` VALUES("1581", "538", "_oembed_703e797a7093da7a27c2bb548022c8c2", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("1582", "538", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1583", "538", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1584", "538", "_thumbnail_id", "425");
INSERT INTO `wp_postmeta` VALUES("1585", "538", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1586", "538", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1587", "538", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1588", "538", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1589", "538", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1590", "538", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1591", "538", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1592", "538", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1593", "538", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1594", "538", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1595", "538", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1596", "538", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1597", "538", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1598", "538", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1599", "538", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1600", "538", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1601", "538", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1602", "538", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1603", "538", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1604", "538", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1605", "538", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1606", "538", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1607", "538", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1608", "538", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1609", "538", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("1610", "538", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1611", "538", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1612", "538", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1613", "538", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1614", "538", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1615", "538", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1616", "538", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1617", "538", "mad_custom_tabs", "a:1:{s:5:\"fxrcd\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:103:\"para descargar el manual de usuario: <a href=\"http://www.paradox.com/Downloader?ID=3158\">Clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1618", "538", "_yoast_wpseo_focuskw_text_input", "MG5050");
INSERT INTO `wp_postmeta` VALUES("1619", "538", "_yoast_wpseo_focuskw", "MG5050");
INSERT INTO `wp_postmeta` VALUES("1620", "538", "_yoast_wpseo_metadesc", "Magellan MG5050 paradox panel | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1621", "538", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("1622", "538", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1623", "539", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1624", "539", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1625", "539", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1626", "539", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1627", "539", "_edit_lock", "1483329500:1");
INSERT INTO `wp_postmeta` VALUES("1628", "445", "_wp_attachment_image_alt", "Control remoto paradox Rem 3");
INSERT INTO `wp_postmeta` VALUES("1629", "444", "_wp_attachment_image_alt", "paradox REM 3Paradox control remoto");
INSERT INTO `wp_postmeta` VALUES("1630", "439", "_wp_attachment_image_alt", "Control remoto Paradox Rem 3");
INSERT INTO `wp_postmeta` VALUES("1631", "539", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1632", "539", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1633", "539", "_thumbnail_id", "445");
INSERT INTO `wp_postmeta` VALUES("1634", "539", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1635", "539", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1636", "539", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1637", "539", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1638", "539", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1639", "539", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1640", "539", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1641", "539", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1642", "539", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1643", "539", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1644", "539", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1645", "539", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1646", "539", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1647", "539", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1648", "539", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1649", "539", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1650", "539", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1651", "539", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1652", "539", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1653", "539", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1654", "539", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1655", "539", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1656", "539", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1657", "539", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1658", "539", "_product_image_gallery", "439,444");
INSERT INTO `wp_postmeta` VALUES("1659", "539", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1660", "539", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1661", "539", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1662", "539", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1663", "539", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1664", "539", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1665", "539", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1666", "539", "mad_custom_tabs", "a:1:{s:5:\"gkqsh\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:88:\"para descargar el PDF: <a href=\"http://www.paradox.com/Downloader?ID=932\">Clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1667", "539", "_yoast_wpseo_focuskw_text_input", "REM3");
INSERT INTO `wp_postmeta` VALUES("1668", "539", "_yoast_wpseo_focuskw", "REM3");
INSERT INTO `wp_postmeta` VALUES("1669", "539", "_yoast_wpseo_metadesc", "Control remoto REM 3 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1670", "539", "_yoast_wpseo_linkdex", "46");
INSERT INTO `wp_postmeta` VALUES("1671", "539", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1672", "540", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1673", "540", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1674", "540", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1675", "448", "_wp_attachment_image_alt", "Control Remoto REM15");
INSERT INTO `wp_postmeta` VALUES("1676", "447", "_wp_attachment_image_alt", "Control remoto REM15");
INSERT INTO `wp_postmeta` VALUES("1677", "446", "_wp_attachment_image_alt", "Control remoto REM 15");
INSERT INTO `wp_postmeta` VALUES("1678", "540", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1679", "540", "_edit_lock", "1483329800:1");
INSERT INTO `wp_postmeta` VALUES("1680", "540", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1681", "540", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1682", "540", "_thumbnail_id", "448");
INSERT INTO `wp_postmeta` VALUES("1683", "540", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1684", "540", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1685", "540", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1686", "540", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1687", "540", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1688", "540", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1689", "540", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1690", "540", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1691", "540", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1692", "540", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1693", "540", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1694", "540", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1695", "540", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1696", "540", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1697", "540", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1698", "540", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1699", "540", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1700", "540", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1701", "540", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1702", "540", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1703", "540", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1704", "540", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1705", "540", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1706", "540", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1707", "540", "_product_image_gallery", "446,447");
INSERT INTO `wp_postmeta` VALUES("1708", "540", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1709", "540", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1710", "540", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1711", "540", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1712", "540", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1713", "540", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1714", "540", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1715", "540", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("1716", "540", "_yoast_wpseo_focuskw_text_input", "REM15");
INSERT INTO `wp_postmeta` VALUES("1717", "540", "_yoast_wpseo_focuskw", "REM15");
INSERT INTO `wp_postmeta` VALUES("1718", "540", "_yoast_wpseo_metadesc", "Control remoto paradox REM15 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1719", "540", "_yoast_wpseo_linkdex", "51");
INSERT INTO `wp_postmeta` VALUES("1720", "540", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1721", "541", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1722", "541", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1723", "541", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1724", "541", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1725", "541", "_edit_lock", "1483330118:1");
INSERT INTO `wp_postmeta` VALUES("1726", "452", "_wp_attachment_image_alt", "REM101 Paradox Control remoto");
INSERT INTO `wp_postmeta` VALUES("1727", "451", "_wp_attachment_image_alt", "Paradox REM101 controlremoto");
INSERT INTO `wp_postmeta` VALUES("1728", "450", "_wp_attachment_image_alt", "paradoxR REM101 Control remoto");
INSERT INTO `wp_postmeta` VALUES("1729", "449", "_wp_attachment_image_alt", "REM101 COntrol remoto Paradox");
INSERT INTO `wp_postmeta` VALUES("1730", "453", "_wp_attachment_image_alt", "Control remoto REM101");
INSERT INTO `wp_postmeta` VALUES("1731", "541", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1732", "541", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1733", "541", "_thumbnail_id", "453");
INSERT INTO `wp_postmeta` VALUES("1734", "541", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1735", "541", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1736", "541", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1737", "541", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1738", "541", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1739", "541", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1740", "541", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1741", "541", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1742", "541", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1743", "541", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1744", "541", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1745", "541", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1746", "541", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1747", "541", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1748", "541", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1749", "541", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1750", "541", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1751", "541", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1752", "541", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1753", "541", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1754", "541", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1755", "541", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1756", "541", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1757", "541", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1758", "541", "_product_image_gallery", "449,452,451,450");
INSERT INTO `wp_postmeta` VALUES("1759", "541", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1760", "541", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1761", "541", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1762", "541", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1763", "541", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1764", "541", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1765", "541", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1766", "541", "mad_custom_tabs", "a:1:{s:5:\"qsplo\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:89:\"para descargar el PDF: <a href=\"http://www.paradox.com/Downloader?ID=5929\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1767", "541", "_yoast_wpseo_focuskw_text_input", "REM101");
INSERT INTO `wp_postmeta` VALUES("1768", "541", "_yoast_wpseo_focuskw", "REM101");
INSERT INTO `wp_postmeta` VALUES("1769", "541", "_yoast_wpseo_metadesc", "Control remoto Paradox REM101 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1770", "541", "_yoast_wpseo_linkdex", "51");
INSERT INTO `wp_postmeta` VALUES("1771", "541", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1772", "542", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1773", "542", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1774", "542", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1775", "542", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1776", "542", "_edit_lock", "1483330701:1");
INSERT INTO `wp_postmeta` VALUES("1777", "433", "_wp_attachment_image_alt", "Sensor PMD2P Paradox");
INSERT INTO `wp_postmeta` VALUES("1778", "431", "_wp_attachment_image_alt", "PMD2P sensor");
INSERT INTO `wp_postmeta` VALUES("1779", "432", "_wp_attachment_image_alt", "Sensor PMD2P");
INSERT INTO `wp_postmeta` VALUES("1780", "542", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1781", "542", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1782", "542", "_thumbnail_id", "433");
INSERT INTO `wp_postmeta` VALUES("1783", "542", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1784", "542", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1785", "542", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1786", "542", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1787", "542", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1788", "542", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1789", "542", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1790", "542", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1791", "542", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1792", "542", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1793", "542", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1794", "542", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1795", "542", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1796", "542", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1797", "542", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1798", "542", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1799", "542", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1800", "542", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1801", "542", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1802", "542", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1803", "542", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1804", "542", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1805", "542", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1806", "542", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1807", "542", "_product_image_gallery", "432,431");
INSERT INTO `wp_postmeta` VALUES("1808", "542", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1809", "542", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1810", "542", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1811", "542", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1812", "542", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1813", "542", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1814", "542", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1815", "542", "mad_custom_tabs", "a:1:{s:5:\"prwiw\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:107:\"para descargar la ficha técnica en PDF: <a href=\"http://www.paradox.com/Downloader?ID=6156\">Clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1816", "542", "_yoast_wpseo_focuskw_text_input", "PMD2P");
INSERT INTO `wp_postmeta` VALUES("1817", "542", "_yoast_wpseo_focuskw", "PMD2P");
INSERT INTO `wp_postmeta` VALUES("1818", "542", "_yoast_wpseo_metadesc", "Sensor de movimiento Paradox PMD2P | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1819", "542", "_yoast_wpseo_linkdex", "60");
INSERT INTO `wp_postmeta` VALUES("1820", "542", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1821", "544", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1822", "544", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1823", "544", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1824", "544", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1825", "544", "_edit_lock", "1483331008:1");
INSERT INTO `wp_postmeta` VALUES("1826", "398", "_wp_attachment_image_alt", "Sensor DG466");
INSERT INTO `wp_postmeta` VALUES("1827", "397", "_wp_attachment_image_alt", "beams DG466 oparadox");
INSERT INTO `wp_postmeta` VALUES("1828", "544", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1829", "544", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1830", "544", "_thumbnail_id", "398");
INSERT INTO `wp_postmeta` VALUES("1831", "544", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1832", "544", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1833", "544", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1834", "544", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1835", "544", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1836", "544", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1837", "544", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1838", "544", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1839", "544", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1840", "544", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1841", "544", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1842", "544", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1843", "544", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1844", "544", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1845", "544", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1846", "544", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1847", "544", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1848", "544", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1849", "544", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1850", "544", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1851", "544", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1852", "544", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1853", "544", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1854", "544", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1855", "544", "_product_image_gallery", "397");
INSERT INTO `wp_postmeta` VALUES("1856", "544", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1857", "544", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1858", "544", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1859", "544", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1860", "544", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1861", "544", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1862", "544", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1863", "544", "mad_custom_tabs", "a:1:{s:5:\"loyix\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:89:\"Para descargar en PDF: <a href=\"http://www.paradox.com/Downloader?ID=1308\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1864", "544", "_yoast_wpseo_focuskw_text_input", "DG466");
INSERT INTO `wp_postmeta` VALUES("1865", "544", "_yoast_wpseo_focuskw", "DG466");
INSERT INTO `wp_postmeta` VALUES("1866", "544", "_yoast_wpseo_metadesc", "Sensor de movimiento Paradox DG466 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1867", "544", "_yoast_wpseo_linkdex", "57");
INSERT INTO `wp_postmeta` VALUES("1868", "544", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1869", "545", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1870", "545", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1871", "545", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1872", "545", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1873", "545", "_edit_lock", "1483331276:1");
INSERT INTO `wp_postmeta` VALUES("1874", "399", "_wp_attachment_image_alt", "DG4667");
INSERT INTO `wp_postmeta` VALUES("1875", "400", "_wp_attachment_image_alt", "Sensor DG67");
INSERT INTO `wp_postmeta` VALUES("1876", "545", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1877", "545", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1878", "545", "_thumbnail_id", "400");
INSERT INTO `wp_postmeta` VALUES("1879", "545", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1880", "545", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1881", "545", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1882", "545", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1883", "545", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1884", "545", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1885", "545", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1886", "545", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1887", "545", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1888", "545", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1889", "545", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1890", "545", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1891", "545", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1892", "545", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1893", "545", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1894", "545", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1895", "545", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1896", "545", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1897", "545", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1898", "545", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1899", "545", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1900", "545", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1901", "545", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1902", "545", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1903", "545", "_product_image_gallery", "399");
INSERT INTO `wp_postmeta` VALUES("1904", "545", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1905", "545", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1906", "545", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1907", "545", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1908", "545", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1909", "545", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1910", "545", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1911", "545", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("1912", "545", "_yoast_wpseo_focuskw_text_input", "DG467");
INSERT INTO `wp_postmeta` VALUES("1913", "545", "_yoast_wpseo_focuskw", "DG467");
INSERT INTO `wp_postmeta` VALUES("1914", "545", "_yoast_wpseo_metadesc", "Sensor de movimiento paradox DG467 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1915", "545", "_yoast_wpseo_linkdex", "52");
INSERT INTO `wp_postmeta` VALUES("1916", "545", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1917", "546", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1918", "546", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1919", "546", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1920", "546", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1921", "546", "_edit_lock", "1483331622:1");
INSERT INTO `wp_postmeta` VALUES("1922", "475", "_wp_attachment_image_alt", "476 PRO Paradox");
INSERT INTO `wp_postmeta` VALUES("1923", "546", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1924", "546", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1925", "546", "_thumbnail_id", "475");
INSERT INTO `wp_postmeta` VALUES("1926", "546", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1927", "546", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1928", "546", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1929", "546", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1930", "546", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1931", "546", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1932", "546", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1933", "546", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1934", "546", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1935", "546", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1936", "546", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1937", "546", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1938", "546", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1939", "546", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1940", "546", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1941", "546", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1942", "546", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1943", "546", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1944", "546", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1945", "546", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1946", "546", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1947", "546", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1948", "546", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1949", "546", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1950", "546", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("1951", "546", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1952", "546", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1953", "546", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("1954", "546", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1955", "546", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("1956", "546", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1957", "546", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("1958", "546", "mad_custom_tabs", "a:1:{s:5:\"qaiif\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:71:\"PDF: <a href=\"http://www.paradox.com/Downloader?ID=1308\">Clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("1959", "546", "_yoast_wpseo_focuskw_text_input", "476");
INSERT INTO `wp_postmeta` VALUES("1960", "546", "_yoast_wpseo_focuskw", "476");
INSERT INTO `wp_postmeta` VALUES("1961", "546", "_yoast_wpseo_metadesc", "476 PRO sensor Paradox | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("1962", "546", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1963", "547", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("1964", "547", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("1965", "547", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("1966", "547", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1967", "547", "_edit_lock", "1483331874:1");
INSERT INTO `wp_postmeta` VALUES("1968", "455", "_wp_attachment_image_alt", "Optex RX40");
INSERT INTO `wp_postmeta` VALUES("1969", "454", "_wp_attachment_image_alt", "RX40 Optex");
INSERT INTO `wp_postmeta` VALUES("1970", "547", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1971", "547", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1972", "547", "_thumbnail_id", "455");
INSERT INTO `wp_postmeta` VALUES("1973", "547", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("1974", "547", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1975", "547", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1976", "547", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1977", "547", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1978", "547", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1979", "547", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1980", "547", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1981", "547", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1982", "547", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1983", "547", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1984", "547", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1985", "547", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1986", "547", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1987", "547", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1988", "547", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1989", "547", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1990", "547", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1991", "547", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1992", "547", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1993", "547", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("1994", "547", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1995", "547", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1996", "547", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("1997", "547", "_product_image_gallery", "454");
INSERT INTO `wp_postmeta` VALUES("1998", "547", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("1999", "547", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2000", "547", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2001", "547", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2002", "547", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2003", "547", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2004", "547", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2005", "547", "mad_custom_tabs", "a:1:{s:5:\"gkatw\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:125:\"Manual de programación: <a href=\"http://www.optexamerica.com/sites/default/files/resource-uploads/RX40pi.pdf\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("2006", "547", "_yoast_wpseo_focuskw_text_input", "RX40");
INSERT INTO `wp_postmeta` VALUES("2007", "547", "_yoast_wpseo_focuskw", "RX40");
INSERT INTO `wp_postmeta` VALUES("2008", "547", "_yoast_wpseo_metadesc", "Optex RX40 Sensor movimiento | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2009", "547", "_yoast_wpseo_linkdex", "57");
INSERT INTO `wp_postmeta` VALUES("2010", "547", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("2011", "548", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2012", "548", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2013", "548", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2014", "548", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2015", "548", "_edit_lock", "1483334691:1");
INSERT INTO `wp_postmeta` VALUES("2252", "553", "_wp_attached_file", "2017/01/pmd85.jpg");
INSERT INTO `wp_postmeta` VALUES("2017", "436", "_wp_attachment_image_alt", "PMD85 SEnsor paradox");
INSERT INTO `wp_postmeta` VALUES("2018", "437", "_wp_attachment_image_alt", "PMD85 Sensor Paradox");
INSERT INTO `wp_postmeta` VALUES("2019", "435", "_wp_attachment_image_alt", "PMD85 Sensor Paradox");
INSERT INTO `wp_postmeta` VALUES("2020", "548", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2021", "548", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2257", "554", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2023", "548", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2024", "548", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2025", "548", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2026", "548", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2027", "548", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2028", "548", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2029", "548", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2030", "548", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2031", "548", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2032", "548", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2033", "548", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2034", "548", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2035", "548", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2036", "548", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2037", "548", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2038", "548", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2039", "548", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2040", "548", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2041", "548", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2042", "548", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2043", "548", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2044", "548", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2045", "548", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2046", "548", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2047", "548", "_product_image_gallery", "437,436,435");
INSERT INTO `wp_postmeta` VALUES("2048", "548", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2049", "548", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2050", "548", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2051", "548", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2052", "548", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2053", "548", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2054", "548", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2055", "548", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2056", "548", "_yoast_wpseo_focuskw_text_input", "PMD85");
INSERT INTO `wp_postmeta` VALUES("2057", "548", "_yoast_wpseo_focuskw", "PMD85");
INSERT INTO `wp_postmeta` VALUES("2058", "548", "_yoast_wpseo_metadesc", "Paradox PMD85 sensor movimiento | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2059", "548", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2060", "548", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2061", "549", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2062", "549", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2063", "549", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2064", "549", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2065", "549", "_edit_lock", "1483332925:1");
INSERT INTO `wp_postmeta` VALUES("2066", "434", "_wp_attachment_image_alt", "sensor PMD75");
INSERT INTO `wp_postmeta` VALUES("2067", "549", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2068", "549", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2069", "549", "_thumbnail_id", "434");
INSERT INTO `wp_postmeta` VALUES("2070", "549", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2071", "549", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2072", "549", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2073", "549", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2074", "549", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2075", "549", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2076", "549", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2077", "549", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2078", "549", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2079", "549", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2080", "549", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2081", "549", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2082", "549", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2083", "549", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2084", "549", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2085", "549", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2086", "549", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2087", "549", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2088", "549", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2089", "549", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2090", "549", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2091", "549", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2092", "549", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2093", "549", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2094", "549", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("2095", "549", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2096", "549", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2097", "549", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2098", "549", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2099", "549", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2100", "549", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2101", "549", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2102", "549", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2103", "549", "_yoast_wpseo_focuskw_text_input", "PMD75");
INSERT INTO `wp_postmeta` VALUES("2104", "549", "_yoast_wpseo_focuskw", "PMD75");
INSERT INTO `wp_postmeta` VALUES("2105", "549", "_yoast_wpseo_metadesc", "Paradox PMD75 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2106", "549", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("2107", "549", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2108", "550", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2109", "550", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2110", "550", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2111", "550", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2112", "550", "_edit_lock", "1483333247:1");
INSERT INTO `wp_postmeta` VALUES("2113", "441", "_wp_attachment_image_alt", "Control remoto paradox REM1");
INSERT INTO `wp_postmeta` VALUES("2114", "440", "_wp_attachment_image_alt", "REM1");
INSERT INTO `wp_postmeta` VALUES("2115", "550", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2116", "550", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2117", "550", "_thumbnail_id", "441");
INSERT INTO `wp_postmeta` VALUES("2118", "550", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2119", "550", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2120", "550", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2121", "550", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2122", "550", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2123", "550", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2124", "550", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2125", "550", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2126", "550", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2127", "550", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2128", "550", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2129", "550", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2130", "550", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2131", "550", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2132", "550", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2133", "550", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2134", "550", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2135", "550", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2136", "550", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2137", "550", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2138", "550", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2139", "550", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2140", "550", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2141", "550", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2142", "550", "_product_image_gallery", "440");
INSERT INTO `wp_postmeta` VALUES("2143", "550", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2144", "550", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2145", "550", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2146", "550", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2147", "550", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2148", "550", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2149", "550", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2150", "550", "mad_custom_tabs", "a:1:{s:5:\"bmisy\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:70:\"PDF: <a href=\"http://www.paradox.com/Downloader?ID=932\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("2151", "550", "_yoast_wpseo_focuskw_text_input", "REM1");
INSERT INTO `wp_postmeta` VALUES("2152", "550", "_yoast_wpseo_focuskw", "REM1");
INSERT INTO `wp_postmeta` VALUES("2153", "550", "_yoast_wpseo_metadesc", "Control remoto Paradox REM1 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2154", "550", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2155", "550", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2156", "551", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2157", "551", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2158", "551", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2159", "551", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2160", "551", "_edit_lock", "1483333310:1");
INSERT INTO `wp_postmeta` VALUES("2161", "442", "_wp_attachment_image_alt", "REM2");
INSERT INTO `wp_postmeta` VALUES("2162", "443", "_wp_attachment_image_alt", "Control remoto REM2");
INSERT INTO `wp_postmeta` VALUES("2163", "551", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2164", "551", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2165", "551", "_thumbnail_id", "443");
INSERT INTO `wp_postmeta` VALUES("2166", "551", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2167", "551", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2168", "551", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2169", "551", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2170", "551", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2171", "551", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2172", "551", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2173", "551", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2174", "551", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2175", "551", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2176", "551", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2177", "551", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2178", "551", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2179", "551", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2180", "551", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2181", "551", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2182", "551", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2183", "551", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2184", "551", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2185", "551", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2186", "551", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2187", "551", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2188", "551", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2189", "551", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2190", "551", "_product_image_gallery", "442");
INSERT INTO `wp_postmeta` VALUES("2191", "551", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2192", "551", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2193", "551", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2194", "551", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2195", "551", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2196", "551", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2197", "551", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2198", "551", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2199", "551", "_yoast_wpseo_focuskw_text_input", "REM2");
INSERT INTO `wp_postmeta` VALUES("2200", "551", "_yoast_wpseo_focuskw", "REM2");
INSERT INTO `wp_postmeta` VALUES("2201", "551", "_yoast_wpseo_metadesc", "Control remoto Paradox REM2 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2202", "551", "_yoast_wpseo_linkdex", "60");
INSERT INTO `wp_postmeta` VALUES("2203", "551", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2204", "552", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2205", "552", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2206", "552", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2207", "552", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2208", "552", "_edit_lock", "1483333551:1");
INSERT INTO `wp_postmeta` VALUES("2209", "422", "_wp_attachment_image_alt", "K37 teclado");
INSERT INTO `wp_postmeta` VALUES("2210", "421", "_wp_attachment_image_alt", "K37");
INSERT INTO `wp_postmeta` VALUES("2211", "552", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2212", "552", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2213", "552", "_thumbnail_id", "422");
INSERT INTO `wp_postmeta` VALUES("2214", "552", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2215", "552", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2216", "552", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2217", "552", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2218", "552", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2219", "552", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2220", "552", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2221", "552", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2222", "552", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2223", "552", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2224", "552", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2225", "552", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2226", "552", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2227", "552", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2228", "552", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2229", "552", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2230", "552", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2231", "552", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2232", "552", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2233", "552", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2234", "552", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2235", "552", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2236", "552", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2237", "552", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2238", "552", "_product_image_gallery", "421");
INSERT INTO `wp_postmeta` VALUES("2239", "552", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2240", "552", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2241", "552", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2242", "552", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2243", "552", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2244", "552", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2245", "552", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2246", "552", "mad_custom_tabs", "a:1:{s:5:\"owmcn\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:71:\"PDF: <a href=\"http://www.paradox.com/Downloader?ID=3158\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("2247", "552", "_yoast_wpseo_focuskw_text_input", "K37");
INSERT INTO `wp_postmeta` VALUES("2248", "552", "_yoast_wpseo_focuskw", "K37");
INSERT INTO `wp_postmeta` VALUES("2249", "552", "_yoast_wpseo_metadesc", "Teclado Paradox . K37 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2250", "552", "_yoast_wpseo_linkdex", "57");
INSERT INTO `wp_postmeta` VALUES("2251", "552", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2258", "554", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2259", "554", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2260", "554", "_edit_lock", "1483335186:1");
INSERT INTO `wp_postmeta` VALUES("2261", "474", "_wp_attachment_image_alt", "2WPGM");
INSERT INTO `wp_postmeta` VALUES("2262", "473", "_wp_attachment_image_alt", "2WPGM");
INSERT INTO `wp_postmeta` VALUES("2263", "554", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2264", "554", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2265", "554", "_thumbnail_id", "474");
INSERT INTO `wp_postmeta` VALUES("2266", "554", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2267", "554", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2268", "554", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2269", "554", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2270", "554", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2271", "554", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2272", "554", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2273", "554", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2274", "554", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2275", "554", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2276", "554", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2277", "554", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2278", "554", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2279", "554", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2280", "554", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2281", "554", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2282", "554", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2283", "554", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2284", "554", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2285", "554", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2286", "554", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2287", "554", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2288", "554", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2289", "554", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2290", "554", "_product_image_gallery", "473");
INSERT INTO `wp_postmeta` VALUES("2291", "554", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2292", "554", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2293", "554", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2294", "554", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2295", "554", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2296", "554", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2297", "554", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2298", "554", "mad_custom_tabs", "a:1:{s:5:\"aspdd\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:87:\"Información en PDF: <a href=\"http://www.paradox.com/Downloader?ID=7515\">Clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("2299", "554", "_yoast_wpseo_focuskw_text_input", "2WPGM");
INSERT INTO `wp_postmeta` VALUES("2300", "554", "_yoast_wpseo_focuskw", "2WPGM");
INSERT INTO `wp_postmeta` VALUES("2301", "554", "_yoast_wpseo_metadesc", "2WPGM inalambrico Paradox | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2302", "554", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2303", "554", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2304", "554", "_oembed_bd797ddb3774a607950b1604bcf04244", "<iframe width=\"1140\" height=\"641\" src=\"https://www.youtube.com/embed/KwfEQY7pb70?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>");
INSERT INTO `wp_postmeta` VALUES("2305", "554", "_oembed_time_bd797ddb3774a607950b1604bcf04244", "1483335300");
INSERT INTO `wp_postmeta` VALUES("2306", "555", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2307", "555", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2308", "555", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2309", "555", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2310", "555", "_edit_lock", "1483335419:1");
INSERT INTO `wp_postmeta` VALUES("2311", "407", "_wp_attachment_image_alt", "Ruptura G550");
INSERT INTO `wp_postmeta` VALUES("2312", "406", "_wp_attachment_image_alt", "G550");
INSERT INTO `wp_postmeta` VALUES("2313", "555", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2314", "555", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2315", "555", "_thumbnail_id", "407");
INSERT INTO `wp_postmeta` VALUES("2316", "555", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2317", "555", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2318", "555", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2319", "555", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2320", "555", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2321", "555", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2322", "555", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2323", "555", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2324", "555", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2325", "555", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2326", "555", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2327", "555", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2328", "555", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2329", "555", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2330", "555", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2331", "555", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2332", "555", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2333", "555", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2334", "555", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2335", "555", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2336", "555", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2337", "555", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2338", "555", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2339", "555", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2340", "555", "_product_image_gallery", "406");
INSERT INTO `wp_postmeta` VALUES("2341", "555", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2342", "555", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2343", "555", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2344", "555", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2345", "555", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2346", "555", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2347", "555", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2348", "555", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2349", "555", "_yoast_wpseo_focuskw_text_input", "G550");
INSERT INTO `wp_postmeta` VALUES("2350", "555", "_yoast_wpseo_focuskw", "G550");
INSERT INTO `wp_postmeta` VALUES("2351", "555", "_yoast_wpseo_metadesc", "Sensor ruptura de cristal Paradox G550 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2352", "555", "_yoast_wpseo_linkdex", "60");
INSERT INTO `wp_postmeta` VALUES("2353", "555", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2354", "556", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2355", "556", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2356", "556", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2357", "556", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2358", "556", "_edit_lock", "1483335669:1");
INSERT INTO `wp_postmeta` VALUES("2359", "556", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2360", "556", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2361", "556", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2362", "556", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2363", "556", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2364", "556", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2365", "556", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2366", "556", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2367", "556", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2368", "556", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2369", "556", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2370", "556", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2371", "556", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2372", "556", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2373", "556", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2374", "556", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2375", "556", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2376", "556", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2377", "556", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2378", "556", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2379", "556", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2380", "556", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2381", "556", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2382", "556", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2383", "556", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2384", "556", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2385", "556", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("2386", "556", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("2387", "556", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2388", "556", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2389", "556", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2390", "556", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2391", "556", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2392", "556", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2393", "556", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2394", "556", "_yoast_wpseo_focuskw_text_input", "VDMP3");
INSERT INTO `wp_postmeta` VALUES("2395", "556", "_yoast_wpseo_focuskw", "VDMP3");
INSERT INTO `wp_postmeta` VALUES("2396", "556", "_yoast_wpseo_metadesc", "Paradox VDMP3 modulo comunicador telef | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2397", "556", "_yoast_wpseo_linkdex", "72");
INSERT INTO `wp_postmeta` VALUES("2398", "556", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2399", "463", "_wp_attachment_image_alt", "VDMP3 Paradox");
INSERT INTO `wp_postmeta` VALUES("2400", "556", "_thumbnail_id", "463");
INSERT INTO `wp_postmeta` VALUES("2401", "557", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2402", "557", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2403", "557", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2404", "557", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2405", "557", "_edit_lock", "1483336017:1");
INSERT INTO `wp_postmeta` VALUES("2406", "469", "_wp_attachment_image_alt", "Western Digital Purple");
INSERT INTO `wp_postmeta` VALUES("2407", "468", "_wp_attachment_image_alt", "WD HDD");
INSERT INTO `wp_postmeta` VALUES("2408", "557", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2409", "557", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2410", "557", "_thumbnail_id", "469");
INSERT INTO `wp_postmeta` VALUES("2411", "557", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2412", "557", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2413", "557", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2414", "557", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2415", "557", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2416", "557", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2417", "557", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2418", "557", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2419", "557", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2420", "557", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2421", "557", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2422", "557", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2423", "557", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2424", "557", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2425", "557", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2426", "557", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2427", "557", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2428", "557", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2429", "557", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2430", "557", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2431", "557", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2432", "557", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2433", "557", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2434", "557", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2435", "557", "_product_image_gallery", "468");
INSERT INTO `wp_postmeta` VALUES("2436", "557", "_yoast_wpseo_primary_product_cat", "13");
INSERT INTO `wp_postmeta` VALUES("2437", "557", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2438", "557", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2439", "557", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2440", "557", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2441", "557", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2442", "557", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2443", "557", "mad_custom_tabs", "a:1:{s:5:\"tfcoj\";a:2:{s:21:\"mad_title_product_tab\";s:5:\"Video\";s:23:\"mad_content_product_tab\";s:122:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/RpgS6wTfAQ4\" frameborder=\"0\" allowfullscreen></iframe>\";}}");
INSERT INTO `wp_postmeta` VALUES("2444", "557", "_yoast_wpseo_focuskw_text_input", "WD");
INSERT INTO `wp_postmeta` VALUES("2445", "557", "_yoast_wpseo_focuskw", "WD");
INSERT INTO `wp_postmeta` VALUES("2446", "557", "_yoast_wpseo_metadesc", "Western Digital Purple disco duro para CCTV y servidores | Seguridad Electrónica Sandí PZ, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV.");
INSERT INTO `wp_postmeta` VALUES("2447", "557", "_yoast_wpseo_linkdex", "83");
INSERT INTO `wp_postmeta` VALUES("2448", "557", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2449", "558", "_pagefrog_fbia_status", "0");
INSERT INTO `wp_postmeta` VALUES("2450", "558", "_pagefrog_amp_status", "0");
INSERT INTO `wp_postmeta` VALUES("2451", "558", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2452", "558", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2453", "558", "_edit_lock", "1483336457:1");
INSERT INTO `wp_postmeta` VALUES("2454", "472", "_wp_attachment_image_alt", "WS588P detector");
INSERT INTO `wp_postmeta` VALUES("2455", "470", "_wp_attachment_image_alt", "WS588P");
INSERT INTO `wp_postmeta` VALUES("2456", "471", "_wp_attachment_image_alt", "WS588P humo");
INSERT INTO `wp_postmeta` VALUES("2457", "558", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2458", "558", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2459", "558", "_thumbnail_id", "472");
INSERT INTO `wp_postmeta` VALUES("2460", "558", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2461", "558", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2462", "558", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2463", "558", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2464", "558", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2465", "558", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2466", "558", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2467", "558", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2468", "558", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2469", "558", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2470", "558", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2471", "558", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2472", "558", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2473", "558", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2474", "558", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2475", "558", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2476", "558", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2477", "558", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2478", "558", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2479", "558", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2480", "558", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2481", "558", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2482", "558", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2483", "558", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2484", "558", "_product_image_gallery", "471,470");
INSERT INTO `wp_postmeta` VALUES("2485", "558", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2486", "558", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2487", "558", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2488", "558", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2489", "558", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2490", "558", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2491", "558", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2492", "558", "mad_custom_tabs", "a:1:{s:5:\"nuysw\";a:2:{s:21:\"mad_title_product_tab\";s:6:\"Manual\";s:23:\"mad_content_product_tab\";s:88:\"Ficha técnica en PDF:<a href=\"http://www.paradox.com/Downloader?ID=5098\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("2493", "558", "_yoast_wpseo_focuskw_text_input", "WS588P");
INSERT INTO `wp_postmeta` VALUES("2494", "558", "_yoast_wpseo_focuskw", "WS588P");
INSERT INTO `wp_postmeta` VALUES("2495", "558", "_yoast_wpseo_metadesc", "Detector de humo WS588P | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2496", "558", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2497", "558", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2512", "524", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:42.18671992011982;s:5:\"bytes\";i:5915;s:11:\"size_before\";i:14021;s:10:\"size_after\";i:8106;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.890000000000001;s:5:\"bytes\";i:542;s:11:\"size_before\";i:4206;s:10:\"size_after\";i:3664;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.470000000000001;s:5:\"bytes\";i:250;s:11:\"size_before\";i:2180;s:10:\"size_after\";i:1930;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.099999999999994;s:5:\"bytes\";i:5123;s:11:\"size_before\";i:7635;s:10:\"size_after\";i:2512;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2513", "523", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:43.151214982200898;s:5:\"bytes\";i:5576;s:11:\"size_before\";i:12922;s:10:\"size_after\";i:7346;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:359;s:11:\"size_before\";i:3591;s:10:\"size_after\";i:3232;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7100000000000009;s:5:\"bytes\";i:200;s:11:\"size_before\";i:2059;s:10:\"size_after\";i:1859;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.989999999999995;s:5:\"bytes\";i:5017;s:11:\"size_before\";i:7272;s:10:\"size_after\";i:2255;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2514", "522", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:44.517465533252377;s:5:\"bytes\";i:6232;s:11:\"size_before\";i:13999;s:10:\"size_after\";i:7767;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.75;s:5:\"bytes\";i:665;s:11:\"size_before\";i:3969;s:10:\"size_after\";i:3304;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.06;s:5:\"bytes\";i:266;s:11:\"size_before\";i:2205;s:10:\"size_after\";i:1939;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.739999999999995;s:5:\"bytes\";i:5301;s:11:\"size_before\";i:7825;s:10:\"size_after\";i:2524;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2515", "506", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:47.256777851198514;s:5:\"bytes\";i:49346;s:11:\"size_before\";i:104421;s:10:\"size_after\";i:55075;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.699999999999999;s:5:\"bytes\";i:324;s:11:\"size_before\";i:2064;s:10:\"size_after\";i:1740;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.710000000000001;s:5:\"bytes\";i:864;s:11:\"size_before\";i:4878;s:10:\"size_after\";i:4014;s:4:\"time\";d:0.059999999999999998;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.039999999999999;s:5:\"bytes\";i:183;s:11:\"size_before\";i:1303;s:10:\"size_after\";i:1120;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.550000000000001;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:5859;s:10:\"size_after\";i:4655;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.829999999999998;s:5:\"bytes\";i:2248;s:11:\"size_before\";i:9435;s:10:\"size_after\";i:7187;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.049999999999997;s:5:\"bytes\";i:44523;s:11:\"size_before\";i:80882;s:10:\"size_after\";i:36359;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2516", "505", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.155546360470325;s:5:\"bytes\";i:45422;s:11:\"size_before\";i:116004;s:10:\"size_after\";i:70582;s:4:\"time\";d:0.22;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.98;s:5:\"bytes\";i:297;s:11:\"size_before\";i:2124;s:10:\"size_after\";i:1827;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.68;s:5:\"bytes\";i:817;s:11:\"size_before\";i:5210;s:10:\"size_after\";i:4393;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.82;s:5:\"bytes\";i:171;s:11:\"size_before\";i:1334;s:10:\"size_after\";i:1163;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.98;s:5:\"bytes\";i:1100;s:11:\"size_before\";i:6119;s:10:\"size_after\";i:5019;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.850000000000001;s:5:\"bytes\";i:1949;s:11:\"size_before\";i:9818;s:10:\"size_after\";i:7869;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.950000000000003;s:5:\"bytes\";i:41088;s:11:\"size_before\";i:91399;s:10:\"size_after\";i:50311;s:4:\"time\";d:0.14999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2517", "504", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.515451660776804;s:5:\"bytes\";i:43315;s:11:\"size_before\";i:121961;s:10:\"size_after\";i:78646;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.76;s:5:\"bytes\";i:274;s:11:\"size_before\";i:2546;s:10:\"size_after\";i:2272;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.49;s:5:\"bytes\";i:767;s:11:\"size_before\";i:6140;s:10:\"size_after\";i:5373;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.609999999999999;s:5:\"bytes\";i:161;s:11:\"size_before\";i:1517;s:10:\"size_after\";i:1356;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.73;s:5:\"bytes\";i:925;s:11:\"size_before\";i:7264;s:10:\"size_after\";i:6339;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999;s:5:\"bytes\";i:1614;s:11:\"size_before\";i:10978;s:10:\"size_after\";i:9364;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.32;s:5:\"bytes\";i:39574;s:11:\"size_before\";i:93516;s:10:\"size_after\";i:53942;s:4:\"time\";d:0.11;}}}");
INSERT INTO `wp_postmeta` VALUES("2518", "502", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:68.151116930397436;s:5:\"bytes\";i:42681;s:11:\"size_before\";i:62627;s:10:\"size_after\";i:19946;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.280000000000001;s:5:\"bytes\";i:362;s:11:\"size_before\";i:1280;s:10:\"size_after\";i:918;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.380000000000003;s:5:\"bytes\";i:1031;s:11:\"size_before\";i:2686;s:10:\"size_after\";i:1655;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.859999999999999;s:5:\"bytes\";i:225;s:11:\"size_before\";i:943;s:10:\"size_after\";i:718;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.060000000000002;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:3006;s:10:\"size_after\";i:1862;s:4:\"time\";d:0.050000000000000003;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.670000000000002;s:5:\"bytes\";i:2189;s:11:\"size_before\";i:5013;s:10:\"size_after\";i:2824;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.920000000000002;s:5:\"bytes\";i:37730;s:11:\"size_before\";i:49699;s:10:\"size_after\";i:11969;s:4:\"time\";d:0.13;}}}");
INSERT INTO `wp_postmeta` VALUES("2519", "501", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.604733447560143;s:5:\"bytes\";i:17663;s:11:\"size_before\";i:71787;s:10:\"size_after\";i:54124;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.379999999999999;s:5:\"bytes\";i:286;s:11:\"size_before\";i:1746;s:10:\"size_after\";i:1460;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.050000000000001;s:5:\"bytes\";i:834;s:11:\"size_before\";i:3783;s:10:\"size_after\";i:2949;s:4:\"time\";d:0.059999999999999998;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.359999999999999;s:5:\"bytes\";i:164;s:11:\"size_before\";i:1228;s:10:\"size_after\";i:1064;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.530000000000001;s:5:\"bytes\";i:1012;s:11:\"size_before\";i:4491;s:10:\"size_after\";i:3479;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.890000000000001;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:7046;s:10:\"size_after\";i:5222;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.32;s:5:\"bytes\";i:13543;s:11:\"size_before\";i:53493;s:10:\"size_after\";i:39950;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2520", "500", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:41.463500563697856;s:5:\"bytes\";i:47076;s:11:\"size_before\";i:113536;s:10:\"size_after\";i:66460;s:4:\"time\";d:0.16000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.99;s:5:\"bytes\";i:318;s:11:\"size_before\";i:2653;s:10:\"size_after\";i:2335;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.850000000000001;s:5:\"bytes\";i:1015;s:11:\"size_before\";i:6025;s:10:\"size_after\";i:5010;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9100000000000001;s:5:\"bytes\";i:155;s:11:\"size_before\";i:1564;s:10:\"size_after\";i:1409;s:4:\"time\";d:0.040000000000000001;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.899999999999999;s:5:\"bytes\";i:1263;s:11:\"size_before\";i:7057;s:10:\"size_after\";i:5794;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.280000000000001;s:5:\"bytes\";i:2327;s:11:\"size_before\";i:10935;s:10:\"size_after\";i:8608;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.229999999999997;s:5:\"bytes\";i:41998;s:11:\"size_before\";i:85302;s:10:\"size_after\";i:43304;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2521", "499", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.283992167421367;s:5:\"bytes\";i:17835;s:11:\"size_before\";i:65368;s:10:\"size_after\";i:47533;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.870000000000001;s:5:\"bytes\";i:291;s:11:\"size_before\";i:1725;s:10:\"size_after\";i:1434;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.25;s:5:\"bytes\";i:797;s:11:\"size_before\";i:3750;s:10:\"size_after\";i:2953;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.49;s:5:\"bytes\";i:163;s:11:\"size_before\";i:1125;s:10:\"size_after\";i:962;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.969999999999999;s:5:\"bytes\";i:943;s:11:\"size_before\";i:4292;s:10:\"size_after\";i:3349;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.760000000000002;s:5:\"bytes\";i:1937;s:11:\"size_before\";i:6734;s:10:\"size_after\";i:4797;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.699999999999999;s:5:\"bytes\";i:13704;s:11:\"size_before\";i:47742;s:10:\"size_after\";i:34038;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2522", "496", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.195242369838422;s:5:\"bytes\";i:18837;s:11:\"size_before\";i:62384;s:10:\"size_after\";i:43547;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.859999999999999;s:5:\"bytes\";i:341;s:11:\"size_before\";i:2461;s:10:\"size_after\";i:2120;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.210000000000001;s:5:\"bytes\";i:968;s:11:\"size_before\";i:5973;s:10:\"size_after\";i:5005;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.390000000000001;s:5:\"bytes\";i:203;s:11:\"size_before\";i:1516;s:10:\"size_after\";i:1313;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.890000000000001;s:5:\"bytes\";i:1147;s:11:\"size_before\";i:6793;s:10:\"size_after\";i:5646;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.02;s:5:\"bytes\";i:1986;s:11:\"size_before\";i:11668;s:10:\"size_after\";i:9682;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.770000000000003;s:5:\"bytes\";i:14192;s:11:\"size_before\";i:33973;s:10:\"size_after\";i:19781;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2523", "494", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.412400105383332;s:5:\"bytes\";i:42402;s:11:\"size_before\";i:341610;s:10:\"size_after\";i:299208;s:4:\"time\";d:0.18000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:705;s:11:\"size_before\";i:7423;s:10:\"size_after\";i:6718;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9100000000000001;s:5:\"bytes\";i:1347;s:11:\"size_before\";i:15117;s:10:\"size_after\";i:13770;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.029999999999999;s:5:\"bytes\";i:7207;s:11:\"size_before\";i:65347;s:10:\"size_after\";i:58140;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0700000000000003;s:5:\"bytes\";i:204;s:11:\"size_before\";i:2248;s:10:\"size_after\";i:2044;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:1426;s:11:\"size_before\";i:16770;s:10:\"size_after\";i:15344;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000001;s:5:\"bytes\";i:2705;s:11:\"size_before\";i:29779;s:10:\"size_after\";i:27074;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.06;s:5:\"bytes\";i:28808;s:11:\"size_before\";i:204926;s:10:\"size_after\";i:176118;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2524", "482", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.41758162640843799;s:5:\"bytes\";i:116;s:11:\"size_before\";i:27779;s:10:\"size_after\";i:27663;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6000000000000001;s:5:\"bytes\";i:116;s:11:\"size_before\";i:4453;s:10:\"size_after\";i:4337;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23326;s:10:\"size_after\";i:23326;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("2525", "481", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4648566943782342;s:5:\"bytes\";i:2304;s:11:\"size_before\";i:51603;s:10:\"size_after\";i:49299;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.690000000000001;s:5:\"bytes\";i:2055;s:11:\"size_before\";i:7162;s:10:\"size_after\";i:5107;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1900000000000004;s:5:\"bytes\";i:249;s:11:\"size_before\";i:3463;s:10:\"size_after\";i:3214;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40978;s:10:\"size_after\";i:40978;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2526", "480", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.284971003413952;s:5:\"bytes\";i:35692;s:11:\"size_before\";i:249857;s:10:\"size_after\";i:214165;s:4:\"time\";d:0.55000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.800000000000001;s:5:\"bytes\";i:2252;s:11:\"size_before\";i:17591;s:10:\"size_after\";i:15339;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7699999999999996;s:5:\"bytes\";i:2110;s:11:\"size_before\";i:36582;s:10:\"size_after\";i:34472;s:4:\"time\";d:0.11;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.26;s:5:\"bytes\";i:701;s:11:\"size_before\";i:5286;s:10:\"size_after\";i:4585;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9400000000000004;s:5:\"bytes\";i:3296;s:11:\"size_before\";i:47467;s:10:\"size_after\";i:44171;s:4:\"time\";d:0.070000000000000007;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006;s:5:\"bytes\";i:5513;s:11:\"size_before\";i:61428;s:10:\"size_after\";i:55915;s:4:\"time\";d:0.10000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.77;s:5:\"bytes\";i:21820;s:11:\"size_before\";i:81503;s:10:\"size_after\";i:59683;s:4:\"time\";d:0.20999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2527", "479", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.389525595610195;s:5:\"bytes\";i:23596;s:11:\"size_before\";i:143970;s:10:\"size_after\";i:120374;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9199999999999999;s:5:\"bytes\";i:144;s:11:\"size_before\";i:4930;s:10:\"size_after\";i:4786;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002;s:5:\"bytes\";i:362;s:11:\"size_before\";i:13222;s:10:\"size_after\";i:12860;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:119;s:11:\"size_before\";i:2643;s:10:\"size_after\";i:2524;s:4:\"time\";d:0.040000000000000001;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:409;s:11:\"size_before\";i:14882;s:10:\"size_after\";i:14473;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002;s:5:\"bytes\";i:972;s:11:\"size_before\";i:24383;s:10:\"size_after\";i:23411;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.73;s:5:\"bytes\";i:21590;s:11:\"size_before\";i:83910;s:10:\"size_after\";i:62320;s:4:\"time\";d:0.11;}}}");
INSERT INTO `wp_postmeta` VALUES("2528", "478", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.143506488408789;s:5:\"bytes\";i:25659;s:11:\"size_before\";i:127381;s:10:\"size_after\";i:101722;s:4:\"time\";d:0.18000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9800000000000004;s:5:\"bytes\";i:296;s:11:\"size_before\";i:5939;s:10:\"size_after\";i:5643;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2300000000000004;s:5:\"bytes\";i:718;s:11:\"size_before\";i:16971;s:10:\"size_after\";i:16253;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002;s:5:\"bytes\";i:165;s:11:\"size_before\";i:3004;s:10:\"size_after\";i:2839;s:4:\"time\";d:0.050000000000000003;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0199999999999996;s:5:\"bytes\";i:762;s:11:\"size_before\";i:18962;s:10:\"size_after\";i:18200;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3999999999999999;s:5:\"bytes\";i:1105;s:11:\"size_before\";i:32536;s:10:\"size_after\";i:31431;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.25;s:5:\"bytes\";i:22613;s:11:\"size_before\";i:49969;s:10:\"size_after\";i:27356;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2529", "477", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.997986503279797;s:5:\"bytes\";i:22883;s:11:\"size_before\";i:127142;s:10:\"size_after\";i:104259;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002;s:5:\"bytes\";i:172;s:11:\"size_before\";i:4597;s:10:\"size_after\";i:4425;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:462;s:11:\"size_before\";i:12755;s:10:\"size_after\";i:12293;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:150;s:11:\"size_before\";i:2627;s:10:\"size_after\";i:2477;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6299999999999999;s:5:\"bytes\";i:521;s:11:\"size_before\";i:14340;s:10:\"size_after\";i:13819;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:1239;s:11:\"size_before\";i:24792;s:10:\"size_after\";i:23553;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.899999999999999;s:5:\"bytes\";i:20339;s:11:\"size_before\";i:68031;s:10:\"size_after\";i:47692;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2530", "476", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.390714864107302;s:5:\"bytes\";i:27724;s:11:\"size_before\";i:192652;s:10:\"size_after\";i:164928;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000004;s:5:\"bytes\";i:244;s:11:\"size_before\";i:5877;s:10:\"size_after\";i:5633;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:671;s:11:\"size_before\";i:16722;s:10:\"size_after\";i:16051;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999;s:5:\"bytes\";i:206;s:11:\"size_before\";i:3208;s:10:\"size_after\";i:3002;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:766;s:11:\"size_before\";i:18833;s:10:\"size_after\";i:18067;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:1494;s:11:\"size_before\";i:32456;s:10:\"size_after\";i:30962;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.07;s:5:\"bytes\";i:24343;s:11:\"size_before\";i:115556;s:10:\"size_after\";i:91213;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2531", "475", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.801203425133071;s:5:\"bytes\";i:11927;s:11:\"size_before\";i:86420;s:10:\"size_after\";i:74493;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.51;s:5:\"bytes\";i:284;s:11:\"size_before\";i:2701;s:10:\"size_after\";i:2417;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.26;s:5:\"bytes\";i:627;s:11:\"size_before\";i:6114;s:10:\"size_after\";i:5487;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.94;s:5:\"bytes\";i:204;s:11:\"size_before\";i:1709;s:10:\"size_after\";i:1505;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999;s:5:\"bytes\";i:721;s:11:\"size_before\";i:6897;s:10:\"size_after\";i:6176;s:4:\"time\";d:0.050000000000000003;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.779999999999999;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:11082;s:10:\"size_after\";i:9666;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.98;s:5:\"bytes\";i:8675;s:11:\"size_before\";i:57917;s:10:\"size_after\";i:49242;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2532", "474", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.290412011748234;s:5:\"bytes\";i:14784;s:11:\"size_before\";i:72862;s:10:\"size_after\";i:58078;s:4:\"time\";d:0.20999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7300000000000004;s:5:\"bytes\";i:231;s:11:\"size_before\";i:2374;s:10:\"size_after\";i:2143;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.16;s:5:\"bytes\";i:616;s:11:\"size_before\";i:5067;s:10:\"size_after\";i:4451;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5099999999999998;s:5:\"bytes\";i:145;s:11:\"size_before\";i:1524;s:10:\"size_after\";i:1379;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.18;s:5:\"bytes\";i:689;s:11:\"size_before\";i:5656;s:10:\"size_after\";i:4967;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.65;s:5:\"bytes\";i:1404;s:11:\"size_before\";i:8972;s:10:\"size_after\";i:7568;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.75;s:5:\"bytes\";i:11699;s:11:\"size_before\";i:49269;s:10:\"size_after\";i:37570;s:4:\"time\";d:0.11;}}}");
INSERT INTO `wp_postmeta` VALUES("2533", "473", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.666526833068648;s:5:\"bytes\";i:15129;s:11:\"size_before\";i:66746;s:10:\"size_after\";i:51617;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.73;s:5:\"bytes\";i:221;s:11:\"size_before\";i:1884;s:10:\"size_after\";i:1663;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.199999999999999;s:5:\"bytes\";i:584;s:11:\"size_before\";i:3842;s:10:\"size_after\";i:3258;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.41;s:5:\"bytes\";i:149;s:11:\"size_before\";i:1306;s:10:\"size_after\";i:1157;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.530000000000001;s:5:\"bytes\";i:699;s:11:\"size_before\";i:4228;s:10:\"size_after\";i:3529;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.16;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:7062;s:10:\"size_after\";i:5638;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.890000000000001;s:5:\"bytes\";i:12052;s:11:\"size_before\";i:48424;s:10:\"size_after\";i:36372;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2534", "472", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.290424225574014;s:5:\"bytes\";i:13199;s:11:\"size_before\";i:86322;s:10:\"size_after\";i:73123;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1600000000000001;s:5:\"bytes\";i:210;s:11:\"size_before\";i:2574;s:10:\"size_after\";i:2364;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96;s:5:\"bytes\";i:505;s:11:\"size_before\";i:6345;s:10:\"size_after\";i:5840;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000004;s:5:\"bytes\";i:143;s:11:\"size_before\";i:1562;s:10:\"size_after\";i:1419;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000004;s:5:\"bytes\";i:648;s:11:\"size_before\";i:7083;s:10:\"size_after\";i:6435;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9499999999999993;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:11502;s:10:\"size_after\";i:10358;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.420000000000002;s:5:\"bytes\";i:10549;s:11:\"size_before\";i:57256;s:10:\"size_after\";i:46707;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2535", "471", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.736331059993066;s:5:\"bytes\";i:13295;s:11:\"size_before\";i:43255;s:10:\"size_after\";i:29960;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.399999999999999;s:5:\"bytes\";i:293;s:11:\"size_before\";i:1684;s:10:\"size_after\";i:1391;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.57;s:5:\"bytes\";i:742;s:11:\"size_before\";i:3608;s:10:\"size_after\";i:2866;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.640000000000001;s:5:\"bytes\";i:180;s:11:\"size_before\";i:1151;s:10:\"size_after\";i:971;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.84;s:5:\"bytes\";i:906;s:11:\"size_before\";i:3967;s:10:\"size_after\";i:3061;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.239999999999998;s:5:\"bytes\";i:1727;s:11:\"size_before\";i:6581;s:10:\"size_after\";i:4854;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.969999999999999;s:5:\"bytes\";i:9447;s:11:\"size_before\";i:26264;s:10:\"size_after\";i:16817;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2536", "470", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.493666462828688;s:5:\"bytes\";i:12015;s:11:\"size_before\";i:68682;s:10:\"size_after\";i:56667;s:4:\"time\";d:0.089999999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:189;s:11:\"size_before\";i:2363;s:10:\"size_after\";i:2174;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992;s:5:\"bytes\";i:473;s:11:\"size_before\";i:5330;s:10:\"size_after\";i:4857;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2699999999999996;s:5:\"bytes\";i:137;s:11:\"size_before\";i:1478;s:10:\"size_after\";i:1341;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.44;s:5:\"bytes\";i:620;s:11:\"size_before\";i:5936;s:10:\"size_after\";i:5316;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.27;s:5:\"bytes\";i:1275;s:11:\"size_before\";i:9605;s:10:\"size_after\";i:8330;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.199999999999999;s:5:\"bytes\";i:9321;s:11:\"size_before\";i:43970;s:10:\"size_after\";i:34649;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2537", "469", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.774310595065311;s:5:\"bytes\";i:17603;s:11:\"size_before\";i:137800;s:10:\"size_after\";i:120197;s:4:\"time\";d:0.26000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7199999999999998;s:5:\"bytes\";i:348;s:11:\"size_before\";i:5179;s:10:\"size_after\";i:4831;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8700000000000001;s:5:\"bytes\";i:1007;s:11:\"size_before\";i:12797;s:10:\"size_after\";i:11790;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994;s:5:\"bytes\";i:256;s:11:\"size_before\";i:2891;s:10:\"size_after\";i:2635;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7899999999999991;s:5:\"bytes\";i:1240;s:11:\"size_before\";i:14104;s:10:\"size_after\";i:12864;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7300000000000004;s:5:\"bytes\";i:1846;s:11:\"size_before\";i:21137;s:10:\"size_after\";i:19291;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.800000000000001;s:5:\"bytes\";i:12906;s:11:\"size_before\";i:81692;s:10:\"size_after\";i:68786;s:4:\"time\";d:0.14999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2538", "468", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5656891770600279;s:5:\"bytes\";i:14281;s:11:\"size_before\";i:149294;s:10:\"size_after\";i:135013;s:4:\"time\";d:0.19999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3600000000000003;s:5:\"bytes\";i:260;s:11:\"size_before\";i:4087;s:10:\"size_after\";i:3827;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0199999999999996;s:5:\"bytes\";i:574;s:11:\"size_before\";i:11431;s:10:\"size_after\";i:10857;s:4:\"time\";d:0.089999999999999997;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1799999999999997;s:5:\"bytes\";i:151;s:11:\"size_before\";i:2104;s:10:\"size_after\";i:1953;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5300000000000002;s:5:\"bytes\";i:716;s:11:\"size_before\";i:12936;s:10:\"size_after\";i:12220;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5899999999999999;s:5:\"bytes\";i:1191;s:11:\"size_before\";i:21314;s:10:\"size_after\";i:20123;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.69;s:5:\"bytes\";i:11389;s:11:\"size_before\";i:97422;s:10:\"size_after\";i:86033;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2539", "467", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.48562509634654;s:5:\"bytes\";i:13997;s:11:\"size_before\";i:103792;s:10:\"size_after\";i:89795;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1399999999999997;s:5:\"bytes\";i:308;s:11:\"size_before\";i:4314;s:10:\"size_after\";i:4006;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9100000000000001;s:5:\"bytes\";i:659;s:11:\"size_before\";i:9535;s:10:\"size_after\";i:8876;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002;s:5:\"bytes\";i:229;s:11:\"size_before\";i:2546;s:10:\"size_after\";i:2317;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8799999999999999;s:5:\"bytes\";i:824;s:11:\"size_before\";i:10462;s:10:\"size_after\";i:9638;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000006;s:5:\"bytes\";i:1451;s:11:\"size_before\";i:16315;s:10:\"size_after\";i:14864;s:4:\"time\";d:0.059999999999999998;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.359999999999999;s:5:\"bytes\";i:10526;s:11:\"size_before\";i:60620;s:10:\"size_after\";i:50094;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2540", "465", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.2669851875606355;s:5:\"bytes\";i:17902;s:11:\"size_before\";i:246347;s:10:\"size_after\";i:228445;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000001;s:5:\"bytes\";i:300;s:11:\"size_before\";i:5142;s:10:\"size_after\";i:4842;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6299999999999999;s:5:\"bytes\";i:695;s:11:\"size_before\";i:15019;s:10:\"size_after\";i:14324;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5199999999999996;s:5:\"bytes\";i:174;s:11:\"size_before\";i:2670;s:10:\"size_after\";i:2496;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002;s:5:\"bytes\";i:859;s:11:\"size_before\";i:17206;s:10:\"size_after\";i:16347;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999998;s:5:\"bytes\";i:1514;s:11:\"size_before\";i:30237;s:10:\"size_after\";i:28723;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1600000000000001;s:5:\"bytes\";i:14360;s:11:\"size_before\";i:176073;s:10:\"size_after\";i:161713;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2541", "464", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.5313600682324324;s:5:\"bytes\";i:20676;s:11:\"size_before\";i:316565;s:10:\"size_after\";i:295889;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8200000000000003;s:5:\"bytes\";i:322;s:11:\"size_before\";i:5532;s:10:\"size_after\";i:5210;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:823;s:11:\"size_before\";i:17495;s:10:\"size_after\";i:16672;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:176;s:11:\"size_before\";i:2787;s:10:\"size_after\";i:2611;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3600000000000003;s:5:\"bytes\";i:1109;s:11:\"size_before\";i:20672;s:10:\"size_after\";i:19563;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5300000000000002;s:5:\"bytes\";i:2048;s:11:\"size_before\";i:37050;s:10:\"size_after\";i:35002;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9500000000000002;s:5:\"bytes\";i:16198;s:11:\"size_before\";i:233029;s:10:\"size_after\";i:216831;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2542", "463", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.102135576637769;s:5:\"bytes\";i:30182;s:11:\"size_before\";i:249394;s:10:\"size_after\";i:219212;s:4:\"time\";d:0.17000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2800000000000002;s:5:\"bytes\";i:374;s:11:\"size_before\";i:5951;s:10:\"size_after\";i:5577;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1699999999999999;s:5:\"bytes\";i:1347;s:11:\"size_before\";i:18775;s:10:\"size_after\";i:17428;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:180;s:11:\"size_before\";i:2878;s:10:\"size_after\";i:2698;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8799999999999999;s:5:\"bytes\";i:1674;s:11:\"size_before\";i:21253;s:10:\"size_after\";i:19579;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1999999999999993;s:5:\"bytes\";i:3011;s:11:\"size_before\";i:36716;s:10:\"size_after\";i:33705;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4;s:5:\"bytes\";i:23596;s:11:\"size_before\";i:163821;s:10:\"size_after\";i:140225;s:4:\"time\";d:0.10000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2543", "460", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.185737156363587;s:5:\"bytes\";i:17735;s:11:\"size_before\";i:145539;s:10:\"size_after\";i:127804;s:4:\"time\";d:0.22;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3399999999999999;s:5:\"bytes\";i:342;s:11:\"size_before\";i:4658;s:10:\"size_after\";i:4316;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1200000000000001;s:5:\"bytes\";i:853;s:11:\"size_before\";i:11977;s:10:\"size_after\";i:11124;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:143;s:11:\"size_before\";i:2384;s:10:\"size_after\";i:2241;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:1196;s:11:\"size_before\";i:13673;s:10:\"size_after\";i:12477;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994;s:5:\"bytes\";i:1792;s:11:\"size_before\";i:21428;s:10:\"size_after\";i:19636;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.67;s:5:\"bytes\";i:13409;s:11:\"size_before\";i:91419;s:10:\"size_after\";i:78010;s:4:\"time\";d:0.089999999999999997;}}}");
INSERT INTO `wp_postmeta` VALUES("2544", "459", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.945968477782809;s:5:\"bytes\";i:39443;s:11:\"size_before\";i:304674;s:10:\"size_after\";i:265231;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000008;s:5:\"bytes\";i:558;s:11:\"size_before\";i:6655;s:10:\"size_after\";i:6097;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7799999999999994;s:5:\"bytes\";i:1918;s:11:\"size_before\";i:21842;s:10:\"size_after\";i:19924;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000001;s:5:\"bytes\";i:229;s:11:\"size_before\";i:2926;s:10:\"size_after\";i:2697;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996;s:5:\"bytes\";i:2253;s:11:\"size_before\";i:24768;s:10:\"size_after\";i:22515;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0500000000000007;s:5:\"bytes\";i:3912;s:11:\"size_before\";i:43219;s:10:\"size_after\";i:39307;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.890000000000001;s:5:\"bytes\";i:30573;s:11:\"size_before\";i:205264;s:10:\"size_after\";i:174691;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2545", "458", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.005037962951963;s:5:\"bytes\";i:26940;s:11:\"size_before\";i:168322;s:10:\"size_after\";i:141382;s:4:\"time\";d:0.21000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7199999999999998;s:5:\"bytes\";i:406;s:11:\"size_before\";i:5256;s:10:\"size_after\";i:4850;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999;s:5:\"bytes\";i:1334;s:11:\"size_before\";i:14948;s:10:\"size_after\";i:13614;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1399999999999997;s:5:\"bytes\";i:190;s:11:\"size_before\";i:2661;s:10:\"size_after\";i:2471;s:4:\"time\";d:0.040000000000000001;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006;s:5:\"bytes\";i:1674;s:11:\"size_before\";i:17219;s:10:\"size_after\";i:15545;s:4:\"time\";d:0.059999999999999998;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999;s:5:\"bytes\";i:3008;s:11:\"size_before\";i:28107;s:10:\"size_after\";i:25099;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.300000000000001;s:5:\"bytes\";i:20328;s:11:\"size_before\";i:100131;s:10:\"size_after\";i:79803;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2546", "457", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.746413437484044;s:5:\"bytes\";i:12337;s:11:\"size_before\";i:78348;s:10:\"size_after\";i:66011;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000005;s:5:\"bytes\";i:244;s:11:\"size_before\";i:2620;s:10:\"size_after\";i:2376;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002;s:5:\"bytes\";i:594;s:11:\"size_before\";i:6259;s:10:\"size_after\";i:5665;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000006;s:5:\"bytes\";i:156;s:11:\"size_before\";i:1578;s:10:\"size_after\";i:1422;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.26;s:5:\"bytes\";i:710;s:11:\"size_before\";i:6922;s:10:\"size_after\";i:6212;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.68;s:5:\"bytes\";i:1409;s:11:\"size_before\";i:11115;s:10:\"size_after\";i:9706;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.5;s:5:\"bytes\";i:9224;s:11:\"size_before\";i:49854;s:10:\"size_after\";i:40630;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2547", "456", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.140339500963785;s:5:\"bytes\";i:14793;s:11:\"size_before\";i:112577;s:10:\"size_after\";i:97784;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7000000000000002;s:5:\"bytes\";i:265;s:11:\"size_before\";i:3442;s:10:\"size_after\";i:3177;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000006;s:5:\"bytes\";i:649;s:11:\"size_before\";i:7977;s:10:\"size_after\";i:7328;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000008;s:5:\"bytes\";i:188;s:11:\"size_before\";i:2116;s:10:\"size_after\";i:1928;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995;s:5:\"bytes\";i:815;s:11:\"size_before\";i:8872;s:10:\"size_after\";i:8057;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:1586;s:11:\"size_before\";i:14103;s:10:\"size_after\";i:12517;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.84;s:5:\"bytes\";i:11290;s:11:\"size_before\";i:76067;s:10:\"size_after\";i:64777;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2548", "454", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.546478384611927;s:5:\"bytes\";i:42171;s:11:\"size_before\";i:311306;s:10:\"size_after\";i:269135;s:4:\"time\";d:0.45000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5700000000000003;s:5:\"bytes\";i:655;s:11:\"size_before\";i:8651;s:10:\"size_after\";i:7996;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3200000000000003;s:5:\"bytes\";i:1982;s:11:\"size_before\";i:27085;s:10:\"size_after\";i:25103;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6299999999999999;s:5:\"bytes\";i:254;s:11:\"size_before\";i:3830;s:10:\"size_after\";i:3576;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9800000000000004;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:30174;s:10:\"size_after\";i:27766;s:4:\"time\";d:0.070000000000000007;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000006;s:5:\"bytes\";i:4392;s:11:\"size_before\";i:49417;s:10:\"size_after\";i:45025;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.899999999999999;s:5:\"bytes\";i:32480;s:11:\"size_before\";i:192149;s:10:\"size_after\";i:159669;s:4:\"time\";d:0.28000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2549", "453", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.561884333201263;s:5:\"bytes\";i:13586;s:11:\"size_before\";i:73193;s:10:\"size_after\";i:59607;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:205;s:11:\"size_before\";i:2563;s:10:\"size_after\";i:2358;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3399999999999999;s:5:\"bytes\";i:522;s:11:\"size_before\";i:5587;s:10:\"size_after\";i:5065;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002;s:5:\"bytes\";i:139;s:11:\"size_before\";i:1590;s:10:\"size_after\";i:1451;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.31;s:5:\"bytes\";i:703;s:11:\"size_before\";i:6213;s:10:\"size_after\";i:5510;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.720000000000001;s:5:\"bytes\";i:1437;s:11:\"size_before\";i:9763;s:10:\"size_after\";i:8326;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.280000000000001;s:5:\"bytes\";i:10580;s:11:\"size_before\";i:47477;s:10:\"size_after\";i:36897;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2550", "452", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.805048912907502;s:5:\"bytes\";i:14233;s:11:\"size_before\";i:79938;s:10:\"size_after\";i:65705;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.74;s:5:\"bytes\";i:299;s:11:\"size_before\";i:2785;s:10:\"size_after\";i:2486;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.81;s:5:\"bytes\";i:664;s:11:\"size_before\";i:6145;s:10:\"size_after\";i:5481;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.66;s:5:\"bytes\";i:179;s:11:\"size_before\";i:1679;s:10:\"size_after\";i:1500;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.359999999999999;s:5:\"bytes\";i:846;s:11:\"size_before\";i:6845;s:10:\"size_after\";i:5999;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.35;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:11017;s:10:\"size_after\";i:9546;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.93;s:5:\"bytes\";i:10774;s:11:\"size_before\";i:51467;s:10:\"size_after\";i:40693;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2551", "462", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.03479172624154;s:5:\"bytes\";i:16844;s:11:\"size_before\";i:167856;s:10:\"size_after\";i:151012;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4427;s:10:\"size_after\";i:4427;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11977;s:10:\"size_after\";i:11977;s:4:\"time\";d:0.050000000000000003;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2298;s:10:\"size_after\";i:2298;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13586;s:10:\"size_after\";i:13586;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002;s:5:\"bytes\";i:1904;s:11:\"size_before\";i:23843;s:10:\"size_after\";i:21939;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.369999999999999;s:5:\"bytes\";i:14940;s:11:\"size_before\";i:111725;s:10:\"size_after\";i:96785;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2552", "455", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.062470355179823;s:5:\"bytes\";i:15098;s:11:\"size_before\";i:71682;s:10:\"size_after\";i:56584;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.82;s:5:\"bytes\";i:243;s:11:\"size_before\";i:2055;s:10:\"size_after\";i:1812;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.67;s:5:\"bytes\";i:640;s:11:\"size_before\";i:4681;s:10:\"size_after\";i:4041;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.52;s:5:\"bytes\";i:141;s:11:\"size_before\";i:1340;s:10:\"size_after\";i:1199;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.869999999999999;s:5:\"bytes\";i:814;s:11:\"size_before\";i:5128;s:10:\"size_after\";i:4314;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.710000000000001;s:5:\"bytes\";i:1626;s:11:\"size_before\";i:8690;s:10:\"size_after\";i:7064;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.370000000000001;s:5:\"bytes\";i:11634;s:11:\"size_before\";i:49788;s:10:\"size_after\";i:38154;s:4:\"time\";d:0.14000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2553", "451", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.456318170658999;s:5:\"bytes\";i:19184;s:11:\"size_before\";i:142565;s:10:\"size_after\";i:123381;s:4:\"time\";d:0.29999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999998;s:5:\"bytes\";i:328;s:11:\"size_before\";i:3640;s:10:\"size_after\";i:3312;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000004;s:5:\"bytes\";i:815;s:11:\"size_before\";i:10659;s:10:\"size_after\";i:9844;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000001;s:5:\"bytes\";i:184;s:11:\"size_before\";i:1871;s:10:\"size_after\";i:1687;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.25;s:5:\"bytes\";i:1000;s:11:\"size_before\";i:12126;s:10:\"size_after\";i:11126;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3399999999999999;s:5:\"bytes\";i:1954;s:11:\"size_before\";i:20927;s:10:\"size_after\";i:18973;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.970000000000001;s:5:\"bytes\";i:14903;s:11:\"size_before\";i:93342;s:10:\"size_after\";i:78439;s:4:\"time\";d:0.17999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2554", "450", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.942663365718683;s:5:\"bytes\";i:17249;s:11:\"size_before\";i:96134;s:10:\"size_after\";i:78885;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9299999999999997;s:5:\"bytes\";i:330;s:11:\"size_before\";i:3323;s:10:\"size_after\";i:2993;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000001;s:5:\"bytes\";i:888;s:11:\"size_before\";i:8220;s:10:\"size_after\";i:7332;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4299999999999997;s:5:\"bytes\";i:174;s:11:\"size_before\";i:1846;s:10:\"size_after\";i:1672;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.02;s:5:\"bytes\";i:1100;s:11:\"size_before\";i:9154;s:10:\"size_after\";i:8054;s:4:\"time\";d:0.050000000000000003;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5;s:5:\"bytes\";i:2049;s:11:\"size_before\";i:15182;s:10:\"size_after\";i:13133;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.760000000000002;s:5:\"bytes\";i:12708;s:11:\"size_before\";i:58409;s:10:\"size_after\";i:45701;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2555", "449", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.140057675392203;s:5:\"bytes\";i:15394;s:11:\"size_before\";i:89813;s:10:\"size_after\";i:74419;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.23;s:5:\"bytes\";i:322;s:11:\"size_before\";i:2867;s:10:\"size_after\";i:2545;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.23;s:5:\"bytes\";i:772;s:11:\"size_before\";i:6872;s:10:\"size_after\";i:6100;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.35;s:5:\"bytes\";i:175;s:11:\"size_before\";i:1691;s:10:\"size_after\";i:1516;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.83;s:5:\"bytes\";i:907;s:11:\"size_before\";i:7670;s:10:\"size_after\";i:6763;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.49;s:5:\"bytes\";i:1619;s:11:\"size_before\";i:12963;s:10:\"size_after\";i:11344;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.079999999999998;s:5:\"bytes\";i:11599;s:11:\"size_before\";i:57750;s:10:\"size_after\";i:46151;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2556", "448", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.155452795943123;s:5:\"bytes\";i:17713;s:11:\"size_before\";i:109641;s:10:\"size_after\";i:91928;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0399999999999991;s:5:\"bytes\";i:314;s:11:\"size_before\";i:3473;s:10:\"size_after\";i:3159;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:948;s:11:\"size_before\";i:8835;s:10:\"size_after\";i:7887;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5899999999999999;s:5:\"bytes\";i:154;s:11:\"size_before\";i:2030;s:10:\"size_after\";i:1876;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:1111;s:11:\"size_before\";i:9874;s:10:\"size_after\";i:8763;s:4:\"time\";d:0.040000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.619999999999999;s:5:\"bytes\";i:2074;s:11:\"size_before\";i:16439;s:10:\"size_after\";i:14365;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.010000000000002;s:5:\"bytes\";i:13112;s:11:\"size_before\";i:68990;s:10:\"size_after\";i:55878;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2557", "447", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.018668526366611;s:5:\"bytes\";i:16418;s:11:\"size_before\";i:74564;s:10:\"size_after\";i:58146;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.779999999999999;s:5:\"bytes\";i:290;s:11:\"size_before\";i:2690;s:10:\"size_after\";i:2400;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.93;s:5:\"bytes\";i:858;s:11:\"size_before\";i:6634;s:10:\"size_after\";i:5776;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992;s:5:\"bytes\";i:148;s:11:\"size_before\";i:1538;s:10:\"size_after\";i:1390;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.220000000000001;s:5:\"bytes\";i:1018;s:11:\"size_before\";i:7158;s:10:\"size_after\";i:6140;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.800000000000001;s:5:\"bytes\";i:1990;s:11:\"size_before\";i:11846;s:10:\"size_after\";i:9856;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.100000000000001;s:5:\"bytes\";i:12114;s:11:\"size_before\";i:44698;s:10:\"size_after\";i:32584;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2558", "446", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.509392526885772;s:5:\"bytes\";i:16265;s:11:\"size_before\";i:92893;s:10:\"size_after\";i:76628;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3000000000000007;s:5:\"bytes\";i:276;s:11:\"size_before\";i:2968;s:10:\"size_after\";i:2692;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002;s:5:\"bytes\";i:744;s:11:\"size_before\";i:7445;s:10:\"size_after\";i:6701;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5399999999999991;s:5:\"bytes\";i:154;s:11:\"size_before\";i:1803;s:10:\"size_after\";i:1649;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.83;s:5:\"bytes\";i:978;s:11:\"size_before\";i:8267;s:10:\"size_after\";i:7289;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.56;s:5:\"bytes\";i:1891;s:11:\"size_before\";i:13945;s:10:\"size_after\";i:12054;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.899999999999999;s:5:\"bytes\";i:12222;s:11:\"size_before\";i:58465;s:10:\"size_after\";i:46243;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2559", "445", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.609141931030344;s:5:\"bytes\";i:16602;s:11:\"size_before\";i:99957;s:10:\"size_after\";i:83355;s:4:\"time\";d:0.22999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8000000000000007;s:5:\"bytes\";i:317;s:11:\"size_before\";i:3234;s:10:\"size_after\";i:2917;s:4:\"time\";d:0.059999999999999998;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.289999999999999;s:5:\"bytes\";i:857;s:11:\"size_before\";i:8331;s:10:\"size_after\";i:7474;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7999999999999998;s:5:\"bytes\";i:142;s:11:\"size_before\";i:1821;s:10:\"size_after\";i:1679;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.44;s:5:\"bytes\";i:1085;s:11:\"size_before\";i:9487;s:10:\"size_after\";i:8402;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:1745;s:11:\"size_before\";i:15514;s:10:\"size_after\";i:13769;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.23;s:5:\"bytes\";i:12456;s:11:\"size_before\";i:61570;s:10:\"size_after\";i:49114;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2560", "444", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.145776761469202;s:5:\"bytes\";i:16956;s:11:\"size_before\";i:111952;s:10:\"size_after\";i:94996;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999;s:5:\"bytes\";i:366;s:11:\"size_before\";i:3421;s:10:\"size_after\";i:3055;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5199999999999996;s:5:\"bytes\";i:864;s:11:\"size_before\";i:9071;s:10:\"size_after\";i:8207;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996;s:5:\"bytes\";i:184;s:11:\"size_before\";i:2022;s:10:\"size_after\";i:1838;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999;s:5:\"bytes\";i:1094;s:11:\"size_before\";i:10223;s:10:\"size_after\";i:9129;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1;s:5:\"bytes\";i:1877;s:11:\"size_before\";i:16908;s:10:\"size_after\";i:15031;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.879999999999999;s:5:\"bytes\";i:12571;s:11:\"size_before\";i:70307;s:10:\"size_after\";i:57736;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2561", "442", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.88167226149422;s:5:\"bytes\";i:13862;s:11:\"size_before\";i:87283;s:10:\"size_after\";i:73421;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.289999999999999;s:5:\"bytes\";i:294;s:11:\"size_before\";i:2857;s:10:\"size_after\";i:2563;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6;s:5:\"bytes\";i:787;s:11:\"size_before\";i:6786;s:10:\"size_after\";i:5999;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.16;s:5:\"bytes\";i:176;s:11:\"size_before\";i:1732;s:10:\"size_after\";i:1556;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.67;s:5:\"bytes\";i:958;s:11:\"size_before\";i:7559;s:10:\"size_after\";i:6601;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.85;s:5:\"bytes\";i:1787;s:11:\"size_before\";i:12903;s:10:\"size_after\";i:11116;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.780000000000001;s:5:\"bytes\";i:9860;s:11:\"size_before\";i:55446;s:10:\"size_after\";i:45586;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2562", "441", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.555025613849143;s:5:\"bytes\";i:15347;s:11:\"size_before\";i:113220;s:10:\"size_after\";i:97873;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3600000000000003;s:5:\"bytes\";i:248;s:11:\"size_before\";i:3370;s:10:\"size_after\";i:3122;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999994;s:5:\"bytes\";i:757;s:11:\"size_before\";i:8385;s:10:\"size_after\";i:7628;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000004;s:5:\"bytes\";i:154;s:11:\"size_before\";i:2012;s:10:\"size_after\";i:1858;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995;s:5:\"bytes\";i:909;s:11:\"size_before\";i:9384;s:10:\"size_after\";i:8475;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.91;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:16088;s:10:\"size_after\";i:14332;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.58;s:5:\"bytes\";i:11523;s:11:\"size_before\";i:73981;s:10:\"size_after\";i:62458;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2563", "440", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.531577791202153;s:5:\"bytes\";i:18255;s:11:\"size_before\";i:145672;s:10:\"size_after\";i:127417;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54;s:5:\"bytes\";i:267;s:11:\"size_before\";i:3543;s:10:\"size_after\";i:3276;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6300000000000008;s:5:\"bytes\";i:879;s:11:\"size_before\";i:10185;s:10:\"size_after\";i:9306;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1900000000000004;s:5:\"bytes\";i:127;s:11:\"size_before\";i:2053;s:10:\"size_after\";i:1926;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1055;s:11:\"size_before\";i:11718;s:10:\"size_after\";i:10663;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999998;s:5:\"bytes\";i:1748;s:11:\"size_before\";i:20529;s:10:\"size_after\";i:18781;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.52;s:5:\"bytes\";i:14179;s:11:\"size_before\";i:97644;s:10:\"size_after\";i:83465;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2564", "439", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.883019061283049;s:5:\"bytes\";i:20114;s:11:\"size_before\";i:156128;s:10:\"size_after\";i:136014;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8200000000000003;s:5:\"bytes\";i:404;s:11:\"size_before\";i:4578;s:10:\"size_after\";i:4174;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8000000000000007;s:5:\"bytes\";i:1195;s:11:\"size_before\";i:12199;s:10:\"size_after\";i:11004;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995;s:5:\"bytes\";i:206;s:11:\"size_before\";i:2440;s:10:\"size_after\";i:2234;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5500000000000007;s:5:\"bytes\";i:1340;s:11:\"size_before\";i:14038;s:10:\"size_after\";i:12698;s:4:\"time\";d:0.040000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6799999999999997;s:5:\"bytes\";i:2197;s:11:\"size_before\";i:22689;s:10:\"size_after\";i:20492;s:4:\"time\";d:0.070000000000000007;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.74;s:5:\"bytes\";i:14772;s:11:\"size_before\";i:100184;s:10:\"size_after\";i:85412;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2565", "437", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.771580345285525;s:5:\"bytes\";i:16962;s:11:\"size_before\";i:90360;s:10:\"size_after\";i:73398;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0899999999999999;s:5:\"bytes\";i:343;s:11:\"size_before\";i:3773;s:10:\"size_after\";i:3430;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1;s:5:\"bytes\";i:943;s:11:\"size_before\";i:8498;s:10:\"size_after\";i:7555;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4400000000000004;s:5:\"bytes\";i:167;s:11:\"size_before\";i:2244;s:10:\"size_after\";i:2077;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.050000000000001;s:5:\"bytes\";i:1141;s:11:\"size_before\";i:9472;s:10:\"size_after\";i:8331;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.73;s:5:\"bytes\";i:2035;s:11:\"size_before\";i:14824;s:10:\"size_after\";i:12789;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.920000000000002;s:5:\"bytes\";i:12333;s:11:\"size_before\";i:51549;s:10:\"size_after\";i:39216;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2566", "436", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2602728885430334;s:5:\"bytes\";i:14042;s:11:\"size_before\";i:151637;s:10:\"size_after\";i:137595;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:238;s:11:\"size_before\";i:5007;s:10:\"size_after\";i:4769;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999998;s:5:\"bytes\";i:586;s:11:\"size_before\";i:12305;s:10:\"size_after\";i:11719;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5199999999999996;s:5:\"bytes\";i:140;s:11:\"size_before\";i:2536;s:10:\"size_after\";i:2396;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8799999999999999;s:5:\"bytes\";i:656;s:11:\"size_before\";i:13445;s:10:\"size_after\";i:12789;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6799999999999997;s:5:\"bytes\";i:1215;s:11:\"size_before\";i:21377;s:10:\"size_after\";i:20162;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.56;s:5:\"bytes\";i:11207;s:11:\"size_before\";i:96967;s:10:\"size_after\";i:85760;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2567", "435", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.291978852453699;s:5:\"bytes\";i:10226;s:11:\"size_before\";i:123324;s:10:\"size_after\";i:113098;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:170;s:11:\"size_before\";i:4618;s:10:\"size_after\";i:4448;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.46;s:5:\"bytes\";i:362;s:11:\"size_before\";i:10469;s:10:\"size_after\";i:10107;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8600000000000003;s:5:\"bytes\";i:131;s:11:\"size_before\";i:2694;s:10:\"size_after\";i:2563;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:417;s:11:\"size_before\";i:11526;s:10:\"size_after\";i:11109;s:4:\"time\";d:0.040000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8799999999999999;s:5:\"bytes\";i:689;s:11:\"size_before\";i:17757;s:10:\"size_after\";i:17068;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.09;s:5:\"bytes\";i:8457;s:11:\"size_before\";i:76260;s:10:\"size_after\";i:67803;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2568", "434", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.415667074663402;s:5:\"bytes\";i:10637;s:11:\"size_before\";i:102125;s:10:\"size_after\";i:91488;s:4:\"time\";d:0.40000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4400000000000004;s:5:\"bytes\";i:162;s:11:\"size_before\";i:2978;s:10:\"size_after\";i:2816;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2199999999999998;s:5:\"bytes\";i:360;s:11:\"size_before\";i:6902;s:10:\"size_after\";i:6542;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4699999999999998;s:5:\"bytes\";i:129;s:11:\"size_before\";i:1726;s:10:\"size_after\";i:1597;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0899999999999999;s:5:\"bytes\";i:391;s:11:\"size_before\";i:7682;s:10:\"size_after\";i:7291;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000001;s:5:\"bytes\";i:948;s:11:\"size_before\";i:12512;s:10:\"size_after\";i:11564;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.300000000000001;s:5:\"bytes\";i:8647;s:11:\"size_before\";i:70325;s:10:\"size_after\";i:61678;s:4:\"time\";d:0.31;}}}");
INSERT INTO `wp_postmeta` VALUES("2569", "433", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.809500911622685;s:5:\"bytes\";i:13880;s:11:\"size_before\";i:49911;s:10:\"size_after\";i:36031;s:4:\"time\";d:0.089999999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.140000000000001;s:5:\"bytes\";i:290;s:11:\"size_before\";i:1692;s:10:\"size_after\";i:1402;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.940000000000001;s:5:\"bytes\";i:797;s:11:\"size_before\";i:3807;s:10:\"size_after\";i:3010;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.300000000000001;s:5:\"bytes\";i:170;s:11:\"size_before\";i:1189;s:10:\"size_after\";i:1019;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.41;s:5:\"bytes\";i:974;s:11:\"size_before\";i:4347;s:10:\"size_after\";i:3373;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.690000000000001;s:5:\"bytes\";i:1891;s:11:\"size_before\";i:7362;s:10:\"size_after\";i:5471;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.960000000000001;s:5:\"bytes\";i:9758;s:11:\"size_before\";i:31514;s:10:\"size_after\";i:21756;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2570", "432", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.964906332118336;s:5:\"bytes\";i:12956;s:11:\"size_before\";i:58985;s:10:\"size_after\";i:46029;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.630000000000001;s:5:\"bytes\";i:235;s:11:\"size_before\";i:2020;s:10:\"size_after\";i:1785;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.65;s:5:\"bytes\";i:685;s:11:\"size_before\";i:4677;s:10:\"size_after\";i:3992;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.74;s:5:\"bytes\";i:144;s:11:\"size_before\";i:1341;s:10:\"size_after\";i:1197;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.960000000000001;s:5:\"bytes\";i:830;s:11:\"size_before\";i:5202;s:10:\"size_after\";i:4372;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.350000000000001;s:5:\"bytes\";i:1564;s:11:\"size_before\";i:8525;s:10:\"size_after\";i:6961;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.52;s:5:\"bytes\";i:9498;s:11:\"size_before\";i:37220;s:10:\"size_after\";i:27722;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2571", "431", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.370915204371123;s:5:\"bytes\";i:14452;s:11:\"size_before\";i:47585;s:10:\"size_after\";i:33133;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.449999999999999;s:5:\"bytes\";i:301;s:11:\"size_before\";i:1725;s:10:\"size_after\";i:1424;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.780000000000001;s:5:\"bytes\";i:911;s:11:\"size_before\";i:4000;s:10:\"size_after\";i:3089;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.920000000000002;s:5:\"bytes\";i:197;s:11:\"size_before\";i:1164;s:10:\"size_after\";i:967;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.969999999999999;s:5:\"bytes\";i:1032;s:11:\"size_before\";i:4493;s:10:\"size_after\";i:3461;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.66;s:5:\"bytes\";i:2004;s:11:\"size_before\";i:7516;s:10:\"size_after\";i:5512;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.880000000000003;s:5:\"bytes\";i:10007;s:11:\"size_before\";i:28687;s:10:\"size_after\";i:18680;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2648", "379", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2649", "380", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2650", "381", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2651", "382", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2713", "573", "_wp_attached_file", "2017/01/58.jpg");
INSERT INTO `wp_postmeta` VALUES("2714", "573", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:14:\"2017/01/58.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"58-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:\"58-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:12:\"58-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"58-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:\"58-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"58-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2715", "573", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.868105264991204;s:5:\"bytes\";i:21667;s:11:\"size_before\";i:114834;s:10:\"size_after\";i:93167;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:221;s:11:\"size_before\";i:5516;s:10:\"size_after\";i:5295;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999998;s:5:\"bytes\";i:542;s:11:\"size_before\";i:16608;s:10:\"size_after\";i:16066;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57;s:5:\"bytes\";i:130;s:11:\"size_before\";i:1034;s:10:\"size_after\";i:904;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2699999999999996;s:5:\"bytes\";i:146;s:11:\"size_before\";i:2772;s:10:\"size_after\";i:2626;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999;s:5:\"bytes\";i:643;s:11:\"size_before\";i:18782;s:10:\"size_after\";i:18139;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3700000000000001;s:5:\"bytes\";i:759;s:11:\"size_before\";i:32070;s:10:\"size_after\";i:31311;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.530000000000001;s:5:\"bytes\";i:19226;s:11:\"size_before\";i:38052;s:10:\"size_after\";i:18826;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2662", "569", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2663", "569", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2664", "569", "_edit_lock", "1483412327:1");
INSERT INTO `wp_postmeta` VALUES("2718", "574", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.993157900573316;s:5:\"bytes\";i:18931;s:11:\"size_before\";i:90177;s:10:\"size_after\";i:71246;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000004;s:5:\"bytes\";i:321;s:11:\"size_before\";i:4489;s:10:\"size_after\";i:4168;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:516;s:11:\"size_before\";i:11964;s:10:\"size_after\";i:11448;s:4:\"time\";d:0.059999999999999998;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.06;s:5:\"bytes\";i:150;s:11:\"size_before\";i:996;s:10:\"size_after\";i:846;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0399999999999991;s:5:\"bytes\";i:200;s:11:\"size_before\";i:2487;s:10:\"size_after\";i:2287;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:669;s:11:\"size_before\";i:13495;s:10:\"size_after\";i:12826;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3799999999999999;s:5:\"bytes\";i:955;s:11:\"size_before\";i:21819;s:10:\"size_after\";i:20864;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.149999999999999;s:5:\"bytes\";i:16120;s:11:\"size_before\";i:34927;s:10:\"size_after\";i:18807;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2576", "426", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.169198120163363;s:5:\"bytes\";i:15861;s:11:\"size_before\";i:155971;s:10:\"size_after\";i:140110;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8600000000000003;s:5:\"bytes\";i:338;s:11:\"size_before\";i:4925;s:10:\"size_after\";i:4587;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002;s:5:\"bytes\";i:767;s:11:\"size_before\";i:12807;s:10:\"size_after\";i:12040;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002;s:5:\"bytes\";i:188;s:11:\"size_before\";i:2597;s:10:\"size_after\";i:2409;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4400000000000004;s:5:\"bytes\";i:941;s:11:\"size_before\";i:14601;s:10:\"size_after\";i:13660;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3600000000000003;s:5:\"bytes\";i:1478;s:11:\"size_before\";i:23255;s:10:\"size_after\";i:21777;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.42;s:5:\"bytes\";i:12149;s:11:\"size_before\";i:97786;s:10:\"size_after\";i:85637;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2577", "425", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.364353630162501;s:5:\"bytes\";i:40494;s:11:\"size_before\";i:327506;s:10:\"size_after\";i:287012;s:4:\"time\";d:0.27000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995;s:5:\"bytes\";i:569;s:11:\"size_before\";i:6741;s:10:\"size_after\";i:6172;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999994;s:5:\"bytes\";i:2051;s:11:\"size_before\";i:22724;s:10:\"size_after\";i:20673;s:4:\"time\";d:0.070000000000000007;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002;s:5:\"bytes\";i:227;s:11:\"size_before\";i:3134;s:10:\"size_after\";i:2907;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:2180;s:11:\"size_before\";i:25655;s:10:\"size_after\";i:23475;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8100000000000005;s:5:\"bytes\";i:4050;s:11:\"size_before\";i:45953;s:10:\"size_after\";i:41903;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.07;s:5:\"bytes\";i:31417;s:11:\"size_before\";i:223299;s:10:\"size_after\";i:191882;s:4:\"time\";d:0.11;}}}");
INSERT INTO `wp_postmeta` VALUES("2578", "424", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.949457317846804;s:5:\"bytes\";i:15562;s:11:\"size_before\";i:86699;s:10:\"size_after\";i:71137;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.18;s:5:\"bytes\";i:393;s:11:\"size_before\";i:2589;s:10:\"size_after\";i:2196;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.18;s:5:\"bytes\";i:942;s:11:\"size_before\";i:5823;s:10:\"size_after\";i:4881;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.970000000000001;s:5:\"bytes\";i:202;s:11:\"size_before\";i:1558;s:10:\"size_after\";i:1356;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.109999999999999;s:5:\"bytes\";i:965;s:11:\"size_before\";i:6385;s:10:\"size_after\";i:5420;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.620000000000001;s:5:\"bytes\";i:2011;s:11:\"size_before\";i:10802;s:10:\"size_after\";i:8791;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.559999999999999;s:5:\"bytes\";i:11049;s:11:\"size_before\";i:59542;s:10:\"size_after\";i:48493;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2579", "423", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.812318546498922;s:5:\"bytes\";i:17698;s:11:\"size_before\";i:128132;s:10:\"size_after\";i:110434;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.01;s:5:\"bytes\";i:433;s:11:\"size_before\";i:3933;s:10:\"size_after\";i:3500;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.15;s:5:\"bytes\";i:1002;s:11:\"size_before\";i:9875;s:10:\"size_after\";i:8873;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000004;s:5:\"bytes\";i:199;s:11:\"size_before\";i:2011;s:10:\"size_after\";i:1812;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4499999999999993;s:5:\"bytes\";i:1050;s:11:\"size_before\";i:11106;s:10:\"size_after\";i:10056;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.52;s:5:\"bytes\";i:1861;s:11:\"size_before\";i:17692;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.75;s:5:\"bytes\";i:13153;s:11:\"size_before\";i:83515;s:10:\"size_after\";i:70362;s:4:\"time\";d:0.10000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2580", "422", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.7708343536248918;s:5:\"bytes\";i:21491;s:11:\"size_before\";i:245028;s:10:\"size_after\";i:223537;s:4:\"time\";d:0.29999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2300000000000004;s:5:\"bytes\";i:443;s:11:\"size_before\";i:6129;s:10:\"size_after\";i:5686;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4299999999999997;s:5:\"bytes\";i:909;s:11:\"size_before\";i:16746;s:10:\"size_after\";i:15837;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000006;s:5:\"bytes\";i:261;s:11:\"size_before\";i:3206;s:10:\"size_after\";i:2945;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:950;s:11:\"size_before\";i:19167;s:10:\"size_after\";i:18217;s:4:\"time\";d:0.040000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996;s:5:\"bytes\";i:1805;s:11:\"size_before\";i:30870;s:10:\"size_after\";i:29065;s:4:\"time\";d:0.089999999999999997;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.140000000000001;s:5:\"bytes\";i:17123;s:11:\"size_before\";i:168910;s:10:\"size_after\";i:151787;s:4:\"time\";d:0.13;}}}");
INSERT INTO `wp_postmeta` VALUES("2581", "421", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.79031820020951;s:5:\"bytes\";i:19468;s:11:\"size_before\";i:180421;s:10:\"size_after\";i:160953;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5599999999999996;s:5:\"bytes\";i:311;s:11:\"size_before\";i:4115;s:10:\"size_after\";i:3804;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2300000000000004;s:5:\"bytes\";i:757;s:11:\"size_before\";i:10465;s:10:\"size_after\";i:9708;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000006;s:5:\"bytes\";i:200;s:11:\"size_before\";i:2383;s:10:\"size_after\";i:2183;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000004;s:5:\"bytes\";i:964;s:11:\"size_before\";i:12199;s:10:\"size_after\";i:11235;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000006;s:5:\"bytes\";i:1864;s:11:\"size_before\";i:19844;s:10:\"size_after\";i:17980;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999;s:5:\"bytes\";i:15372;s:11:\"size_before\";i:131415;s:10:\"size_after\";i:116043;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2582", "420", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.477687611561942;s:5:\"bytes\";i:16637;s:11:\"size_before\";i:133334;s:10:\"size_after\";i:116697;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9699999999999998;s:5:\"bytes\";i:273;s:11:\"size_before\";i:3917;s:10:\"size_after\";i:3644;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002;s:5:\"bytes\";i:798;s:11:\"size_before\";i:11018;s:10:\"size_after\";i:10220;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3200000000000003;s:5:\"bytes\";i:146;s:11:\"size_before\";i:1994;s:10:\"size_after\";i:1848;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2300000000000004;s:5:\"bytes\";i:1025;s:11:\"size_before\";i:12460;s:10:\"size_after\";i:11435;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3399999999999999;s:5:\"bytes\";i:1685;s:11:\"size_before\";i:20212;s:10:\"size_after\";i:18527;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.18;s:5:\"bytes\";i:12710;s:11:\"size_before\";i:83733;s:10:\"size_after\";i:71023;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2583", "419", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.929125570153211;s:5:\"bytes\";i:13797;s:11:\"size_before\";i:76953;s:10:\"size_after\";i:63156;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000008;s:5:\"bytes\";i:228;s:11:\"size_before\";i:2567;s:10:\"size_after\";i:2339;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.210000000000001;s:5:\"bytes\";i:714;s:11:\"size_before\";i:6369;s:10:\"size_after\";i:5655;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8699999999999992;s:5:\"bytes\";i:149;s:11:\"size_before\";i:1509;s:10:\"size_after\";i:1360;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.77;s:5:\"bytes\";i:893;s:11:\"size_before\";i:6993;s:10:\"size_after\";i:6100;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.460000000000001;s:5:\"bytes\";i:1692;s:11:\"size_before\";i:11701;s:10:\"size_after\";i:10009;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.170000000000002;s:5:\"bytes\";i:10121;s:11:\"size_before\";i:47814;s:10:\"size_after\";i:37693;s:4:\"time\";d:0.089999999999999997;}}}");
INSERT INTO `wp_postmeta` VALUES("2584", "418", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.290052775173546;s:5:\"bytes\";i:14515;s:11:\"size_before\";i:94931;s:10:\"size_after\";i:80416;s:4:\"time\";d:0.19999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1999999999999993;s:5:\"bytes\";i:233;s:11:\"size_before\";i:2843;s:10:\"size_after\";i:2610;s:4:\"time\";d:0.059999999999999998;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.18;s:5:\"bytes\";i:751;s:11:\"size_before\";i:7379;s:10:\"size_after\";i:6628;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000001;s:5:\"bytes\";i:150;s:11:\"size_before\";i:1652;s:10:\"size_after\";i:1502;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.609999999999999;s:5:\"bytes\";i:854;s:11:\"size_before\";i:8050;s:10:\"size_after\";i:7196;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.91;s:5:\"bytes\";i:1640;s:11:\"size_before\";i:13775;s:10:\"size_after\";i:12135;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.780000000000001;s:5:\"bytes\";i:10887;s:11:\"size_before\";i:61232;s:10:\"size_after\";i:50345;s:4:\"time\";d:0.089999999999999997;}}}");
INSERT INTO `wp_postmeta` VALUES("2585", "416", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.248499711142813;s:5:\"bytes\";i:16326;s:11:\"size_before\";i:84817;s:10:\"size_after\";i:68491;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.630000000000001;s:5:\"bytes\";i:284;s:11:\"size_before\";i:2672;s:10:\"size_after\";i:2388;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.81;s:5:\"bytes\";i:852;s:11:\"size_before\";i:6170;s:10:\"size_after\";i:5318;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.51;s:5:\"bytes\";i:193;s:11:\"size_before\";i:1677;s:10:\"size_after\";i:1484;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.69;s:5:\"bytes\";i:887;s:11:\"size_before\";i:6990;s:10:\"size_after\";i:6103;s:4:\"time\";d:0.050000000000000003;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.34;s:5:\"bytes\";i:1836;s:11:\"size_before\";i:11233;s:10:\"size_after\";i:9397;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.890000000000001;s:5:\"bytes\";i:12274;s:11:\"size_before\";i:56075;s:10:\"size_after\";i:43801;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2586", "415", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.514684667519528;s:5:\"bytes\";i:14339;s:11:\"size_before\";i:73478;s:10:\"size_after\";i:59139;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:296;s:11:\"size_before\";i:2820;s:10:\"size_after\";i:2524;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.779999999999999;s:5:\"bytes\";i:773;s:11:\"size_before\";i:6560;s:10:\"size_after\";i:5787;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006;s:5:\"bytes\";i:154;s:11:\"size_before\";i:1626;s:10:\"size_after\";i:1472;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.27;s:5:\"bytes\";i:965;s:11:\"size_before\";i:7270;s:10:\"size_after\";i:6305;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.720000000000001;s:5:\"bytes\";i:1724;s:11:\"size_before\";i:11709;s:10:\"size_after\";i:9985;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.969999999999999;s:5:\"bytes\";i:10427;s:11:\"size_before\";i:43493;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2587", "414", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.7401985529194013;s:5:\"bytes\";i:24380;s:11:\"size_before\";i:314979;s:10:\"size_after\";i:290599;s:4:\"time\";d:0.22;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6299999999999999;s:5:\"bytes\";i:239;s:11:\"size_before\";i:5165;s:10:\"size_after\";i:4926;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:737;s:11:\"size_before\";i:18081;s:10:\"size_after\";i:17344;s:4:\"time\";d:0.059999999999999998;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9299999999999997;s:5:\"bytes\";i:152;s:11:\"size_before\";i:2564;s:10:\"size_after\";i:2412;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:899;s:11:\"size_before\";i:20865;s:10:\"size_after\";i:19966;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:1546;s:11:\"size_before\";i:37927;s:10:\"size_after\";i:36381;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999994;s:5:\"bytes\";i:20807;s:11:\"size_before\";i:230377;s:10:\"size_after\";i:209570;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2588", "413", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.036553945730347;s:5:\"bytes\";i:26919;s:11:\"size_before\";i:334957;s:10:\"size_after\";i:308038;s:4:\"time\";d:0.17000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7699999999999996;s:5:\"bytes\";i:398;s:11:\"size_before\";i:5879;s:10:\"size_after\";i:5481;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000004;s:5:\"bytes\";i:865;s:11:\"size_before\";i:20865;s:10:\"size_after\";i:20000;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8099999999999996;s:5:\"bytes\";i:157;s:11:\"size_before\";i:2703;s:10:\"size_after\";i:2546;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2999999999999998;s:5:\"bytes\";i:1045;s:11:\"size_before\";i:24301;s:10:\"size_after\";i:23256;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9700000000000002;s:5:\"bytes\";i:1739;s:11:\"size_before\";i:43750;s:10:\"size_after\";i:42011;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5700000000000003;s:5:\"bytes\";i:22715;s:11:\"size_before\";i:237459;s:10:\"size_after\";i:214744;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("2589", "411", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.221587938778081;s:5:\"bytes\";i:26787;s:11:\"size_before\";i:262063;s:10:\"size_after\";i:235276;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999;s:5:\"bytes\";i:384;s:11:\"size_before\";i:7422;s:10:\"size_after\";i:7038;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0099999999999998;s:5:\"bytes\";i:1227;s:11:\"size_before\";i:20410;s:10:\"size_after\";i:19183;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000001;s:5:\"bytes\";i:180;s:11:\"size_before\";i:3543;s:10:\"size_after\";i:3363;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4800000000000004;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:23164;s:10:\"size_after\";i:21664;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7699999999999996;s:5:\"bytes\";i:2484;s:11:\"size_before\";i:36709;s:10:\"size_after\";i:34225;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.300000000000001;s:5:\"bytes\";i:21012;s:11:\"size_before\";i:170815;s:10:\"size_after\";i:149803;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2590", "410", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.806327062123227;s:5:\"bytes\";i:12965;s:11:\"size_before\";i:109814;s:10:\"size_after\";i:96849;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1100000000000003;s:5:\"bytes\";i:197;s:11:\"size_before\";i:3226;s:10:\"size_after\";i:3029;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9800000000000004;s:5:\"bytes\";i:466;s:11:\"size_before\";i:7798;s:10:\"size_after\";i:7332;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7800000000000002;s:5:\"bytes\";i:127;s:11:\"size_before\";i:1872;s:10:\"size_after\";i:1745;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6799999999999997;s:5:\"bytes\";i:589;s:11:\"size_before\";i:8811;s:10:\"size_after\";i:8222;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8600000000000003;s:5:\"bytes\";i:1118;s:11:\"size_before\";i:14215;s:10:\"size_after\";i:13097;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.17;s:5:\"bytes\";i:10468;s:11:\"size_before\";i:73892;s:10:\"size_after\";i:63424;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2591", "409", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.586960874614554;s:5:\"bytes\";i:16964;s:11:\"size_before\";i:124855;s:10:\"size_after\";i:107891;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996;s:5:\"bytes\";i:242;s:11:\"size_before\";i:3666;s:10:\"size_after\";i:3424;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3200000000000003;s:5:\"bytes\";i:679;s:11:\"size_before\";i:9270;s:10:\"size_after\";i:8591;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9500000000000002;s:5:\"bytes\";i:147;s:11:\"size_before\";i:2115;s:10:\"size_after\";i:1968;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996;s:5:\"bytes\";i:820;s:11:\"size_before\";i:10450;s:10:\"size_after\";i:9630;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992;s:5:\"bytes\";i:1563;s:11:\"size_before\";i:17137;s:10:\"size_after\";i:15574;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.440000000000001;s:5:\"bytes\";i:13513;s:11:\"size_before\";i:82217;s:10:\"size_after\";i:68704;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2592", "408", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.089019343662786;s:5:\"bytes\";i:15679;s:11:\"size_before\";i:103910;s:10:\"size_after\";i:88231;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000001;s:5:\"bytes\";i:258;s:11:\"size_before\";i:4246;s:10:\"size_after\";i:3988;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1200000000000001;s:5:\"bytes\";i:676;s:11:\"size_before\";i:9494;s:10:\"size_after\";i:8818;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5700000000000003;s:5:\"bytes\";i:158;s:11:\"size_before\";i:2404;s:10:\"size_after\";i:2246;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79;s:5:\"bytes\";i:814;s:11:\"size_before\";i:10454;s:10:\"size_after\";i:9640;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0199999999999996;s:5:\"bytes\";i:1478;s:11:\"size_before\";i:16390;s:10:\"size_after\";i:14912;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.18;s:5:\"bytes\";i:12295;s:11:\"size_before\";i:60922;s:10:\"size_after\";i:48627;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2593", "406", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.424345333603352;s:5:\"bytes\";i:13111;s:11:\"size_before\";i:64193;s:10:\"size_after\";i:51082;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.74;s:5:\"bytes\";i:284;s:11:\"size_before\";i:2230;s:10:\"size_after\";i:1946;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.23;s:5:\"bytes\";i:597;s:11:\"size_before\";i:4881;s:10:\"size_after\";i:4284;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.69;s:5:\"bytes\";i:167;s:11:\"size_before\";i:1428;s:10:\"size_after\";i:1261;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.58;s:5:\"bytes\";i:717;s:11:\"size_before\";i:5279;s:10:\"size_after\";i:4562;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.57;s:5:\"bytes\";i:1542;s:11:\"size_before\";i:8777;s:10:\"size_after\";i:7235;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.57;s:5:\"bytes\";i:9804;s:11:\"size_before\";i:41598;s:10:\"size_after\";i:31794;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2594", "405", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.142846659083403;s:5:\"bytes\";i:15651;s:11:\"size_before\";i:81759;s:10:\"size_after\";i:66108;s:4:\"time\";d:0.089999999999999997;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.48;s:5:\"bytes\";i:322;s:11:\"size_before\";i:2580;s:10:\"size_after\";i:2258;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.880000000000001;s:5:\"bytes\";i:838;s:11:\"size_before\";i:6039;s:10:\"size_after\";i:5201;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.06;s:5:\"bytes\";i:198;s:11:\"size_before\";i:1516;s:10:\"size_after\";i:1318;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.550000000000001;s:5:\"bytes\";i:1054;s:11:\"size_before\";i:6778;s:10:\"size_after\";i:5724;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:17;s:5:\"bytes\";i:1958;s:11:\"size_before\";i:11517;s:10:\"size_after\";i:9559;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.149999999999999;s:5:\"bytes\";i:11281;s:11:\"size_before\";i:53329;s:10:\"size_after\";i:42048;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2595", "404", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.120819579426346;s:5:\"bytes\";i:26037;s:11:\"size_before\";i:152078;s:10:\"size_after\";i:126041;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996;s:5:\"bytes\";i:453;s:11:\"size_before\";i:4718;s:10:\"size_after\";i:4265;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:1468;s:11:\"size_before\";i:13675;s:10:\"size_after\";i:12207;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.470000000000001;s:5:\"bytes\";i:249;s:11:\"size_before\";i:2378;s:10:\"size_after\";i:2129;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.050000000000001;s:5:\"bytes\";i:1657;s:11:\"size_before\";i:14994;s:10:\"size_after\";i:13337;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.380000000000001;s:5:\"bytes\";i:3099;s:11:\"size_before\";i:25037;s:10:\"size_after\";i:21938;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.940000000000001;s:5:\"bytes\";i:19111;s:11:\"size_before\";i:91276;s:10:\"size_after\";i:72165;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2596", "403", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.444776776336191;s:5:\"bytes\";i:22882;s:11:\"size_before\";i:199934;s:10:\"size_after\";i:177052;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000001;s:5:\"bytes\";i:345;s:11:\"size_before\";i:4705;s:10:\"size_after\";i:4360;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0700000000000003;s:5:\"bytes\";i:1119;s:11:\"size_before\";i:13866;s:10:\"size_after\";i:12747;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71;s:5:\"bytes\";i:190;s:11:\"size_before\";i:2465;s:10:\"size_after\";i:2275;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7699999999999996;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:16155;s:10:\"size_after\";i:14739;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4800000000000004;s:5:\"bytes\";i:2386;s:11:\"size_before\";i:28140;s:10:\"size_after\";i:25754;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.949999999999999;s:5:\"bytes\";i:17426;s:11:\"size_before\";i:134603;s:10:\"size_after\";i:117177;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2597", "402", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.75408806676958;s:5:\"bytes\";i:21504;s:11:\"size_before\";i:114663;s:10:\"size_after\";i:93159;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000005;s:5:\"bytes\";i:353;s:11:\"size_before\";i:3599;s:10:\"size_after\";i:3246;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.58;s:5:\"bytes\";i:1159;s:11:\"size_before\";i:10010;s:10:\"size_after\";i:8851;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9299999999999997;s:5:\"bytes\";i:172;s:11:\"size_before\";i:1926;s:10:\"size_after\";i:1754;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.74;s:5:\"bytes\";i:1461;s:11:\"size_before\";i:11466;s:10:\"size_after\";i:10005;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.27;s:5:\"bytes\";i:2529;s:11:\"size_before\";i:19057;s:10:\"size_after\";i:16528;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.07;s:5:\"bytes\";i:15830;s:11:\"size_before\";i:68605;s:10:\"size_after\";i:52775;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("2598", "401", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.666929348215437;s:5:\"bytes\";i:15122;s:11:\"size_before\";i:69793;s:10:\"size_after\";i:54671;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.43;s:5:\"bytes\";i:329;s:11:\"size_before\";i:2450;s:10:\"size_after\";i:2121;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.49;s:5:\"bytes\";i:878;s:11:\"size_before\";i:5667;s:10:\"size_after\";i:4789;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.01;s:5:\"bytes\";i:193;s:11:\"size_before\";i:1483;s:10:\"size_after\";i:1290;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.68;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:6272;s:10:\"size_after\";i:5226;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.57;s:5:\"bytes\";i:1944;s:11:\"size_before\";i:10466;s:10:\"size_after\";i:8522;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.699999999999999;s:5:\"bytes\";i:10732;s:11:\"size_before\";i:43455;s:10:\"size_after\";i:32723;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2599", "400", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.947643536754068;s:5:\"bytes\";i:13208;s:11:\"size_before\";i:94697;s:10:\"size_after\";i:81489;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3799999999999999;s:5:\"bytes\";i:169;s:11:\"size_before\";i:3140;s:10:\"size_after\";i:2971;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3799999999999999;s:5:\"bytes\";i:506;s:11:\"size_before\";i:6861;s:10:\"size_after\";i:6355;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999;s:5:\"bytes\";i:97;s:11:\"size_before\";i:1972;s:10:\"size_after\";i:1875;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999;s:5:\"bytes\";i:630;s:11:\"size_before\";i:7712;s:10:\"size_after\";i:7082;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92;s:5:\"bytes\";i:1300;s:11:\"size_before\";i:11908;s:10:\"size_after\";i:10608;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.649999999999999;s:5:\"bytes\";i:10506;s:11:\"size_before\";i:63104;s:10:\"size_after\";i:52598;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2600", "399", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.956616842872767;s:5:\"bytes\";i:24878;s:11:\"size_before\";i:192010;s:10:\"size_after\";i:167132;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996;s:5:\"bytes\";i:546;s:11:\"size_before\";i:7426;s:10:\"size_after\";i:6880;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5300000000000002;s:5:\"bytes\";i:1342;s:11:\"size_before\";i:17826;s:10:\"size_after\";i:16484;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3899999999999997;s:5:\"bytes\";i:249;s:11:\"size_before\";i:3894;s:10:\"size_after\";i:3645;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:19723;s:10:\"size_after\";i:18252;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0600000000000005;s:5:\"bytes\";i:2436;s:11:\"size_before\";i:30217;s:10:\"size_after\";i:27781;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.68;s:5:\"bytes\";i:18834;s:11:\"size_before\";i:112924;s:10:\"size_after\";i:94090;s:4:\"time\";d:0.10000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2601", "398", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.894406501989319;s:5:\"bytes\";i:12121;s:11:\"size_before\";i:94002;s:10:\"size_after\";i:81881;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0300000000000002;s:5:\"bytes\";i:157;s:11:\"size_before\";i:3123;s:10:\"size_after\";i:2966;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71;s:5:\"bytes\";i:457;s:11:\"size_before\";i:6806;s:10:\"size_after\";i:6349;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:112;s:11:\"size_before\";i:1947;s:10:\"size_after\";i:1835;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7300000000000004;s:5:\"bytes\";i:590;s:11:\"size_before\";i:7632;s:10:\"size_after\";i:7042;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999;s:5:\"bytes\";i:1233;s:11:\"size_before\";i:11801;s:10:\"size_after\";i:10568;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.27;s:5:\"bytes\";i:9572;s:11:\"size_before\";i:62693;s:10:\"size_after\";i:53121;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2602", "397", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.441474222242768;s:5:\"bytes\";i:18840;s:11:\"size_before\";i:151429;s:10:\"size_after\";i:132589;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8399999999999999;s:5:\"bytes\";i:494;s:11:\"size_before\";i:6301;s:10:\"size_after\";i:5807;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6100000000000003;s:5:\"bytes\";i:913;s:11:\"size_before\";i:13817;s:10:\"size_after\";i:12904;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4400000000000004;s:5:\"bytes\";i:224;s:11:\"size_before\";i:3480;s:10:\"size_after\";i:3256;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002;s:5:\"bytes\";i:1066;s:11:\"size_before\";i:15247;s:10:\"size_after\";i:14181;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3200000000000003;s:5:\"bytes\";i:1715;s:11:\"size_before\";i:23413;s:10:\"size_after\";i:21698;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.18;s:5:\"bytes\";i:14428;s:11:\"size_before\";i:89171;s:10:\"size_after\";i:74743;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2603", "396", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.631925004882495;s:5:\"bytes\";i:18846;s:11:\"size_before\";i:138249;s:10:\"size_after\";i:119403;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000006;s:5:\"bytes\";i:442;s:11:\"size_before\";i:4972;s:10:\"size_after\";i:4530;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3000000000000007;s:5:\"bytes\";i:1163;s:11:\"size_before\";i:12504;s:10:\"size_after\";i:11341;s:4:\"time\";d:0.040000000000000001;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6900000000000004;s:5:\"bytes\";i:205;s:11:\"size_before\";i:2667;s:10:\"size_after\";i:2462;s:4:\"time\";d:0.040000000000000001;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999;s:5:\"bytes\";i:1271;s:11:\"size_before\";i:13855;s:10:\"size_after\";i:12584;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000004;s:5:\"bytes\";i:1960;s:11:\"size_before\";i:22015;s:10:\"size_after\";i:20055;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.789999999999999;s:5:\"bytes\";i:13805;s:11:\"size_before\";i:82236;s:10:\"size_after\";i:68431;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2604", "395", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.839195909765483;s:5:\"bytes\";i:31897;s:11:\"size_before\";i:214951;s:10:\"size_after\";i:183054;s:4:\"time\";d:0.28000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:270;s:11:\"size_before\";i:6735;s:10:\"size_after\";i:6465;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:22388;s:10:\"size_after\";i:21314;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6100000000000003;s:5:\"bytes\";i:150;s:11:\"size_before\";i:3256;s:10:\"size_after\";i:3106;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:25801;s:10:\"size_after\";i:24588;s:4:\"time\";d:0.070000000000000007;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9700000000000002;s:5:\"bytes\";i:1861;s:11:\"size_before\";i:46837;s:10:\"size_after\";i:44976;s:4:\"time\";d:0.12;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.859999999999999;s:5:\"bytes\";i:27329;s:11:\"size_before\";i:109934;s:10:\"size_after\";i:82605;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2605", "391", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:40.591995553085049;s:5:\"bytes\";i:5842;s:11:\"size_before\";i:14392;s:10:\"size_after\";i:8550;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.109999999999999;s:5:\"bytes\";i:430;s:11:\"size_before\";i:4254;s:10:\"size_after\";i:3824;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7100000000000009;s:5:\"bytes\";i:217;s:11:\"size_before\";i:2234;s:10:\"size_after\";i:2017;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.730000000000004;s:5:\"bytes\";i:5195;s:11:\"size_before\";i:7904;s:10:\"size_after\";i:2709;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2606", "390", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:48.997630763623107;s:5:\"bytes\";i:5377;s:11:\"size_before\";i:10974;s:10:\"size_after\";i:5597;s:4:\"time\";d:0.080000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000005;s:5:\"bytes\";i:256;s:11:\"size_before\";i:2751;s:10:\"size_after\";i:2495;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992;s:5:\"bytes\";i:130;s:11:\"size_before\";i:1508;s:10:\"size_after\";i:1378;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.329999999999998;s:5:\"bytes\";i:4991;s:11:\"size_before\";i:6715;s:10:\"size_after\";i:1724;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2607", "389", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:57.170131523122613;s:5:\"bytes\";i:5390;s:11:\"size_before\";i:9428;s:10:\"size_after\";i:4038;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.529999999999999;s:5:\"bytes\";i:296;s:11:\"size_before\";i:1906;s:10:\"size_after\";i:1610;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.789999999999999;s:5:\"bytes\";i:177;s:11:\"size_before\";i:1384;s:10:\"size_after\";i:1207;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:80.109999999999999;s:5:\"bytes\";i:4917;s:11:\"size_before\";i:6138;s:10:\"size_after\";i:1221;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2608", "388", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.386113775547848;s:5:\"bytes\";i:5338;s:11:\"size_before\";i:13553;s:10:\"size_after\";i:8215;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:316;s:11:\"size_before\";i:3950;s:10:\"size_after\";i:3634;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994;s:5:\"bytes\";i:196;s:11:\"size_before\";i:2212;s:10:\"size_after\";i:2016;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.299999999999997;s:5:\"bytes\";i:4826;s:11:\"size_before\";i:7391;s:10:\"size_after\";i:2565;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2609", "387", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:51.745797154997234;s:5:\"bytes\";i:5602;s:11:\"size_before\";i:10826;s:10:\"size_after\";i:5224;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.15;s:5:\"bytes\";i:252;s:11:\"size_before\";i:2482;s:10:\"size_after\";i:2230;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.73;s:5:\"bytes\";i:161;s:11:\"size_before\";i:1501;s:10:\"size_after\";i:1340;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.829999999999998;s:5:\"bytes\";i:5189;s:11:\"size_before\";i:6843;s:10:\"size_after\";i:1654;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2610", "386", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:41.256646446491423;s:5:\"bytes\";i:5509;s:11:\"size_before\";i:13353;s:10:\"size_after\";i:7844;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992;s:5:\"bytes\";i:320;s:11:\"size_before\";i:3940;s:10:\"size_after\";i:3620;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999998;s:5:\"bytes\";i:181;s:11:\"size_before\";i:1954;s:10:\"size_after\";i:1773;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.140000000000001;s:5:\"bytes\";i:5008;s:11:\"size_before\";i:7459;s:10:\"size_after\";i:2451;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2611", "385", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.601131817738317;s:5:\"bytes\";i:1189;s:11:\"size_before\";i:10249;s:10:\"size_after\";i:9060;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5500000000000007;s:5:\"bytes\";i:396;s:11:\"size_before\";i:4145;s:10:\"size_after\";i:3749;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6999999999999993;s:5:\"bytes\";i:192;s:11:\"size_before\";i:1980;s:10:\"size_after\";i:1788;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.57;s:5:\"bytes\";i:601;s:11:\"size_before\";i:4124;s:10:\"size_after\";i:3523;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("2612", "384", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:44.331627758234731;s:5:\"bytes\";i:5545;s:11:\"size_before\";i:12508;s:10:\"size_after\";i:6963;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.49;s:5:\"bytes\";i:430;s:11:\"size_before\";i:3444;s:10:\"size_after\";i:3014;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.289999999999999;s:5:\"bytes\";i:196;s:11:\"size_before\";i:1904;s:10:\"size_after\";i:1708;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.700000000000003;s:5:\"bytes\";i:4919;s:11:\"size_before\";i:7160;s:10:\"size_after\";i:2241;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2613", "383", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.952153110047846;s:5:\"bytes\";i:5177;s:11:\"size_before\";i:12958;s:10:\"size_after\";i:7781;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0700000000000003;s:5:\"bytes\";i:353;s:11:\"size_before\";i:3890;s:10:\"size_after\";i:3537;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000008;s:5:\"bytes\";i:156;s:11:\"size_before\";i:1920;s:10:\"size_after\";i:1764;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.299999999999997;s:5:\"bytes\";i:4668;s:11:\"size_before\";i:7148;s:10:\"size_after\";i:2480;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2614", "382", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.5661312115298;s:5:\"bytes\";i:5271;s:11:\"size_before\";i:13322;s:10:\"size_after\";i:8051;s:4:\"time\";d:0.029999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999;s:5:\"bytes\";i:303;s:11:\"size_before\";i:4086;s:10:\"size_after\";i:3783;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000001;s:5:\"bytes\";i:172;s:11:\"size_before\";i:1947;s:10:\"size_after\";i:1775;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.799999999999997;s:5:\"bytes\";i:4796;s:11:\"size_before\";i:7289;s:10:\"size_after\";i:2493;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2615", "381", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.10254621555633;s:5:\"bytes\";i:5462;s:11:\"size_before\";i:14335;s:10:\"size_after\";i:8873;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2100000000000009;s:5:\"bytes\";i:357;s:11:\"size_before\";i:4346;s:10:\"size_after\";i:3989;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07;s:5:\"bytes\";i:231;s:11:\"size_before\";i:2294;s:10:\"size_after\";i:2063;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.340000000000003;s:5:\"bytes\";i:4874;s:11:\"size_before\";i:7695;s:10:\"size_after\";i:2821;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2616", "380", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:42.18671992011982;s:5:\"bytes\";i:5915;s:11:\"size_before\";i:14021;s:10:\"size_after\";i:8106;s:4:\"time\";d:0.070000000000000007;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.890000000000001;s:5:\"bytes\";i:542;s:11:\"size_before\";i:4206;s:10:\"size_after\";i:3664;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.470000000000001;s:5:\"bytes\";i:250;s:11:\"size_before\";i:2180;s:10:\"size_after\";i:1930;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.099999999999994;s:5:\"bytes\";i:5123;s:11:\"size_before\";i:7635;s:10:\"size_after\";i:2512;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2617", "379", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:43.151214982200898;s:5:\"bytes\";i:5576;s:11:\"size_before\";i:12922;s:10:\"size_after\";i:7346;s:4:\"time\";d:0.040000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:359;s:11:\"size_before\";i:3591;s:10:\"size_after\";i:3232;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7100000000000009;s:5:\"bytes\";i:200;s:11:\"size_before\";i:2059;s:10:\"size_after\";i:1859;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.989999999999995;s:5:\"bytes\";i:5017;s:11:\"size_before\";i:7272;s:10:\"size_after\";i:2255;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2618", "378", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:44.517465533252377;s:5:\"bytes\";i:6232;s:11:\"size_before\";i:13999;s:10:\"size_after\";i:7767;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.75;s:5:\"bytes\";i:665;s:11:\"size_before\";i:3969;s:10:\"size_after\";i:3304;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.06;s:5:\"bytes\";i:266;s:11:\"size_before\";i:2205;s:10:\"size_after\";i:1939;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.739999999999995;s:5:\"bytes\";i:5301;s:11:\"size_before\";i:7825;s:10:\"size_after\";i:2524;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2619", "353", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0862794534769469;s:5:\"bytes\";i:3283;s:11:\"size_before\";i:53941;s:10:\"size_after\";i:50658;s:4:\"time\";d:0.20999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:149;s:11:\"size_before\";i:3656;s:10:\"size_after\";i:3507;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.96;s:5:\"bytes\";i:149;s:11:\"size_before\";i:3762;s:10:\"size_after\";i:3613;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0499999999999998;s:5:\"bytes\";i:820;s:11:\"size_before\";i:13560;s:10:\"size_after\";i:12740;s:4:\"time\";d:0.10000000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46;s:5:\"bytes\";i:1580;s:11:\"size_before\";i:21191;s:10:\"size_after\";i:19611;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.41;s:5:\"bytes\";i:131;s:11:\"size_before\";i:1148;s:10:\"size_after\";i:1017;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8100000000000001;s:5:\"bytes\";i:154;s:11:\"size_before\";i:4038;s:10:\"size_after\";i:3884;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5599999999999996;s:5:\"bytes\";i:300;s:11:\"size_before\";i:6586;s:10:\"size_after\";i:6286;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2620", "352", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3202123857660695;s:5:\"bytes\";i:4231;s:11:\"size_before\";i:97935;s:10:\"size_after\";i:93704;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:195;s:11:\"size_before\";i:4643;s:10:\"size_after\";i:4448;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5300000000000002;s:5:\"bytes\";i:297;s:11:\"size_before\";i:6553;s:10:\"size_after\";i:6256;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1600000000000001;s:5:\"bytes\";i:1099;s:11:\"size_before\";i:26423;s:10:\"size_after\";i:25324;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:1708;s:11:\"size_before\";i:39653;s:10:\"size_after\";i:37945;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9499999999999993;s:5:\"bytes\";i:136;s:11:\"size_before\";i:1519;s:10:\"size_after\";i:1383;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3200000000000003;s:5:\"bytes\";i:316;s:11:\"size_before\";i:7314;s:10:\"size_after\";i:6998;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0599999999999996;s:5:\"bytes\";i:480;s:11:\"size_before\";i:11830;s:10:\"size_after\";i:11350;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2621", "351", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0627544716105906;s:5:\"bytes\";i:5986;s:11:\"size_before\";i:98734;s:10:\"size_after\";i:92748;s:4:\"time\";d:0.20000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999998;s:5:\"bytes\";i:285;s:11:\"size_before\";i:5693;s:10:\"size_after\";i:5408;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9199999999999999;s:5:\"bytes\";i:421;s:11:\"size_before\";i:7117;s:10:\"size_after\";i:6696;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000001;s:5:\"bytes\";i:1498;s:11:\"size_before\";i:25707;s:10:\"size_after\";i:24209;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3899999999999997;s:5:\"bytes\";i:2441;s:11:\"size_before\";i:38197;s:10:\"size_after\";i:35756;s:4:\"time\";d:0.12;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2899999999999991;s:5:\"bytes\";i:141;s:11:\"size_before\";i:1701;s:10:\"size_after\";i:1560;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7800000000000002;s:5:\"bytes\";i:462;s:11:\"size_before\";i:7996;s:10:\"size_after\";i:7534;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002;s:5:\"bytes\";i:738;s:11:\"size_before\";i:12323;s:10:\"size_after\";i:11585;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("2622", "407", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.611916264090176;s:5:\"bytes\";i:12928;s:11:\"size_before\";i:62721;s:10:\"size_after\";i:49793;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57;s:5:\"bytes\";i:223;s:11:\"size_before\";i:2109;s:10:\"size_after\";i:1886;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.109999999999999;s:5:\"bytes\";i:598;s:11:\"size_before\";i:4560;s:10:\"size_after\";i:3962;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:159;s:11:\"size_before\";i:1413;s:10:\"size_after\";i:1254;s:4:\"time\";d:0.029999999999999999;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.220000000000001;s:5:\"bytes\";i:746;s:11:\"size_before\";i:4901;s:10:\"size_after\";i:4155;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.399999999999999;s:5:\"bytes\";i:1481;s:11:\"size_before\";i:8049;s:10:\"size_after\";i:6568;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.32;s:5:\"bytes\";i:9721;s:11:\"size_before\";i:41689;s:10:\"size_after\";i:31968;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2626", "351", "_wp_attachment_image_alt", "SEGURIDAD SANDI ELECTRONICA PEREZ ZELEDON");
INSERT INTO `wp_postmeta` VALUES("2627", "352", "_wp_attachment_image_alt", "Seguridad electronica sandi perez zeledon");
INSERT INTO `wp_postmeta` VALUES("2628", "38", "_thumbnail_id", "352");
INSERT INTO `wp_postmeta` VALUES("2629", "38", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2636", "533", "_wp_attachment_image_alt", "WD Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2635", "522", "_wp_attachment_image_alt", "Altronix Seguridad sandi");
INSERT INTO `wp_postmeta` VALUES("2637", "532", "_wp_attachment_image_alt", "Spectra Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2638", "531", "_wp_attachment_image_alt", "Paradox Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2639", "529", "_wp_attachment_image_alt", "Mg");
INSERT INTO `wp_postmeta` VALUES("2640", "530", "_wp_attachment_image_alt", "Optex Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2641", "528", "_wp_attachment_image_alt", "linksys");
INSERT INTO `wp_postmeta` VALUES("2642", "527", "_wp_attachment_image_alt", "Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2643", "526", "_wp_attachment_image_alt", "Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2644", "525", "_wp_attachment_image_alt", "Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2645", "524", "_wp_attachment_image_alt", "Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2646", "523", "_wp_attachment_image_alt", "Sandi seguridad electronica");
INSERT INTO `wp_postmeta` VALUES("2647", "482", "_wp_attachment_image_alt", "sanditec");
INSERT INTO `wp_postmeta` VALUES("2658", "404", "_wp_attachment_image_alt", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2659", "417", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.048124163287792;s:5:\"bytes\";i:17248;s:11:\"size_before\";i:156117;s:10:\"size_after\";i:138869;s:4:\"time\";d:0.16000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4233;s:10:\"size_after\";i:4233;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:544;s:11:\"size_before\";i:11837;s:10:\"size_after\";i:11293;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992;s:5:\"bytes\";i:193;s:11:\"size_before\";i:2378;s:10:\"size_after\";i:2185;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7000000000000002;s:5:\"bytes\";i:747;s:11:\"size_before\";i:13108;s:10:\"size_after\";i:12361;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4800000000000004;s:5:\"bytes\";i:1367;s:11:\"size_before\";i:21086;s:10:\"size_after\";i:19719;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.91;s:5:\"bytes\";i:14397;s:11:\"size_before\";i:103475;s:10:\"size_after\";i:89078;s:4:\"time\";d:0.050000000000000003;}}}");
INSERT INTO `wp_postmeta` VALUES("2660", "412", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0464751213014942;s:5:\"bytes\";i:15214;s:11:\"size_before\";i:168176;s:10:\"size_after\";i:152962;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3983;s:10:\"size_after\";i:3983;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10186;s:10:\"size_after\";i:10186;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2177;s:10:\"size_after\";i:2177;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:640;s:11:\"size_before\";i:12089;s:10:\"size_after\";i:11449;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:1174;s:11:\"size_before\";i:20253;s:10:\"size_after\";i:19079;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.210000000000001;s:5:\"bytes\";i:13400;s:11:\"size_before\";i:119488;s:10:\"size_after\";i:106088;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("2716", "574", "_wp_attached_file", "2017/01/hqdefault.jpg");
INSERT INTO `wp_postmeta` VALUES("2717", "574", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2017/01/hqdefault.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hqdefault-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:21:\"hqdefault-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:19:\"hqdefault-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"hqdefault-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:21:\"hqdefault-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"hqdefault-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2719", "573", "_wp_attachment_image_alt", "Beam 355 detector de humo");
INSERT INTO `wp_postmeta` VALUES("2720", "574", "_wp_attachment_image_alt", "Beam 355");
INSERT INTO `wp_postmeta` VALUES("2721", "569", "_thumbnail_id", "574");
INSERT INTO `wp_postmeta` VALUES("2722", "569", "_yoast_wpseo_focuskw_text_input", "Beam 355");
INSERT INTO `wp_postmeta` VALUES("2723", "569", "_yoast_wpseo_focuskw", "Beam 355");
INSERT INTO `wp_postmeta` VALUES("2724", "569", "_yoast_wpseo_metadesc", "Beam 355 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2725", "569", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2726", "575", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2727", "576", "_wp_attached_file", "2017/01/ann803.jpg");
INSERT INTO `wp_postmeta` VALUES("2728", "576", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2017/01/ann803.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ann803-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:\"ann803-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:16:\"ann803-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"ann803-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:18:\"ann803-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"ann803-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2729", "576", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.177373698603848;s:5:\"bytes\";i:22070;s:11:\"size_before\";i:104215;s:10:\"size_after\";i:82145;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7800000000000002;s:5:\"bytes\";i:284;s:11:\"size_before\";i:4910;s:10:\"size_after\";i:4626;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996;s:5:\"bytes\";i:631;s:11:\"size_before\";i:13000;s:10:\"size_after\";i:12369;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.039999999999999;s:5:\"bytes\";i:124;s:11:\"size_before\";i:1030;s:10:\"size_after\";i:906;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3899999999999997;s:5:\"bytes\";i:138;s:11:\"size_before\";i:2561;s:10:\"size_after\";i:2423;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3700000000000001;s:5:\"bytes\";i:793;s:11:\"size_before\";i:14766;s:10:\"size_after\";i:13973;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000004;s:5:\"bytes\";i:1281;s:11:\"size_before\";i:24872;s:10:\"size_after\";i:23591;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.689999999999998;s:5:\"bytes\";i:18819;s:11:\"size_before\";i:43076;s:10:\"size_after\";i:24257;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2730", "577", "_wp_attached_file", "2017/01/ann802.jpg");
INSERT INTO `wp_postmeta` VALUES("2731", "577", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2017/01/ann802.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ann802-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:\"ann802-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:16:\"ann802-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"ann802-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:18:\"ann802-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"ann802-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2732", "577", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.146256892896947;s:5:\"bytes\";i:24911;s:11:\"size_before\";i:137279;s:10:\"size_after\";i:112368;s:4:\"time\";d:0.14999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0300000000000002;s:5:\"bytes\";i:335;s:11:\"size_before\";i:5556;s:10:\"size_after\";i:5221;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1399999999999997;s:5:\"bytes\";i:872;s:11:\"size_before\";i:16964;s:10:\"size_after\";i:16092;s:4:\"time\";d:0.029999999999999999;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.07;s:5:\"bytes\";i:149;s:11:\"size_before\";i:1059;s:10:\"size_after\";i:910;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002;s:5:\"bytes\";i:174;s:11:\"size_before\";i:2680;s:10:\"size_after\";i:2506;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:878;s:11:\"size_before\";i:18700;s:10:\"size_after\";i:17822;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999998;s:5:\"bytes\";i:1726;s:11:\"size_before\";i:32785;s:10:\"size_after\";i:31059;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.899999999999999;s:5:\"bytes\";i:20777;s:11:\"size_before\";i:59535;s:10:\"size_after\";i:38758;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2733", "578", "_wp_attached_file", "2017/01/ann80.jpg");
INSERT INTO `wp_postmeta` VALUES("2734", "578", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2017/01/ann80.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ann80-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:\"ann80-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:15:\"ann80-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"ann80-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:\"ann80-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"ann80-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2735", "578", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.730446874882549;s:5:\"bytes\";i:22063;s:11:\"size_before\";i:106428;s:10:\"size_after\";i:84365;s:4:\"time\";d:0.10000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6100000000000003;s:5:\"bytes\";i:301;s:11:\"size_before\";i:5365;s:10:\"size_after\";i:5064;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000001;s:5:\"bytes\";i:624;s:11:\"size_before\";i:13631;s:10:\"size_after\";i:13007;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.24;s:5:\"bytes\";i:137;s:11:\"size_before\";i:1119;s:10:\"size_after\";i:982;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996;s:5:\"bytes\";i:168;s:11:\"size_before\";i:2871;s:10:\"size_after\";i:2703;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4299999999999997;s:5:\"bytes\";i:676;s:11:\"size_before\";i:15258;s:10:\"size_after\";i:14582;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4800000000000004;s:5:\"bytes\";i:1076;s:11:\"size_before\";i:23993;s:10:\"size_after\";i:22917;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.18;s:5:\"bytes\";i:19081;s:11:\"size_before\";i:44191;s:10:\"size_after\";i:25110;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2736", "578", "_wp_attachment_image_alt", "ANN 80");
INSERT INTO `wp_postmeta` VALUES("2737", "576", "_wp_attachment_image_alt", "ANN 80");
INSERT INTO `wp_postmeta` VALUES("2738", "577", "_wp_attachment_image_alt", "ANN 80");
INSERT INTO `wp_postmeta` VALUES("2739", "575", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2740", "575", "_edit_lock", "1483411097:1");
INSERT INTO `wp_postmeta` VALUES("2741", "575", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2742", "575", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2743", "575", "_thumbnail_id", "578");
INSERT INTO `wp_postmeta` VALUES("2744", "575", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2745", "575", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2746", "575", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2747", "575", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2748", "575", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2749", "575", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2750", "575", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2751", "575", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2752", "575", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2753", "575", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2754", "575", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2755", "575", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2756", "575", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2757", "575", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2758", "575", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2759", "575", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2760", "575", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2761", "575", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2762", "575", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2763", "575", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2764", "575", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2765", "575", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2766", "575", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2767", "575", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2768", "575", "_product_image_gallery", "576,577");
INSERT INTO `wp_postmeta` VALUES("2769", "575", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2770", "575", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2771", "575", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2772", "575", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2773", "575", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2774", "575", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2775", "575", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2776", "575", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2777", "575", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2778", "575", "_yoast_wpseo_focuskw_text_input", "ANN80");
INSERT INTO `wp_postmeta` VALUES("2779", "575", "_yoast_wpseo_focuskw", "ANN80");
INSERT INTO `wp_postmeta` VALUES("2780", "575", "_yoast_wpseo_metadesc", "ANN 80 Anunciador LCD FireLite SES| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2781", "575", "_yoast_wpseo_linkdex", "50");
INSERT INTO `wp_postmeta` VALUES("2782", "575", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2783", "579", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2784", "579", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2785", "579", "_edit_lock", "1483411452:1");
INSERT INTO `wp_postmeta` VALUES("2786", "580", "_wp_attached_file", "2017/01/sd992.jpg");
INSERT INTO `wp_postmeta` VALUES("2787", "580", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2017/01/sd992.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"sd992-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:\"sd992-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:15:\"sd992-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"sd992-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:\"sd992-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"sd992-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2788", "580", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.505261974003435;s:5:\"bytes\";i:17119;s:11:\"size_before\";i:62239;s:10:\"size_after\";i:45120;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000004;s:5:\"bytes\";i:220;s:11:\"size_before\";i:3440;s:10:\"size_after\";i:3220;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6600000000000001;s:5:\"bytes\";i:511;s:11:\"size_before\";i:7672;s:10:\"size_after\";i:7161;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.609999999999999;s:5:\"bytes\";i:150;s:11:\"size_before\";i:1027;s:10:\"size_after\";i:877;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6799999999999997;s:5:\"bytes\";i:139;s:11:\"size_before\";i:2080;s:10:\"size_after\";i:1941;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995;s:5:\"bytes\";i:697;s:11:\"size_before\";i:8508;s:10:\"size_after\";i:7811;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006;s:5:\"bytes\";i:1305;s:11:\"size_before\";i:13428;s:10:\"size_after\";i:12123;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:54.039999999999999;s:5:\"bytes\";i:14097;s:11:\"size_before\";i:26084;s:10:\"size_after\";i:11987;s:4:\"time\";d:0.11;}}}");
INSERT INTO `wp_postmeta` VALUES("2789", "580", "_wp_attachment_image_alt", "SD992");
INSERT INTO `wp_postmeta` VALUES("2790", "579", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2791", "579", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2792", "579", "_thumbnail_id", "580");
INSERT INTO `wp_postmeta` VALUES("2793", "579", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2794", "579", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2795", "579", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2796", "579", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2797", "579", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2798", "579", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2799", "579", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2800", "579", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2801", "579", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2802", "579", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2803", "579", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2804", "579", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2805", "579", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2806", "579", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2807", "579", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2808", "579", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2809", "579", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2810", "579", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2811", "579", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2812", "579", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2813", "579", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2814", "579", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2815", "579", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2816", "579", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2817", "579", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("2818", "579", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2819", "579", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2820", "579", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2821", "579", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2822", "579", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2823", "579", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2824", "579", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2825", "579", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2826", "579", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2827", "579", "_yoast_wpseo_metadesc", "SD992 Detector de humo| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2828", "579", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2829", "581", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2830", "582", "_wp_attached_file", "2017/01/FLFCPS24FS6NNB-D.jpg");
INSERT INTO `wp_postmeta` VALUES("2831", "582", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:28:\"2017/01/FLFCPS24FS6NNB-D.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FLFCPS24FS6NNB-D-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:\"FLFCPS24FS6NNB-D-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:26:\"FLFCPS24FS6NNB-D-30x20.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"FLFCPS24FS6NNB-D-90x60.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"FLFCPS24FS6NNB-D-325x217.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"FLFCPS24FS6NNB-D-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2832", "582", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.4553195037179472;s:5:\"bytes\";i:6631;s:11:\"size_before\";i:191907;s:10:\"size_after\";i:185276;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8500000000000001;s:5:\"bytes\";i:236;s:11:\"size_before\";i:6131;s:10:\"size_after\";i:5895;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000001;s:5:\"bytes\";i:514;s:11:\"size_before\";i:13416;s:10:\"size_after\";i:12902;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.67;s:5:\"bytes\";i:143;s:11:\"size_before\";i:975;s:10:\"size_after\";i:832;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2699999999999996;s:5:\"bytes\";i:145;s:11:\"size_before\";i:2314;s:10:\"size_after\";i:2169;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.71;s:5:\"bytes\";i:568;s:11:\"size_before\";i:15293;s:10:\"size_after\";i:14725;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6400000000000001;s:5:\"bytes\";i:954;s:11:\"size_before\";i:26229;s:10:\"size_after\";i:25275;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1899999999999999;s:5:\"bytes\";i:4071;s:11:\"size_before\";i:127549;s:10:\"size_after\";i:123478;s:4:\"time\";d:0.10000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2940", "590", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.587830190950903;s:5:\"bytes\";i:18761;s:11:\"size_before\";i:83058;s:10:\"size_after\";i:64297;s:4:\"time\";d:0.22999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999998;s:5:\"bytes\";i:213;s:11:\"size_before\";i:4254;s:10:\"size_after\";i:4041;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1600000000000001;s:5:\"bytes\";i:445;s:11:\"size_before\";i:10691;s:10:\"size_after\";i:10246;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.359999999999999;s:5:\"bytes\";i:141;s:11:\"size_before\";i:1055;s:10:\"size_after\";i:914;s:4:\"time\";d:0.029999999999999999;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4800000000000004;s:5:\"bytes\";i:150;s:11:\"size_before\";i:2314;s:10:\"size_after\";i:2164;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1399999999999997;s:5:\"bytes\";i:610;s:11:\"size_before\";i:11858;s:10:\"size_after\";i:11248;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0199999999999996;s:5:\"bytes\";i:1123;s:11:\"size_before\";i:18645;s:10:\"size_after\";i:17522;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.960000000000001;s:5:\"bytes\";i:16079;s:11:\"size_before\";i:34241;s:10:\"size_after\";i:18162;s:4:\"time\";d:0.14000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("2835", "582", "_wp_attachment_image_alt", "FCPS");
INSERT INTO `wp_postmeta` VALUES("2939", "590", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:28:\"2017/01/fir_fcps-24f_can.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"fir_fcps-24f_can-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:\"fir_fcps-24f_can-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:26:\"fir_fcps-24f_can-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"fir_fcps-24f_can-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:28:\"fir_fcps-24f_can-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"fir_fcps-24f_can-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2938", "590", "_wp_attached_file", "2017/01/fir_fcps-24f_can.jpg");
INSERT INTO `wp_postmeta` VALUES("2838", "581", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2839", "581", "_edit_lock", "1483412362:1");
INSERT INTO `wp_postmeta` VALUES("2840", "581", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2841", "581", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2843", "581", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2844", "581", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2845", "581", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2846", "581", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2847", "581", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2848", "581", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2849", "581", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2850", "581", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2851", "581", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2852", "581", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2853", "581", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2854", "581", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2855", "581", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2856", "581", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2857", "581", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2858", "581", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2859", "581", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2860", "581", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2861", "581", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2862", "581", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2863", "581", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2864", "581", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2865", "581", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2866", "581", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2867", "581", "_product_image_gallery", "582");
INSERT INTO `wp_postmeta` VALUES("2868", "581", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2869", "581", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2870", "581", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2871", "581", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2872", "581", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2873", "581", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2874", "581", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2875", "581", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2876", "581", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2877", "581", "_yoast_wpseo_focuskw_text_input", "FCPS");
INSERT INTO `wp_postmeta` VALUES("2878", "581", "_yoast_wpseo_focuskw", "FCPS");
INSERT INTO `wp_postmeta` VALUES("2879", "581", "_yoast_wpseo_metadesc", "FCPS Fuente de energia| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2880", "581", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("2881", "581", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2882", "584", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2883", "584", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2884", "584", "_edit_lock", "1483412113:1");
INSERT INTO `wp_postmeta` VALUES("2942", "581", "_thumbnail_id", "590");
INSERT INTO `wp_postmeta` VALUES("2935", "584", "_thumbnail_id", "587");
INSERT INTO `wp_postmeta` VALUES("2941", "590", "_wp_attachment_image_alt", "FCPS");
INSERT INTO `wp_postmeta` VALUES("2933", "587", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2017/01/wsd.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"wsd-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:\"wsd-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:13:\"wsd-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"wsd-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:15:\"wsd-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"wsd-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2934", "587", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.583383974303324;s:5:\"bytes\";i:21339;s:11:\"size_before\";i:103671;s:10:\"size_after\";i:82332;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999998;s:5:\"bytes\";i:241;s:11:\"size_before\";i:5347;s:10:\"size_after\";i:5106;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.73;s:5:\"bytes\";i:533;s:11:\"size_before\";i:14287;s:10:\"size_after\";i:13754;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.07;s:5:\"bytes\";i:148;s:11:\"size_before\";i:1052;s:10:\"size_after\";i:904;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0199999999999996;s:5:\"bytes\";i:169;s:11:\"size_before\";i:2809;s:10:\"size_after\";i:2640;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000001;s:5:\"bytes\";i:613;s:11:\"size_before\";i:16013;s:10:\"size_after\";i:15400;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6499999999999999;s:5:\"bytes\";i:955;s:11:\"size_before\";i:26191;s:10:\"size_after\";i:25236;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.189999999999998;s:5:\"bytes\";i:18680;s:11:\"size_before\";i:37972;s:10:\"size_after\";i:19292;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2932", "587", "_wp_attached_file", "2017/01/wsd.jpg");
INSERT INTO `wp_postmeta` VALUES("2889", "584", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2890", "584", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2943", "591", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2892", "584", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2893", "584", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2894", "584", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2895", "584", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2896", "584", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2897", "584", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2898", "584", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2899", "584", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2900", "584", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2901", "584", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2902", "584", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2903", "584", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2904", "584", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2905", "584", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2906", "584", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2907", "584", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2908", "584", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2909", "584", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2910", "584", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2911", "584", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2912", "584", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2913", "584", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2914", "584", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2915", "584", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2916", "584", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("2917", "584", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2918", "584", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("2919", "584", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2920", "584", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2921", "584", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2922", "584", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2923", "584", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2924", "584", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2925", "584", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2926", "584", "_yoast_wpseo_focuskw_text_input", "W-SD355");
INSERT INTO `wp_postmeta` VALUES("2927", "584", "_yoast_wpseo_focuskw", "W-SD355");
INSERT INTO `wp_postmeta` VALUES("2928", "584", "_yoast_wpseo_metadesc", "W-SD355| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2929", "584", "_yoast_wpseo_linkdex", "47");
INSERT INTO `wp_postmeta` VALUES("2930", "584", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2944", "591", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2945", "591", "_edit_lock", "1483412861:1");
INSERT INTO `wp_postmeta` VALUES("2946", "591", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("2947", "591", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2951", "591", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("2952", "591", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("2953", "591", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2954", "591", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2955", "591", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("2956", "591", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("2957", "591", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2958", "591", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2959", "591", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2960", "591", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2961", "591", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2962", "591", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2963", "591", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2964", "591", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2965", "591", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2966", "591", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2967", "591", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2968", "591", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("2969", "591", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2970", "591", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("2971", "591", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("2972", "591", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2973", "591", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2974", "591", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("2975", "591", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("2976", "591", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("2977", "591", "_yoast_wpseo_primary_product_cat", "");
INSERT INTO `wp_postmeta` VALUES("2978", "591", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2979", "591", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("2980", "591", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2981", "591", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("2982", "591", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2983", "591", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("2984", "591", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("2985", "591", "_yoast_wpseo_focuskw_text_input", "MDL3");
INSERT INTO `wp_postmeta` VALUES("2986", "591", "_yoast_wpseo_focuskw", "MDL3");
INSERT INTO `wp_postmeta` VALUES("2987", "591", "_yoast_wpseo_metadesc", "Módulo de sincronización MDL3| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("2988", "591", "_yoast_wpseo_linkdex", "51");
INSERT INTO `wp_postmeta` VALUES("2989", "591", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2990", "595", "_wp_attached_file", "2017/01/mdl3.jpg");
INSERT INTO `wp_postmeta` VALUES("2991", "595", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:16:\"2017/01/mdl3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"mdl3-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:\"mdl3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:14:\"mdl3-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"mdl3-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:16:\"mdl3-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"mdl3-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2992", "595", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.615567859902136;s:5:\"bytes\";i:17157;s:11:\"size_before\";i:62128;s:10:\"size_after\";i:44971;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9199999999999999;s:5:\"bytes\";i:197;s:11:\"size_before\";i:3325;s:10:\"size_after\";i:3128;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4100000000000001;s:5:\"bytes\";i:558;s:11:\"size_before\";i:7533;s:10:\"size_after\";i:6975;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.26;s:5:\"bytes\";i:139;s:11:\"size_before\";i:1048;s:10:\"size_after\";i:909;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8600000000000003;s:5:\"bytes\";i:140;s:11:\"size_before\";i:2041;s:10:\"size_after\";i:1901;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006;s:5:\"bytes\";i:738;s:11:\"size_before\";i:8459;s:10:\"size_after\";i:7721;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.26;s:5:\"bytes\";i:1381;s:11:\"size_before\";i:13461;s:10:\"size_after\";i:12080;s:4:\"time\";d:0.070000000000000007;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:53.329999999999998;s:5:\"bytes\";i:14004;s:11:\"size_before\";i:26261;s:10:\"size_after\";i:12257;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2993", "595", "_wp_attachment_image_alt", "MDL3");
INSERT INTO `wp_postmeta` VALUES("2994", "591", "_thumbnail_id", "595");
INSERT INTO `wp_postmeta` VALUES("2995", "596", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("2996", "597", "_wp_attached_file", "2017/01/bocinas.jpg");
INSERT INTO `wp_postmeta` VALUES("2997", "597", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2017/01/bocinas.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bocinas-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:\"bocinas-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:17:\"bocinas-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"bocinas-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:\"bocinas-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"bocinas-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2998", "597", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.063986653750941;s:5:\"bytes\";i:17143;s:11:\"size_before\";i:74328;s:10:\"size_after\";i:57185;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3700000000000001;s:5:\"bytes\";i:230;s:11:\"size_before\";i:3121;s:10:\"size_after\";i:2891;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.25;s:5:\"bytes\";i:675;s:11:\"size_before\";i:8181;s:10:\"size_after\";i:7506;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.31;s:5:\"bytes\";i:130;s:11:\"size_before\";i:977;s:10:\"size_after\";i:847;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6900000000000004;s:5:\"bytes\";i:140;s:11:\"size_before\";i:1821;s:10:\"size_after\";i:1681;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2899999999999991;s:5:\"bytes\";i:869;s:11:\"size_before\";i:9351;s:10:\"size_after\";i:8482;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000001;s:5:\"bytes\";i:1611;s:11:\"size_before\";i:16383;s:10:\"size_after\";i:14772;s:4:\"time\";d:0.050000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.100000000000001;s:5:\"bytes\";i:13488;s:11:\"size_before\";i:34494;s:10:\"size_after\";i:21006;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("2999", "597", "_wp_attachment_image_alt", "Bocinas");
INSERT INTO `wp_postmeta` VALUES("3000", "596", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3001", "596", "_edit_lock", "1483413185:1");
INSERT INTO `wp_postmeta` VALUES("3002", "596", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3003", "596", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3004", "596", "_thumbnail_id", "597");
INSERT INTO `wp_postmeta` VALUES("3005", "596", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3006", "596", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3007", "596", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3008", "596", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3009", "596", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3010", "596", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3011", "596", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3012", "596", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3013", "596", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3014", "596", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3015", "596", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3016", "596", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3017", "596", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3018", "596", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3019", "596", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3020", "596", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3021", "596", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3022", "596", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3023", "596", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3024", "596", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3025", "596", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3026", "596", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3027", "596", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3028", "596", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3029", "596", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3030", "596", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3031", "596", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3032", "596", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3033", "596", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3034", "596", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3035", "596", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3036", "596", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3037", "596", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3038", "596", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3039", "596", "_yoast_wpseo_focuskw_text_input", "MHR/MHW");
INSERT INTO `wp_postmeta` VALUES("3040", "596", "_yoast_wpseo_focuskw", "MHR/MHW");
INSERT INTO `wp_postmeta` VALUES("3041", "596", "_yoast_wpseo_metadesc", "MHR/MHW | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3042", "596", "_yoast_wpseo_linkdex", "50");
INSERT INTO `wp_postmeta` VALUES("3043", "596", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("3044", "598", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3045", "599", "_wp_attached_file", "2017/01/xD.jpg");
INSERT INTO `wp_postmeta` VALUES("3046", "599", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:14:\"2017/01/xD.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"xD-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:\"xD-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:12:\"xD-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"xD-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:\"xD-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"xD-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3047", "599", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.958273061088239;s:5:\"bytes\";i:20187;s:11:\"size_before\";i:80883;s:10:\"size_after\";i:60696;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2000000000000002;s:5:\"bytes\";i:259;s:11:\"size_before\";i:4176;s:10:\"size_after\";i:3917;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5599999999999996;s:5:\"bytes\";i:691;s:11:\"size_before\";i:10528;s:10:\"size_after\";i:9837;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.779999999999999;s:5:\"bytes\";i:140;s:11:\"size_before\";i:1016;s:10:\"size_after\";i:876;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2000000000000002;s:5:\"bytes\";i:159;s:11:\"size_before\";i:2207;s:10:\"size_after\";i:2048;s:4:\"time\";d:0.040000000000000001;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002;s:5:\"bytes\";i:818;s:11:\"size_before\";i:11695;s:10:\"size_after\";i:10877;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6399999999999997;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:19055;s:10:\"size_after\";i:17599;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.740000000000002;s:5:\"bytes\";i:16664;s:11:\"size_before\";i:32206;s:10:\"size_after\";i:15542;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("3048", "599", "_wp_attachment_image_alt", "Bocinas Estrobos");
INSERT INTO `wp_postmeta` VALUES("3049", "598", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3050", "598", "_edit_lock", "1483413709:1");
INSERT INTO `wp_postmeta` VALUES("3051", "598", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3052", "598", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3053", "598", "_thumbnail_id", "599");
INSERT INTO `wp_postmeta` VALUES("3054", "598", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3055", "598", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3056", "598", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3057", "598", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3058", "598", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3059", "598", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3060", "598", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3061", "598", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3062", "598", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3063", "598", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3064", "598", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3065", "598", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3066", "598", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3067", "598", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3068", "598", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3069", "598", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3070", "598", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3071", "598", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3072", "598", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3073", "598", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3074", "598", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3075", "598", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3076", "598", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3077", "598", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3078", "598", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3079", "598", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3080", "598", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3081", "598", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3082", "598", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3083", "598", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3084", "598", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3085", "598", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3086", "598", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3087", "598", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3088", "598", "_yoast_wpseo_focuskw_text_input", "SPWK/SPCWK");
INSERT INTO `wp_postmeta` VALUES("3089", "598", "_yoast_wpseo_focuskw", "SPWK/SPCWK");
INSERT INTO `wp_postmeta` VALUES("3090", "598", "_yoast_wpseo_metadesc", "SPWK/SPCWK | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3091", "598", "_yoast_wpseo_linkdex", "51");
INSERT INTO `wp_postmeta` VALUES("3092", "598", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("3093", "600", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3094", "600", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3095", "600", "_edit_lock", "1483414140:1");
INSERT INTO `wp_postmeta` VALUES("3096", "601", "_wp_attached_file", "2017/01/bocinas-1.jpg");
INSERT INTO `wp_postmeta` VALUES("3097", "601", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2017/01/bocinas-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bocinas-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:21:\"bocinas-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:19:\"bocinas-1-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"bocinas-1-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:21:\"bocinas-1-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"bocinas-1-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3098", "601", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.625572768928649;s:5:\"bytes\";i:22486;s:11:\"size_before\";i:114575;s:10:\"size_after\";i:92089;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002;s:5:\"bytes\";i:184;s:11:\"size_before\";i:4617;s:10:\"size_after\";i:4433;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1799999999999997;s:5:\"bytes\";i:686;s:11:\"size_before\";i:13236;s:10:\"size_after\";i:12550;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.460000000000001;s:5:\"bytes\";i:151;s:11:\"size_before\";i:977;s:10:\"size_after\";i:826;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1900000000000004;s:5:\"bytes\";i:119;s:11:\"size_before\";i:2292;s:10:\"size_after\";i:2173;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0599999999999996;s:5:\"bytes\";i:921;s:11:\"size_before\";i:15209;s:10:\"size_after\";i:14288;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.75;s:5:\"bytes\";i:1729;s:11:\"size_before\";i:25599;s:10:\"size_after\";i:23870;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.509999999999998;s:5:\"bytes\";i:18696;s:11:\"size_before\";i:52645;s:10:\"size_after\";i:33949;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("3099", "601", "_wp_attachment_image_alt", "bocinas");
INSERT INTO `wp_postmeta` VALUES("3100", "600", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3101", "600", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3102", "600", "_thumbnail_id", "601");
INSERT INTO `wp_postmeta` VALUES("3103", "600", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3104", "600", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3105", "600", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3106", "600", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3107", "600", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3108", "600", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3109", "600", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3110", "600", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3111", "600", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3112", "600", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3113", "600", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3114", "600", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3115", "600", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3116", "600", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3117", "600", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3118", "600", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3119", "600", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3120", "600", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3121", "600", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3122", "600", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3123", "600", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3124", "600", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3125", "600", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3126", "600", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3127", "600", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3128", "600", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3129", "600", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3130", "600", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3131", "600", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3132", "600", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3133", "600", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3134", "600", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3135", "600", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3136", "600", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3137", "600", "_yoast_wpseo_focuskw_text_input", "SPC");
INSERT INTO `wp_postmeta` VALUES("3138", "600", "_yoast_wpseo_focuskw", "SPC");
INSERT INTO `wp_postmeta` VALUES("3139", "600", "_yoast_wpseo_metadesc", "SP(W)/SPC | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3140", "600", "_yoast_wpseo_linkdex", "50");
INSERT INTO `wp_postmeta` VALUES("3141", "600", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3143", "603", "_wp_attached_file", "2017/01/spectralert.jpg");
INSERT INTO `wp_postmeta` VALUES("3144", "603", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2017/01/spectralert.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"spectralert-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:\"spectralert-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:21:\"spectralert-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"spectralert-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:23:\"spectralert-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"spectralert-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3145", "603", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.721491452316101;s:5:\"bytes\";i:21215;s:11:\"size_before\";i:107573;s:10:\"size_after\";i:86358;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000001;s:5:\"bytes\";i:238;s:11:\"size_before\";i:5201;s:10:\"size_after\";i:4963;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999998;s:5:\"bytes\";i:432;s:11:\"size_before\";i:13232;s:10:\"size_after\";i:12800;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.640000000000001;s:5:\"bytes\";i:140;s:11:\"size_before\";i:1108;s:10:\"size_after\";i:968;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7300000000000004;s:5:\"bytes\";i:130;s:11:\"size_before\";i:2749;s:10:\"size_after\";i:2619;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7000000000000002;s:5:\"bytes\";i:549;s:11:\"size_before\";i:14856;s:10:\"size_after\";i:14307;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000001;s:5:\"bytes\";i:790;s:11:\"size_before\";i:23721;s:10:\"size_after\";i:22931;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.539999999999999;s:5:\"bytes\";i:18936;s:11:\"size_before\";i:46706;s:10:\"size_after\";i:27770;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("3146", "603", "_wp_attachment_image_alt", "Salida direccionable spectralert");
INSERT INTO `wp_postmeta` VALUES("3147", "604", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3148", "604", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3149", "604", "_edit_lock", "1483414570:1");
INSERT INTO `wp_postmeta` VALUES("3150", "604", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3151", "604", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3152", "604", "_thumbnail_id", "603");
INSERT INTO `wp_postmeta` VALUES("3153", "604", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3154", "604", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3155", "604", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3156", "604", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3157", "604", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3158", "604", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3159", "604", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3160", "604", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3161", "604", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3162", "604", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3163", "604", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3164", "604", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3165", "604", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3166", "604", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3167", "604", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3168", "604", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3169", "604", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3170", "604", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3171", "604", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3172", "604", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3173", "604", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3174", "604", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3175", "604", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3176", "604", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3177", "604", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3178", "604", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3179", "604", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3180", "604", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3181", "604", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3182", "604", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3183", "604", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3184", "604", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3185", "604", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3186", "604", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3187", "604", "_yoast_wpseo_focuskw_text_input", "spectralert");
INSERT INTO `wp_postmeta` VALUES("3188", "604", "_yoast_wpseo_focuskw", "spectralert");
INSERT INTO `wp_postmeta` VALUES("3189", "604", "_yoast_wpseo_metadesc", "Dispositivo de salida SpectrAlert | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3190", "604", "_yoast_wpseo_linkdex", "61");
INSERT INTO `wp_postmeta` VALUES("3191", "604", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("3192", "605", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3193", "606", "_wp_attached_file", "2017/01/mcp.jpg");
INSERT INTO `wp_postmeta` VALUES("3194", "606", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2017/01/mcp.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"mcp-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:\"mcp-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:13:\"mcp-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"mcp-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:15:\"mcp-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"mcp-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3195", "606", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.981735788763238;s:5:\"bytes\";i:18863;s:11:\"size_before\";i:72601;s:10:\"size_after\";i:53738;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3200000000000003;s:5:\"bytes\";i:251;s:11:\"size_before\";i:3971;s:10:\"size_after\";i:3720;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000001;s:5:\"bytes\";i:547;s:11:\"size_before\";i:8993;s:10:\"size_after\";i:8446;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.699999999999999;s:5:\"bytes\";i:154;s:11:\"size_before\";i:1124;s:10:\"size_after\";i:970;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9699999999999998;s:5:\"bytes\";i:166;s:11:\"size_before\";i:2380;s:10:\"size_after\";i:2214;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000001;s:5:\"bytes\";i:615;s:11:\"size_before\";i:10122;s:10:\"size_after\";i:9507;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0600000000000005;s:5:\"bytes\";i:1255;s:11:\"size_before\";i:15572;s:10:\"size_after\";i:14317;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.149999999999999;s:5:\"bytes\";i:15875;s:11:\"size_before\";i:30439;s:10:\"size_after\";i:14564;s:4:\"time\";d:0.070000000000000007;}}}");
INSERT INTO `wp_postmeta` VALUES("3196", "606", "_wp_attachment_image_alt", "MCP900");
INSERT INTO `wp_postmeta` VALUES("3197", "605", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3198", "605", "_edit_lock", "1483414928:1");
INSERT INTO `wp_postmeta` VALUES("3199", "605", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3200", "605", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3201", "605", "_thumbnail_id", "606");
INSERT INTO `wp_postmeta` VALUES("3202", "605", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3203", "605", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3204", "605", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3205", "605", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3206", "605", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3207", "605", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3208", "605", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3209", "605", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3210", "605", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3211", "605", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3212", "605", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3213", "605", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3214", "605", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3215", "605", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3216", "605", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3217", "605", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3218", "605", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3219", "605", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3220", "605", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3221", "605", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3222", "605", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3223", "605", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3224", "605", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3225", "605", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3226", "605", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3227", "605", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3228", "605", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3229", "605", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3230", "605", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3231", "605", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3232", "605", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3233", "605", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3234", "605", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3235", "605", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3236", "605", "_yoast_wpseo_focuskw_text_input", "MCP900");
INSERT INTO `wp_postmeta` VALUES("3237", "605", "_yoast_wpseo_focuskw", "MCP900");
INSERT INTO `wp_postmeta` VALUES("3238", "605", "_yoast_wpseo_metadesc", "MCP pulsador manual direccionable | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3239", "605", "_yoast_wpseo_linkdex", "52");
INSERT INTO `wp_postmeta` VALUES("3240", "605", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("3246", "608", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3247", "609", "_wp_attached_file", "2017/01/I900.jpg");
INSERT INTO `wp_postmeta` VALUES("3248", "609", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:16:\"2017/01/I900.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"I900-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:\"I900-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:14:\"I900-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"I900-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:16:\"I900-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"I900-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3249", "609", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.026763669881817;s:5:\"bytes\";i:18850;s:11:\"size_before\";i:60754;s:10:\"size_after\";i:41904;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7899999999999991;s:5:\"bytes\";i:329;s:11:\"size_before\";i:3362;s:10:\"size_after\";i:3033;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999;s:5:\"bytes\";i:781;s:11:\"size_before\";i:7876;s:10:\"size_after\";i:7095;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.779999999999999;s:5:\"bytes\";i:155;s:11:\"size_before\";i:982;s:10:\"size_after\";i:827;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8200000000000003;s:5:\"bytes\";i:190;s:11:\"size_before\";i:1935;s:10:\"size_after\";i:1745;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.43;s:5:\"bytes\";i:987;s:11:\"size_before\";i:8634;s:10:\"size_after\";i:7647;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.31;s:5:\"bytes\";i:1759;s:11:\"size_before\";i:14288;s:10:\"size_after\";i:12529;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.869999999999997;s:5:\"bytes\";i:14649;s:11:\"size_before\";i:23677;s:10:\"size_after\";i:9028;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("3250", "609", "_wp_attachment_image_alt", "Asilador de lazo I900");
INSERT INTO `wp_postmeta` VALUES("3251", "608", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3252", "608", "_edit_lock", "1483420004:1");
INSERT INTO `wp_postmeta` VALUES("3253", "608", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3254", "608", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3255", "608", "_thumbnail_id", "609");
INSERT INTO `wp_postmeta` VALUES("3256", "608", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3257", "608", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3258", "608", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3259", "608", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3260", "608", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3261", "608", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3262", "608", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3263", "608", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3264", "608", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3265", "608", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3266", "608", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3267", "608", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3268", "608", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3269", "608", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3270", "608", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3271", "608", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3272", "608", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3273", "608", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3274", "608", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3275", "608", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3276", "608", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3277", "608", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3278", "608", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3279", "608", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3280", "608", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3281", "608", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3282", "608", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3283", "608", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3284", "608", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3285", "608", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3286", "608", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3287", "608", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3288", "608", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3289", "608", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3290", "608", "_yoast_wpseo_focuskw_text_input", "I900");
INSERT INTO `wp_postmeta` VALUES("3291", "608", "_yoast_wpseo_focuskw", "I900");
INSERT INTO `wp_postmeta` VALUES("3292", "608", "_yoast_wpseo_metadesc", "Aislador de lazo I900 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3293", "608", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("3294", "608", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3295", "610", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3296", "610", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3297", "610", "_edit_lock", "1483419393:1");
INSERT INTO `wp_postmeta` VALUES("3298", "611", "_wp_attached_file", "2017/01/mmf.jpg");
INSERT INTO `wp_postmeta` VALUES("3299", "611", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2017/01/mmf.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"mmf-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:\"mmf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:13:\"mmf-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"mmf-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:15:\"mmf-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"mmf-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3300", "611", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.13846514902605;s:5:\"bytes\";i:19263;s:11:\"size_before\";i:63915;s:10:\"size_after\";i:44652;s:4:\"time\";d:0.14000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.23;s:5:\"bytes\";i:330;s:11:\"size_before\";i:3227;s:10:\"size_after\";i:2897;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.66;s:5:\"bytes\";i:858;s:11:\"size_before\";i:8046;s:10:\"size_after\";i:7188;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.640000000000001;s:5:\"bytes\";i:136;s:11:\"size_before\";i:929;s:10:\"size_after\";i:793;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.06;s:5:\"bytes\";i:186;s:11:\"size_before\";i:1849;s:10:\"size_after\";i:1663;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.91;s:5:\"bytes\";i:1071;s:11:\"size_before\";i:8990;s:10:\"size_after\";i:7919;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.449999999999999;s:5:\"bytes\";i:1972;s:11:\"size_before\";i:14666;s:10:\"size_after\";i:12694;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.130000000000003;s:5:\"bytes\";i:14710;s:11:\"size_before\";i:26208;s:10:\"size_after\";i:11498;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("3301", "611", "_wp_attachment_image_alt", "MMF900");
INSERT INTO `wp_postmeta` VALUES("3302", "610", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3303", "610", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3304", "610", "_thumbnail_id", "611");
INSERT INTO `wp_postmeta` VALUES("3305", "610", "_wp_old_slug", "mmf900");
INSERT INTO `wp_postmeta` VALUES("3306", "610", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3307", "610", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3308", "610", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3309", "610", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3310", "610", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3311", "610", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3312", "610", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3313", "610", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3314", "610", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3315", "610", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3316", "610", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3317", "610", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3318", "610", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3319", "610", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3320", "610", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3321", "610", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3322", "610", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3323", "610", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3324", "610", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3325", "610", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3326", "610", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3327", "610", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3328", "610", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3329", "610", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3330", "610", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3331", "610", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3332", "610", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3333", "610", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3334", "610", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3335", "610", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3336", "610", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3337", "610", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3338", "610", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3339", "610", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3340", "610", "_yoast_wpseo_focuskw_text_input", "MMF900");
INSERT INTO `wp_postmeta` VALUES("3341", "610", "_yoast_wpseo_focuskw", "MMF900");
INSERT INTO `wp_postmeta` VALUES("3342", "610", "_yoast_wpseo_metadesc", "Módulo transmisor de monitoreo MMF 900 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3343", "610", "_yoast_wpseo_linkdex", "59");
INSERT INTO `wp_postmeta` VALUES("3344", "610", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3345", "612", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3346", "612", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3347", "612", "_edit_lock", "1483419760:1");
INSERT INTO `wp_postmeta` VALUES("3348", "613", "_wp_attached_file", "2017/01/wmmf.jpg");
INSERT INTO `wp_postmeta` VALUES("3349", "613", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:16:\"2017/01/wmmf.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"wmmf-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:\"wmmf-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:14:\"wmmf-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"wmmf-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:16:\"wmmf-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"wmmf-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1453746363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3352", "613", "_wp_attachment_image_alt", "W-MMF");
INSERT INTO `wp_postmeta` VALUES("3353", "612", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3354", "612", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3355", "612", "_thumbnail_id", "613");
INSERT INTO `wp_postmeta` VALUES("3356", "612", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3357", "612", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3358", "612", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3359", "612", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3360", "612", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3361", "612", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3362", "612", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3363", "612", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3364", "612", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3365", "612", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3366", "612", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3367", "612", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3368", "612", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3369", "612", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3370", "612", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3371", "612", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3372", "612", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3373", "612", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3374", "612", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3375", "612", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3376", "612", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3377", "612", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3378", "612", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3379", "612", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3380", "612", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("3381", "612", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3382", "612", "_yoast_wpseo_primary_product_cat", "12");
INSERT INTO `wp_postmeta` VALUES("3383", "612", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3384", "612", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3385", "612", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3386", "612", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3387", "612", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3388", "612", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3389", "612", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3390", "612", "_yoast_wpseo_focuskw_text_input", "W-MMF");
INSERT INTO `wp_postmeta` VALUES("3391", "612", "_yoast_wpseo_focuskw", "W-MMF");
INSERT INTO `wp_postmeta` VALUES("3392", "612", "_yoast_wpseo_metadesc", "W-MMF| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3393", "612", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("3394", "612", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3436", "613", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.545107241482924;s:5:\"bytes\";i:19251;s:11:\"size_before\";i:69889;s:10:\"size_after\";i:50638;s:4:\"time\";d:0.15000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3032;s:10:\"size_after\";i:3032;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.539999999999999;s:5:\"bytes\";i:987;s:11:\"size_before\";i:8550;s:10:\"size_after\";i:7563;s:4:\"time\";d:0.01;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.140000000000001;s:5:\"bytes\";i:157;s:11:\"size_before\";i:916;s:10:\"size_after\";i:759;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.51;s:5:\"bytes\";i:217;s:11:\"size_before\";i:1885;s:10:\"size_after\";i:1668;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.93;s:5:\"bytes\";i:1127;s:11:\"size_before\";i:9449;s:10:\"size_after\";i:8322;s:4:\"time\";d:0.029999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.199999999999999;s:5:\"bytes\";i:1959;s:11:\"size_before\";i:14840;s:10:\"size_after\";i:12881;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.420000000000002;s:5:\"bytes\";i:14804;s:11:\"size_before\";i:31217;s:10:\"size_after\";i:16413;s:4:\"time\";d:0.059999999999999998;}}}");
INSERT INTO `wp_postmeta` VALUES("3437", "466", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1513706793802143;s:5:\"bytes\";i:21420;s:11:\"size_before\";i:299523;s:10:\"size_after\";i:278103;s:4:\"time\";d:0.31000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5199999999999996;s:5:\"bytes\";i:214;s:11:\"size_before\";i:4738;s:10:\"size_after\";i:4524;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9699999999999998;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:16596;s:10:\"size_after\";i:15440;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3700000000000001;s:5:\"bytes\";i:162;s:11:\"size_before\";i:2542;s:10:\"size_after\";i:2380;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8200000000000003;s:5:\"bytes\";i:1303;s:11:\"size_before\";i:19112;s:10:\"size_after\";i:17809;s:4:\"time\";d:0.070000000000000007;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3099999999999996;s:5:\"bytes\";i:1886;s:11:\"size_before\";i:35550;s:10:\"size_after\";i:33664;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5599999999999996;s:5:\"bytes\";i:16699;s:11:\"size_before\";i:220985;s:10:\"size_after\";i:204286;s:4:\"time\";d:0.17000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("3438", "461", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.557657406114757;s:5:\"bytes\";i:19869;s:11:\"size_before\";i:171912;s:10:\"size_after\";i:152043;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5004;s:10:\"size_after\";i:5004;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6699999999999999;s:5:\"bytes\";i:1117;s:11:\"size_before\";i:14558;s:10:\"size_after\";i:13441;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0199999999999996;s:5:\"bytes\";i:223;s:11:\"size_before\";i:2779;s:10:\"size_after\";i:2556;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2100000000000009;s:5:\"bytes\";i:1327;s:11:\"size_before\";i:16164;s:10:\"size_after\";i:14837;s:4:\"time\";d:0.059999999999999998;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999;s:5:\"bytes\";i:2080;s:11:\"size_before\";i:25463;s:10:\"size_after\";i:23383;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.01;s:5:\"bytes\";i:15122;s:11:\"size_before\";i:107944;s:10:\"size_after\";i:92822;s:4:\"time\";d:0.040000000000000001;}}}");
INSERT INTO `wp_postmeta` VALUES("3439", "443", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.989057912997065;s:5:\"bytes\";i:10294;s:11:\"size_before\";i:93675;s:10:\"size_after\";i:83381;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3081;s:10:\"size_after\";i:3081;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7080;s:10:\"size_after\";i:7080;s:4:\"time\";d:0.02;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1826;s:10:\"size_after\";i:1826;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7798;s:10:\"size_after\";i:7798;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12826;s:10:\"size_after\";i:12826;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.859999999999999;s:5:\"bytes\";i:10294;s:11:\"size_before\";i:61064;s:10:\"size_after\";i:50770;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("3446", "620", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3447", "621", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3448", "622", "_wp_attached_file", "2017/01/1.jpg");
INSERT INTO `wp_postmeta` VALUES("3449", "622", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:480;s:4:\"file\";s:13:\"2017/01/1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:11:\"1-30x10.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:11:\"1-90x29.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"1-325x104.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"1-450x144.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3450", "622", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9012582659000259;s:5:\"bytes\";i:6702;s:11:\"size_before\";i:113569;s:10:\"size_after\";i:106867;s:4:\"time\";d:0.17999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:239;s:11:\"size_before\";i:4822;s:10:\"size_after\";i:4583;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000001;s:5:\"bytes\";i:361;s:11:\"size_before\";i:7104;s:10:\"size_after\";i:6743;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8399999999999999;s:5:\"bytes\";i:1785;s:11:\"size_before\";i:30551;s:10:\"size_after\";i:28766;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:2833;s:11:\"size_before\";i:47229;s:10:\"size_after\";i:44396;s:4:\"time\";d:0.040000000000000001;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.99;s:5:\"bytes\";i:141;s:11:\"size_before\";i:882;s:10:\"size_after\";i:741;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1999999999999993;s:5:\"bytes\";i:150;s:11:\"size_before\";i:1631;s:10:\"size_after\";i:1481;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996;s:5:\"bytes\";i:402;s:11:\"size_before\";i:7889;s:10:\"size_after\";i:7487;s:4:\"time\";d:0.040000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8799999999999999;s:5:\"bytes\";i:791;s:11:\"size_before\";i:13461;s:10:\"size_after\";i:12670;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("3451", "622", "_wp_attachment_image_alt", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3481", "632", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3482", "633", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3483", "634", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3484", "634", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3485", "634", "_edit_lock", "1483590563:1");
INSERT INTO `wp_postmeta` VALUES("3486", "635", "_wp_attached_file", "2017/01/RX1_02__84068.1365683125.1280.1280.jpg");
INSERT INTO `wp_postmeta` VALUES("3487", "635", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:46:\"2017/01/RX1_02__84068.1365683125.1280.1280.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"RX1_02__84068.1365683125.1280.1280-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:\"RX1_02__84068.1365683125.1280.1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"RX1_02__84068.1365683125.1280.1280-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:44:\"RX1_02__84068.1365683125.1280.1280-30x30.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"RX1_02__84068.1365683125.1280.1280-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:46:\"RX1_02__84068.1365683125.1280.1280-325x325.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"RX1_02__84068.1365683125.1280.1280-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3488", "635", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.442075222787604;s:5:\"bytes\";i:7757;s:11:\"size_before\";i:74286;s:10:\"size_after\";i:66529;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.32;s:5:\"bytes\";i:343;s:11:\"size_before\";i:2102;s:10:\"size_after\";i:1759;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.010000000000002;s:5:\"bytes\";i:977;s:11:\"size_before\";i:4439;s:10:\"size_after\";i:3462;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.25;s:5:\"bytes\";i:153;s:11:\"size_before\";i:887;s:10:\"size_after\";i:734;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.76;s:5:\"bytes\";i:201;s:11:\"size_before\";i:1362;s:10:\"size_after\";i:1161;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.16;s:5:\"bytes\";i:1228;s:11:\"size_before\";i:5083;s:10:\"size_after\";i:3855;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.239999999999998;s:5:\"bytes\";i:2117;s:11:\"size_before\";i:8067;s:10:\"size_after\";i:5950;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2300000000000004;s:5:\"bytes\";i:2738;s:11:\"size_before\";i:52346;s:10:\"size_after\";i:49608;s:4:\"time\";d:0.080000000000000002;}}}");
INSERT INTO `wp_postmeta` VALUES("3471", "629", "_wp_attached_file", "2017/01/3.jpg");
INSERT INTO `wp_postmeta` VALUES("3472", "629", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:480;s:4:\"file\";s:13:\"2017/01/3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"3-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:11:\"3-30x10.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:11:\"3-90x29.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"3-325x104.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"3-450x144.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3473", "629", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.3440789546968466;s:5:\"bytes\";i:6593;s:11:\"size_before\";i:89773;s:10:\"size_after\";i:83180;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6600000000000001;s:5:\"bytes\";i:249;s:11:\"size_before\";i:4401;s:10:\"size_after\";i:4152;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:227;s:11:\"size_before\";i:5559;s:10:\"size_after\";i:5332;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6600000000000001;s:5:\"bytes\";i:1825;s:11:\"size_before\";i:23839;s:10:\"size_after\";i:22014;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995;s:5:\"bytes\";i:3267;s:11:\"size_before\";i:37612;s:10:\"size_after\";i:34345;s:4:\"time\";d:0.02;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.07;s:5:\"bytes\";i:140;s:11:\"size_before\";i:820;s:10:\"size_after\";i:680;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000005;s:5:\"bytes\";i:115;s:11:\"size_before\";i:1270;s:10:\"size_after\";i:1155;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8999999999999999;s:5:\"bytes\";i:239;s:11:\"size_before\";i:6134;s:10:\"size_after\";i:5895;s:4:\"time\";d:0.02;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002;s:5:\"bytes\";i:531;s:11:\"size_before\";i:10138;s:10:\"size_after\";i:9607;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("3474", "629", "_wp_attachment_image_alt", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3475", "630", "_wp_attached_file", "2017/01/4.jpg");
INSERT INTO `wp_postmeta` VALUES("3476", "630", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:480;s:4:\"file\";s:13:\"2017/01/4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"4-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"4-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:11:\"4-30x10.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:11:\"4-90x29.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:29;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"4-325x104.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:13:\"4-450x144.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446389193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3477", "630", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.2069856265106926;s:5:\"bytes\";i:3364;s:11:\"size_before\";i:54197;s:10:\"size_after\";i:50833;s:4:\"time\";d:0.10999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996;s:5:\"bytes\";i:224;s:11:\"size_before\";i:5470;s:10:\"size_after\";i:5246;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9399999999999999;s:5:\"bytes\";i:178;s:11:\"size_before\";i:4515;s:10:\"size_after\";i:4337;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002;s:5:\"bytes\";i:2106;s:11:\"size_before\";i:29089;s:10:\"size_after\";i:26983;s:4:\"time\";d:0.029999999999999999;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.620000000000001;s:5:\"bytes\";i:142;s:11:\"size_before\";i:806;s:10:\"size_after\";i:664;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.02;s:5:\"bytes\";i:124;s:11:\"size_before\";i:1237;s:10:\"size_after\";i:1113;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:218;s:11:\"size_before\";i:4934;s:10:\"size_after\";i:4716;s:4:\"time\";d:0.01;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:372;s:11:\"size_before\";i:8146;s:10:\"size_after\";i:7774;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("3478", "630", "_wp_attachment_image_alt", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3489", "635", "_wp_attachment_image_alt", "RX1");
INSERT INTO `wp_postmeta` VALUES("3490", "636", "_wp_attached_file", "2017/01/paradox_rx1_telepitoi_utmutato.pdf_1.png");
INSERT INTO `wp_postmeta` VALUES("3491", "636", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:990;s:6:\"height\";i:765;s:4:\"file\";s:48:\"2017/01/paradox_rx1_telepitoi_utmutato.pdf_1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"paradox_rx1_telepitoi_utmutato.pdf_1-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:48:\"paradox_rx1_telepitoi_utmutato.pdf_1-300x232.png\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"paradox_rx1_telepitoi_utmutato.pdf_1-768x593.png\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:46:\"paradox_rx1_telepitoi_utmutato.pdf_1-30x23.png\";s:5:\"width\";i:30;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"paradox_rx1_telepitoi_utmutato.pdf_1-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"paradox_rx1_telepitoi_utmutato.pdf_1-325x251.png\";s:5:\"width\";i:325;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"paradox_rx1_telepitoi_utmutato.pdf_1-450x348.png\";s:5:\"width\";i:450;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3492", "636", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.122105409232368;s:5:\"bytes\";i:136671;s:11:\"size_before\";i:389131;s:10:\"size_after\";i:252460;s:4:\"time\";d:0.65000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.289999999999999;s:5:\"bytes\";i:9457;s:11:\"size_before\";i:28409;s:10:\"size_after\";i:18952;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.649999999999999;s:5:\"bytes\";i:27113;s:11:\"size_before\";i:73977;s:10:\"size_after\";i:46864;s:4:\"time\";d:0.070000000000000007;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.960000000000001;s:5:\"bytes\";i:259;s:11:\"size_before\";i:1442;s:10:\"size_after\";i:1183;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.109999999999999;s:5:\"bytes\";i:2088;s:11:\"size_before\";i:8314;s:10:\"size_after\";i:6226;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.119999999999997;s:5:\"bytes\";i:35113;s:11:\"size_before\";i:92106;s:10:\"size_after\";i:56993;s:4:\"time\";d:0.14000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.780000000000001;s:5:\"bytes\";i:56857;s:11:\"size_before\";i:139426;s:10:\"size_after\";i:82569;s:4:\"time\";d:0.14000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.720000000000001;s:5:\"bytes\";i:5784;s:11:\"size_before\";i:45457;s:10:\"size_after\";i:39673;s:4:\"time\";d:0.25;}}}");
INSERT INTO `wp_postmeta` VALUES("3493", "636", "_wp_attachment_image_alt", "RX1map");
INSERT INTO `wp_postmeta` VALUES("3494", "634", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3495", "634", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3496", "634", "_thumbnail_id", "635");
INSERT INTO `wp_postmeta` VALUES("3497", "634", "_wp_old_slug", "rx1");
INSERT INTO `wp_postmeta` VALUES("3498", "634", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3499", "634", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3500", "634", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3501", "634", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3502", "634", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3503", "634", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3504", "634", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3505", "634", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3506", "634", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3507", "634", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3508", "634", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3509", "634", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3510", "634", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3511", "634", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3512", "634", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3513", "634", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3514", "634", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3515", "634", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3516", "634", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3517", "634", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3518", "634", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3519", "634", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3520", "634", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3521", "634", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3522", "634", "_product_image_gallery", "636");
INSERT INTO `wp_postmeta` VALUES("3523", "634", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3524", "634", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("3525", "634", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3526", "634", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3527", "634", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3528", "634", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3529", "634", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3530", "634", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3531", "634", "mad_custom_tabs", "a:1:{s:5:\"ssqug\";a:2:{s:21:\"mad_title_product_tab\";s:14:\"Ficha técnica\";s:23:\"mad_content_product_tab\";s:299:\"Para descargar el PDF: <a href=\"https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiogKHGlarRAhVDxCYKHffYAQgQFggcMAA&url=http%3A%2F%2Fwww.paradox.com%2FDownloader%2F%3FID%3D5621&usg=AFQjCNGtiBM0UcpoK_bl7hyI7ZNmsI8LTA&sig2=Zgz4aHmP-Z7OGp_DCHnDyA\">clic aquí</a>\";}}");
INSERT INTO `wp_postmeta` VALUES("3532", "634", "_yoast_wpseo_focuskw_text_input", "RX1");
INSERT INTO `wp_postmeta` VALUES("3533", "634", "_yoast_wpseo_focuskw", "RX1");
INSERT INTO `wp_postmeta` VALUES("3534", "634", "_yoast_wpseo_metadesc", "RX1 | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3535", "634", "_yoast_wpseo_linkdex", "58");
INSERT INTO `wp_postmeta` VALUES("3536", "634", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3541", "640", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3542", "640", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3543", "640", "_edit_lock", "1483817077:1");
INSERT INTO `wp_postmeta` VALUES("3544", "641", "_wp_attached_file", "2017/01/REM25_Black_Front_Big.png");
INSERT INTO `wp_postmeta` VALUES("3545", "641", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:33:\"2017/01/REM25_Black_Front_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"REM25_Black_Front_Big-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:\"REM25_Black_Front_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:31:\"REM25_Black_Front_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"REM25_Black_Front_Big-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:\"REM25_Black_Front_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"REM25_Black_Front_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3546", "641", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.2639290064862607;s:5:\"bytes\";i:9141;s:11:\"size_before\";i:723221;s:10:\"size_after\";i:714080;s:4:\"time\";d:0.54000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1100000000000003;s:5:\"bytes\";i:441;s:11:\"size_before\";i:10730;s:10:\"size_after\";i:10289;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46;s:5:\"bytes\";i:2617;s:11:\"size_before\";i:35060;s:10:\"size_after\";i:32443;s:4:\"time\";d:0.17999999999999999;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.609999999999999;s:5:\"bytes\";i:141;s:11:\"size_before\";i:1214;s:10:\"size_after\";i:1073;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994;s:5:\"bytes\";i:463;s:11:\"size_before\";i:5536;s:10:\"size_after\";i:5073;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:1313;s:11:\"size_before\";i:34974;s:10:\"size_after\";i:33661;s:4:\"time\";d:0.080000000000000002;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1900000000000004;s:5:\"bytes\";i:4166;s:11:\"size_before\";i:67355;s:10:\"size_after\";i:63189;s:4:\"time\";d:0.17999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:568352;s:10:\"size_after\";i:568352;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("3547", "641", "_wp_attachment_image_alt", "REM25");
INSERT INTO `wp_postmeta` VALUES("3548", "642", "_wp_attached_file", "2017/01/REM25_BatteryChange_Big.png");
INSERT INTO `wp_postmeta` VALUES("3549", "642", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2017/01/REM25_BatteryChange_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"REM25_BatteryChange_Big-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:35:\"REM25_BatteryChange_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:33:\"REM25_BatteryChange_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"REM25_BatteryChange_Big-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:35:\"REM25_BatteryChange_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"REM25_BatteryChange_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3550", "642", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9724429259049261;s:5:\"bytes\";i:24220;s:11:\"size_before\";i:814818;s:10:\"size_after\";i:790598;s:4:\"time\";d:0.85000000000000009;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.67;s:5:\"bytes\";i:1742;s:11:\"size_before\";i:13747;s:10:\"size_after\";i:12005;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6;s:5:\"bytes\";i:5785;s:11:\"size_before\";i:42537;s:10:\"size_after\";i:36752;s:4:\"time\";d:0.17000000000000001;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.68;s:5:\"bytes\";i:149;s:11:\"size_before\";i:1276;s:10:\"size_after\";i:1127;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.960000000000001;s:5:\"bytes\";i:639;s:11:\"size_before\";i:5828;s:10:\"size_after\";i:5189;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.130000000000001;s:5:\"bytes\";i:7633;s:11:\"size_before\";i:58153;s:10:\"size_after\";i:50520;s:4:\"time\";d:0.28999999999999998;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0899999999999999;s:5:\"bytes\";i:8272;s:11:\"size_before\";i:90973;s:10:\"size_after\";i:82701;s:4:\"time\";d:0.31;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:602304;s:10:\"size_after\";i:602304;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("3551", "643", "_wp_attached_file", "2017/01/REM25_Black_45Degrees_Big.png");
INSERT INTO `wp_postmeta` VALUES("3552", "643", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:37:\"2017/01/REM25_Black_45Degrees_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"REM25_Black_45Degrees_Big-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:\"REM25_Black_45Degrees_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:35:\"REM25_Black_45Degrees_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"REM25_Black_45Degrees_Big-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:\"REM25_Black_45Degrees_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"REM25_Black_45Degrees_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3553", "643", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0206423005108232;s:5:\"bytes\";i:7117;s:11:\"size_before\";i:697306;s:10:\"size_after\";i:690189;s:4:\"time\";d:0.63;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1200000000000001;s:5:\"bytes\";i:331;s:11:\"size_before\";i:10603;s:10:\"size_after\";i:10272;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999;s:5:\"bytes\";i:2174;s:11:\"size_before\";i:35232;s:10:\"size_after\";i:33058;s:4:\"time\";d:0.089999999999999997;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999;s:5:\"bytes\";i:106;s:11:\"size_before\";i:1125;s:10:\"size_after\";i:1019;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000001;s:5:\"bytes\";i:591;s:11:\"size_before\";i:5473;s:10:\"size_after\";i:4882;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5699999999999998;s:5:\"bytes\";i:912;s:11:\"size_before\";i:35438;s:10:\"size_after\";i:34526;s:4:\"time\";d:0.080000000000000002;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4400000000000004;s:5:\"bytes\";i:3003;s:11:\"size_before\";i:67614;s:10:\"size_after\";i:64611;s:4:\"time\";d:0.38;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:541821;s:10:\"size_after\";i:541821;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("3554", "644", "_wp_attached_file", "2017/01/REM25_Black_Back_Big.png");
INSERT INTO `wp_postmeta` VALUES("3555", "644", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:32:\"2017/01/REM25_Black_Back_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"REM25_Black_Back_Big-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:\"REM25_Black_Back_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:30:\"REM25_Black_Back_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"REM25_Black_Back_Big-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:\"REM25_Black_Back_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"REM25_Black_Back_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3556", "644", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9216769494815398;s:5:\"bytes\";i:22096;s:11:\"size_before\";i:756278;s:10:\"size_after\";i:734182;s:4:\"time\";d:0.94000000000000006;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.210000000000001;s:5:\"bytes\";i:1482;s:11:\"size_before\";i:12133;s:10:\"size_after\";i:10651;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.460000000000001;s:5:\"bytes\";i:4579;s:11:\"size_before\";i:36755;s:10:\"size_after\";i:32176;s:4:\"time\";d:0.17999999999999999;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1099999999999999;s:5:\"bytes\";i:35;s:11:\"size_before\";i:1126;s:10:\"size_after\";i:1091;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0600000000000001;s:5:\"bytes\";i:155;s:11:\"size_before\";i:5066;s:10:\"size_after\";i:4911;s:4:\"time\";d:0.059999999999999998;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.18;s:5:\"bytes\";i:7976;s:11:\"size_before\";i:52530;s:10:\"size_after\";i:44554;s:4:\"time\";d:0.35999999999999999;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8200000000000003;s:5:\"bytes\";i:7869;s:11:\"size_before\";i:80134;s:10:\"size_after\";i:72265;s:4:\"time\";d:0.28000000000000003;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:568534;s:10:\"size_after\";i:568534;s:4:\"time\";d:0.02;}}}");
INSERT INTO `wp_postmeta` VALUES("3557", "643", "_wp_attachment_image_alt", "REM 25");
INSERT INTO `wp_postmeta` VALUES("3558", "645", "_wp_attached_file", "2017/01/REM25_White_45Degrees_Big.png");
INSERT INTO `wp_postmeta` VALUES("3559", "645", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:37:\"2017/01/REM25_White_45Degrees_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"REM25_White_45Degrees_Big-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:\"REM25_White_45Degrees_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:35:\"REM25_White_45Degrees_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"REM25_White_45Degrees_Big-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:\"REM25_White_45Degrees_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"REM25_White_45Degrees_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3560", "642", "_wp_attachment_image_alt", "REM25");
INSERT INTO `wp_postmeta` VALUES("3561", "645", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.107308264779058;s:5:\"bytes\";i:788;s:11:\"size_before\";i:734333;s:10:\"size_after\";i:733545;s:4:\"time\";d:0.56000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11075;s:10:\"size_after\";i:11075;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4099999999999999;s:5:\"bytes\";i:533;s:11:\"size_before\";i:37871;s:10:\"size_after\";i:37338;s:4:\"time\";d:0.10000000000000001;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7199999999999998;s:5:\"bytes\";i:52;s:11:\"size_before\";i:1101;s:10:\"size_after\";i:1049;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5576;s:10:\"size_after\";i:5576;s:4:\"time\";d:0.01;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38015;s:10:\"size_after\";i:38015;s:4:\"time\";d:0.17000000000000001;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.28000000000000003;s:5:\"bytes\";i:203;s:11:\"size_before\";i:73006;s:10:\"size_after\";i:72803;s:4:\"time\";d:0.23999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:567689;s:10:\"size_after\";i:567689;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("3562", "644", "_wp_attachment_image_alt", "REM25");
INSERT INTO `wp_postmeta` VALUES("3563", "645", "_wp_attachment_image_alt", "REM25");
INSERT INTO `wp_postmeta` VALUES("3564", "646", "_wp_attached_file", "2017/01/REM25_White_Front_Big.png");
INSERT INTO `wp_postmeta` VALUES("3565", "646", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:650;s:4:\"file\";s:33:\"2017/01/REM25_White_Front_Big.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"REM25_White_Front_Big-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:\"REM25_White_Front_Big-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:31:\"REM25_White_Front_Big-30x30.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"REM25_White_Front_Big-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:\"REM25_White_Front_Big-325x325.png\";s:5:\"width\";i:325;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"REM25_White_Front_Big-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3566", "646", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.75619106262966385;s:5:\"bytes\";i:5821;s:11:\"size_before\";i:769779;s:10:\"size_after\";i:763958;s:4:\"time\";d:0.51000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11261;s:10:\"size_after\";i:11261;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5199999999999996;s:5:\"bytes\";i:1727;s:11:\"size_before\";i:38175;s:10:\"size_after\";i:36448;s:4:\"time\";d:0.089999999999999997;}s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6900000000000004;s:5:\"bytes\";i:54;s:11:\"size_before\";i:1151;s:10:\"size_after\";i:1097;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.94999999999999996;s:5:\"bytes\";i:54;s:11:\"size_before\";i:5685;s:10:\"size_after\";i:5631;s:4:\"time\";d:0.02;}s:12:\"shop_catalog\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29;s:5:\"bytes\";i:508;s:11:\"size_before\";i:39394;s:10:\"size_after\";i:38886;s:4:\"time\";d:0.13;}s:11:\"shop_single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:3478;s:11:\"size_before\";i:75589;s:10:\"size_after\";i:72111;s:4:\"time\";d:0.20000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:598524;s:10:\"size_after\";i:598524;s:4:\"time\";d:0.01;}}}");
INSERT INTO `wp_postmeta` VALUES("3567", "646", "_wp_attachment_image_alt", "REM25");
INSERT INTO `wp_postmeta` VALUES("3568", "640", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("3569", "640", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("3570", "640", "_thumbnail_id", "645");
INSERT INTO `wp_postmeta` VALUES("3571", "640", "mad_breadcrumb", "breadcrumb");
INSERT INTO `wp_postmeta` VALUES("3572", "640", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("3573", "640", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("3574", "640", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("3575", "640", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("3576", "640", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("3577", "640", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("3578", "640", "_length", "");
INSERT INTO `wp_postmeta` VALUES("3579", "640", "_width", "");
INSERT INTO `wp_postmeta` VALUES("3580", "640", "_height", "");
INSERT INTO `wp_postmeta` VALUES("3581", "640", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("3582", "640", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3583", "640", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("3584", "640", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("3585", "640", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("3586", "640", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("3587", "640", "_price", "");
INSERT INTO `wp_postmeta` VALUES("3588", "640", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("3589", "640", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("3590", "640", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("3591", "640", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("3592", "640", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3593", "640", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3594", "640", "_product_version", "2.6.11");
INSERT INTO `wp_postmeta` VALUES("3595", "640", "_product_image_gallery", "642,643,644,645,646");
INSERT INTO `wp_postmeta` VALUES("3596", "640", "_bj_lazy_load_skip_post", "false");
INSERT INTO `wp_postmeta` VALUES("3597", "640", "_yoast_wpseo_primary_product_cat", "11");
INSERT INTO `wp_postmeta` VALUES("3598", "640", "footer_row_top_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3599", "640", "footer_row_bottom_show", NULL);
INSERT INTO `wp_postmeta` VALUES("3600", "640", "footer_row_top_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3601", "640", "footer_row_bottom_columns_variations", NULL);
INSERT INTO `wp_postmeta` VALUES("3602", "640", "get_sidebars_top_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3603", "640", "get_sidebars_bottom_widgets", NULL);
INSERT INTO `wp_postmeta` VALUES("3604", "640", "mad_custom_tabs", "");
INSERT INTO `wp_postmeta` VALUES("3605", "640", "_yoast_wpseo_focuskw_text_input", "REM25");
INSERT INTO `wp_postmeta` VALUES("3606", "640", "_yoast_wpseo_focuskw", "REM25");
INSERT INTO `wp_postmeta` VALUES("3607", "640", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("3608", "640", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("3609", "640", "_yoast_wpseo_metadesc", "Paradox REM25 Control remoto de alarma| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR");
INSERT INTO `wp_postmeta` VALUES("3636", "657", "_wp_attached_file", "2017/01/ssanditec2-copia.png");
INSERT INTO `wp_postmeta` VALUES("3637", "657", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:25;s:4:\"file\";s:28:\"2017/01/ssanditec2-copia.png\";s:5:\"sizes\";a:2:{s:9:\"tiny-lazy\";a:4:{s:4:\"file\";s:25:\"ssanditec2-copia-30x8.png\";s:5:\"width\";i:30;s:6:\"height\";i:8;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"ssanditec2-copia-90x23.png\";s:5:\"width\";i:90;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("3638", "657", "wp-smpro-smush-data", "a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:57.377562642369014;s:5:\"bytes\";i:20151;s:11:\"size_before\";i:35120;s:10:\"size_after\";i:14969;s:4:\"time\";d:0.050000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"tiny-lazy\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:874;s:10:\"size_after\";i:874;s:4:\"time\";d:0.01;}s:14:\"shop_thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5960;s:10:\"size_after\";i:5960;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.239999999999995;s:5:\"bytes\";i:20151;s:11:\"size_before\";i:28286;s:10:\"size_after\";i:8135;s:4:\"time\";d:0.029999999999999999;}}}");
INSERT INTO `wp_postmeta` VALUES("3639", "657", "_wp_attachment_image_alt", "www.sanditec.com");
INSERT INTO `wp_postmeta` VALUES("3620", "651", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("3648", "662", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("5", "1", "2016-12-31 20:28:00", "2016-12-31 20:28:00", "<label> Su nombre (requerido)\r\n    [text* your-name] </label>\r\n\r\n<label> Su Email (requerido)\r\n    [email* your-email] </label>\r\n\r\n<label> Asunto (ej: CCTV, Alarma, Seguridad)\r\n    [text your-subject] </label>\r\n\r\n<label> Su mensaje:\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Enviar\"]\nSandí Seguridad \"[your-subject]\"\n[SANDI SEGURIDAD] <info@csandi.xyz>\nDe: [your-name] <[your-email]>\r\nAsunto: [your-subject]\r\n\r\nMensaje:\r\n[your-message]\r\n\r\n--\r\nEste mensaje se envió desde la web de Sandí Seguridad. (http://csandi.xyz)\njostrike1@gmail.com\nReply-To: [your-email]\n\n\n\n\nSandí Seguridad Electrónica \"[your-subject]\"\nSandí Seguridad Electrónica <wordpress@csandi.xyz>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Sandí Seguridad Electrónica (http://csandi.xyz)\n[your-email]\nReply-To: jostrike1@gmail.com\n\n\n\n¡Gracias! Mensaje enviado (Nos comunicaremos contigo en cuanto antes podamos)\nEl mensaje no se pudo enviar (¿Revisaste todo antes de enviar?\nUno de los espacios tiene un error, por favor revisa\nHubo error de envío, filtro de spam detectó algo\nAcepta los términos y condiciones\nLo siento, falta algo, por favor revisa todos los campos\nMucho texto, por favor escribe menos\nMuy poco texto, por favor escribe más\nEl formato de fecha es incorrecto.\nLa fecha es anterior a la más temprana permitida.\nLa fecha es posterior a la más tardía permitida.\nHubo un error desconocido subiendo el archivo.\nNo tienes permisos para subir archivos de este tipo.\nEl archivo es demasiado grande.\nSe ha producido un error subiendo la imagen\nEl formato de número no es válido.\nEl número es menor que el mínimo permitido.\nEl número es mayor que el máximo permitido.\nLa respuesta al cuestionario no es correcta.\nEl código introducido es incorrecto.\nLa dirección de correo electrónico que has introducido no es válida.\nLa URL no es válida.\nEl número de teléfono no es válido.", "Contacto F.", "", "publish", "closed", "closed", "", "contact-form-1", "", "", "2016-12-31 19:08:11", "2017-01-01 01:08:11", "", "0", "http://csandi.xyz/?post_type=wpcf7_contact_form&#038;p=5", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("38", "1", "2016-12-28 22:45:56", "2016-12-29 04:45:56", "[vc_row][vc_column css_animation=\"none\"][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column css_animation=\"none\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_mad_info_block type=\"type-2\" icon=\"truck\" title=\"Demostraciones sin costo\" link=\"|||rel:nofollow\"][/vc_mad_info_block][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_mad_info_block type=\"type-2\" icon=\"heart\" title=\"Satisfacción garantizada\" link=\"|||\"][/vc_mad_info_block][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_mad_info_block type=\"type-2\" icon=\"wrench\" title=\"Mantenimiento sin costo adicional\" link=\"|||rel:nofollow\"][/vc_mad_info_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_mad_products type=\"product-carousel\" columns=\"4\" items=\"40\" show=\"\" orderby=\"rand\" filter=\"yes\" css_animation=\"bottom-to-top\" categories=\"11,13,12\"][/vc_column][/vc_row][vc_row][vc_column][vc_mad_brands_logo images=\"391,381,382,389,384\" autoplay=\"yes\" autoplaytimeout=\"5000\"][/vc_column][/vc_row]", "Inicio", "", "publish", "closed", "closed", "", "inicio", "", "", "2017-01-04 16:41:14", "2017-01-04 22:41:14", "", "0", "http://localhost:8080/wordpress/?page_id=38", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("66", "1", "2016-12-29 00:06:42", "2016-12-29 06:06:42", "[vc_section][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDIzNzI1MC45NTIwMjg5MDI5OCUyMTJkLTgzLjc3MTY5MTk1NzE5MjglMjEzZDkuMzAyNjM1ODE1NDI4MjM3JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4OGZhMTRlMjRmNGI0OTc5YiUyNTNBMHg1NzliYTAzYzA1ZTU4OGZmJTIxMnpVMkZ1SUVwdmM4T3BMQ0JRdzZseVpYb2dXbVZzWldURHMyNHNJRU52YzNSaElGSnBZMkUlMjE1ZTAlMjEzbTIlMjExc2VzLTQxOSUyMTJzJTIxNHYxNDgzMDU4NTQ4NDY4JTIyJTIwd2lkdGglM0QlMjIxMTQwJTIyJTIwaGVpZ2h0JTNEJTIyMzUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"350\"][/vc_column][/vc_row][/vc_section][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"24\" img_size=\"175x180\" add_caption=\"yes\" alignment=\"center\" style=\"vc_box_border_circle\" title=\"SANDI SEGURIDAD\"][contact-form-7 id=\"5\"][/vc_column][vc_column width=\"1/2\"][ult_content_box][/ult_content_box][vc_tta_accordion][vc_tta_section i_icon_fontawesome=\"fa fa-volume-control-phone\" add_icon=\"true\" title=\" Información de contacto\" tab_id=\"1483060709318-87646cfb-1456\"][bsf-info-box icon=\"Defaults-envelope-o\" icon_size=\"12\" title=\"E-mail:  info@csandi.xyz\"][/bsf-info-box][bsf-info-box icon=\"Defaults-phone\" icon_size=\"12\" title=\"Teléfono:  88226816\"][/bsf-info-box][bsf-info-box icon=\"Defaults-map-marker\" icon_size=\"12\" title=\"Pérez Zeledón, Costa Rica\"][/bsf-info-box][/vc_tta_section][/vc_tta_accordion][vc_tta_accordion][vc_tta_section i_icon_fontawesome=\"fa fa-shield\" add_icon=\"true\" title=\" Sobre nosotros\" tab_id=\"1483060356399-393c58b2-9990\"][vc_toggle title=\"Misión\" el_id=\"1483060376233-742618a7-2925\"]Texto de misioón[/vc_toggle][vc_toggle title=\"Visión\" el_id=\"1483060384775-e0844b6a-ba89\"]Texto de visión[/vc_toggle][vc_toggle title=\"Valores / o una descripcion  \" el_id=\"1483060383424-89d76010-ec07\"]Texto de valores o descrp[/vc_toggle][/vc_tta_section][/vc_tta_accordion][vc_tta_accordion][vc_tta_section i_icon_fontawesome=\"fa fa-question\" add_icon=\"true\" title=\" Preguntas frecuentes\" tab_id=\"1483061249570-6580cdc4-3273\"][vc_toggle title=\"Pregunta\" el_id=\"1483061252859-955ab3ed-39d3\"]Respuesta[/vc_toggle][vc_toggle title=\"Pregunta\" el_id=\"1483061268513-eefc9130-a013\"]Respuesta[/vc_toggle][vc_toggle title=\"Pregunta\" el_id=\"1483061269590-b2775500-2c30\"]Respuesta[/vc_toggle][vc_toggle title=\"Pregunta\" el_id=\"1483061270282-482de899-cfe7\"]Respuesta[/vc_toggle][vc_toggle title=\"Pregunta\" el_id=\"1483061271329-b8a70cd2-164c\"]Respuesta[/vc_toggle][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]", "Contacto", "", "publish", "closed", "closed", "", "contacto", "", "", "2016-12-31 19:02:54", "2017-01-01 01:02:54", "", "0", "http://localhost:8080/wordpress/?page_id=66", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("97", "1", "2016-12-29 00:37:31", "2016-12-29 06:37:31", "[vc_row][vc_column][vc_cta h2=\"¿Deseas contactarnos?\" txt_align=\"center\" style=\"flat\" add_button=\"bottom\" btn_title=\"Contactar\" btn_color=\"warning\" btn_size=\"lg\" btn_align=\"center\" btn_i_icon_fontawesome=\"fa fa-envelope\" btn_add_icon=\"true\" btn_link=\"url:http%3A%2F%2Fcsandi.xyz%2Fcontacto%2F|||\"]\n<h3>¡Así se hace!</h3>\n<h3></h3>\n<h3>Nos alegra saber que estás interesado en proteger tu vivienda o negocio, estamos listos para atenderte.</h3>\n[/vc_cta][/vc_column][/vc_row][vc_row][vc_column][vc_mad_pricing_box title=\"Portafolio\" currency=\"\" price=\"\" time=\"\" features=\"<b>\nBar Brasilia |\n\nClínica San Lucas|\n\nClínica Hospital Labrador |\n\nPatrón\'s Bar & Grill |\n\nCerrajería S.O.S |\n\nFoto Estudio Fullcolor |\n\nBuffette Lic Gustavo Fernández |\n\nTaller Daniel |\n\nCentro comercial don Luis |\n\nSalón las Palmas Chimirol de Rivas |\n\nFinca Achiote (Uvita) |\n\nEscuela Las Pilas (Buenos Aires) |\n\nEscuela de Ciencias Interiores |\n\nTransportes Estrada |\n\nPreserve Planet |\n\nAbastecedor y Licorera K-Mas Cajón |\n\nTaller de Buses San Pedro |\n\nAbastecedor San Rafael |\n\nRestaurante Pollo Loco #2 |\n\nRestaurante Q\'Sabor |\n\nAlmacén y Ferretería Súper Sur Palmar Norte |\n\nPinturas Lanco Willian Mata |\n\nFerretería el Pueblo |\n\nRestaurante Típico y Más |\n\nRestaurante Pollo Loco #1 |\n\nCompañía de Servicios LoraExpress |\n\nVerdulería la Tormenta |\n\nDistribuidora y tienda Daniel |\n\nAvícola 3 Jotas (DELJI) |\n\nCiclo Morales |\n\nProductos Lácteos del Sur A.P.I.L.A.C. |\n\nCarnicería Don Pedro |\n\nBodega de Tomate Hermanos Mora |\n\nAsociación de desarrollo San Rafael Norte\n</b>\n\" box_style=\"bg_color_orange\"][/vc_column][/vc_row]", "Cartera de clientes", "", "publish", "closed", "closed", "", "cartera-de-clientes", "", "", "2016-12-31 17:38:12", "2016-12-31 23:38:12", "", "0", "http://localhost:8080/wordpress/?page_id=97", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2016-12-29 00:37:31", "2016-12-29 06:37:31", "[vc_row full_height=\"yes\" parallax=\"content-moving\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_repeat=\"no-repeat\" parallax_content=\"parallax_content_value\" parallax_content_sense=\"30\" fadeout_row=\"fadeout_row_value\" fadeout_start_effect=\"27\"][vc_column css_animation=\"none\"][vc_mad_gallery columns=\"4\" images=\"130,129,128,127,126,125,124,123,122,121,120,119,118,117\" image_title=\"yes\" onclick=\"custom_link\" custom_links_target=\"_blank\" img_size=\"165*80\" custom_links=\"www.wdc.com/sp/,www.paradox.com,www.paradox.om,www.optexamerica.com,www.paradox.com,www.linksys.com/cr/,http://overseas.hikvision.com/en/index.html,https://www.firelite.com/es-LA/Pages/default.aspx,www.enforcer.com.tw,www.dluxsecurity.com,www.dahuasecurity.com,www.belkin.es,www.axis.com,www.altronix.com\"][/vc_column][/vc_row]", "Marcas", "", "publish", "closed", "closed", "", "marcas", "", "", "2016-12-31 17:40:23", "2016-12-31 23:40:23", "", "0", "http://localhost:8080/wordpress/?page_id=98", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("99", "1", "2016-12-31 21:29:53", "2016-12-31 21:29:53", " ", "", "", "publish", "closed", "closed", "", "99", "", "", "2016-12-31 21:29:53", "2016-12-31 21:29:53", "", "0", "http://csandi.xyz/?p=99", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("486", "1", "2017-01-01 12:38:33", "2017-01-01 18:38:33", "<label> Su nombre (requerido)\r\n    [text* your-name] </label>\r\n\r\n<label> Su Email (requerido)\r\n    [email* your-email] </label>\r\n\r\n<label> Asunto (ej: CCTV, Alarma, Seguridad)\r\n    [text your-subject] </label>\r\n\r\n<label> Su mensaje:\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Enviar\"]\nSandí Seguridad \"[your-subject]\"\n[SANDI SEGURIDAD] <info@csandi.xyz>\nDe: [your-name] <[your-email]>\r\nAsunto: [your-subject]\r\n\r\nMensaje:\r\n[your-message]\r\n\r\n--\r\nEste mensaje se envió desde la web de Sandí Seguridad. (http://csandi.xyz)\njostrike1@gmail.com\nReply-To: [your-email]\n\n\n\n\nSandí Seguridad Electrónica \"[your-subject]\"\nSandí Seguridad Electrónica <wordpress@csandi.xyz>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Sandí Seguridad Electrónica (http://csandi.xyz)\n[your-email]\nReply-To: jostrike1@gmail.com\n\n\n\n¡Gracias! Mensaje enviado (Nos comunicaremos contigo en cuanto antes podamos)\nEl mensaje no se pudo enviar (¿Revisaste todo antes de enviar?\nUno de los espacios tiene un error, por favor revisa\nHubo error de envío, filtro de spam detectó algo\nAcepta los términos y condiciones\nLo siento, falta algo, por favor revisa todos los campos\nMucho texto, por favor escribe menos\nMuy poco texto, por favor escribe más\nEl formato de fecha es incorrecto.\nLa fecha es anterior a la más temprana permitida.\nLa fecha es posterior a la más tardía permitida.\nHubo un error desconocido subiendo el archivo.\nNo tienes permisos para subir archivos de este tipo.\nEl archivo es demasiado grande.\nSe ha producido un error subiendo la imagen\nEl formato de número no es válido.\nEl número es menor que el mínimo permitido.\nEl número es mayor que el máximo permitido.\nLa respuesta al cuestionario no es correcta.\nEl código introducido es incorrecto.\nLa dirección de correo electrónico que has introducido no es válida.\nLa URL no es válida.\nEl número de teléfono no es válido.", "Contacto sidebarTest", "", "publish", "closed", "closed", "", "contacto-f-_copy", "", "", "2017-01-01 12:38:48", "2017-01-01 18:38:48", "", "0", "http://csandi.xyz/?post_type=wpcf7_contact_form&#038;p=486", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("101", "1", "2016-12-31 21:29:53", "2016-12-31 21:29:53", " ", "", "", "publish", "closed", "closed", "", "101", "", "", "2016-12-31 17:32:19", "2016-12-31 23:32:19", "", "0", "http://csandi.xyz/?p=101", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("102", "1", "2016-12-31 21:29:53", "2016-12-31 21:29:53", " ", "", "", "publish", "closed", "closed", "", "102", "", "", "2016-12-31 17:32:19", "2016-12-31 23:32:19", "", "0", "http://csandi.xyz/?p=102", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("103", "1", "2016-12-31 21:29:53", "2016-12-31 21:29:53", " ", "", "", "publish", "closed", "closed", "", "103", "", "", "2016-12-31 17:32:19", "2016-12-31 23:32:19", "", "0", "http://csandi.xyz/?p=103", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("372", "1", "2016-12-31 17:35:04", "2016-12-31 23:35:04", "Esto es solo un Easter Egg :)", "Hola", "", "publish", "closed", "closed", "", "hola", "", "", "2016-12-31 17:35:04", "2016-12-31 23:35:04", "", "0", "http://csandi.xyz/?page_id=372", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("191", "1", "2016-12-29 14:37:54", "0000-00-00 00:00:00", "", "", "", "draft", "closed", "closed", "", "", "", "", "2016-12-29 14:37:54", "0000-00-00 00:00:00", "", "0", "http://localhost:8080/wordpress/?post_type=vc_grid_item&amp;p=191", "0", "vc_grid_item", "", "0");
INSERT INTO `wp_posts` VALUES("264", "1", "2016-12-30 10:44:44", "2016-12-30 16:44:44", "<h3 class=\"m_bottom_10\"><strong>FireLite MS-9050</strong></h3>\r\n<p class=\"m_bottom_10\">El panel de incendio estrella de FireLite, una robusta central para el funcionamiento de todos los periféricos de sus sistema de detección de incendios.</p>\r\n<p class=\"m_bottom_15\">Capaz de conectar hasta 50 dispositivos direccionables, entre ellos estaciones manuales , detectores de humo de diversas tecnologías, así como dispositivos de anunciación como bocinas, estrobos detectores de tipo rayo, módulos de control, entre otros.</p>\r\nEste panel también cuenta con una pantalla LCD capaz de brindar su estado actual de manera rápida y sofisticada, así como indicadores LED fijos justo debajo de la pantalla.\r\n\r\nCompatible con el anunciador ANN80 para monitorear desde otra área.\r\n\r\nAdemás, este panel es de manufactura norteamericana, en cumplimiento con la normativa NFPA 72 de los Estados Unidos de America.", "Panel Incendio FireLite MS-9050", "&nbsp;\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table type_3 m_xs_bottom_10\" style=\"height: 121px;\" width=\"292\">\r\n<tbody>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>Normativa NFPA72 de Estados Unidos</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal robusto</td>\r\n</tr>\r\n<tr>\r\n<td>Color:</td>\r\n<td> Rojo</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "panel-incendio-firelite-ms-9050", "", "", "2017-01-01 20:34:46", "2017-01-02 02:34:46", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=264", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("265", "1", "2016-12-30 10:53:43", "2016-12-30 16:53:43", "<h3 class=\"m_bottom_10\">Panel de alarma Paradox familia Spectra</h3>\r\n<p class=\"m_bottom_15\">Esta es la unidad central de la alarma, en ella se hacen todas las conexiones correspondientes con los accesorios como:</p>\r\n<p class=\"m_bottom_15\"><b><u>DETECTORES:</u></b></p>\r\n\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Gas</li>\r\n 	<li class=\"m_bottom_15\">Humo</li>\r\n 	<li class=\"m_bottom_15\">Ruptura de cristal</li>\r\n 	<li class=\"m_bottom_15\">Golpes y vibración</li>\r\n</ul>\r\n<p class=\"m_bottom_15\"><b><u>Además:</u></b></p>\r\n\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Sensores de temperatura</li>\r\n 	<li class=\"m_bottom_15\">Botones de asalto o emergencia médica</li>\r\n 	<li class=\"m_bottom_15\">Encendido automático de luces</li>\r\n 	<li class=\"m_bottom_15\">Luces estroboscópicas</li>\r\n 	<li class=\"m_bottom_15\">Estación manual de incendio</li>\r\n 	<li class=\"m_bottom_15\">Control mediante mensajes de texto</li>\r\n 	<li class=\"m_bottom_15\">Control mediante llamdas telefónicas</li>\r\n 	<li class=\"m_bottom_15\">Controles remotos</li>\r\n</ul>\r\n&nbsp;", "Panel Spectra SP4000", "Fabricante: <b>Paradox</b>\r\n\r\nTipo de producto; Panel\r\n\r\nInformación adicional\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">SP4000</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "spectra-sp4000", "", "", "2017-01-01 16:05:00", "2017-01-01 22:05:00", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=265", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("266", "1", "2016-12-30 10:54:53", "2016-12-30 16:54:53", "<h3 class=\"m_bottom_10\">Cámara dLux DLX-V727:</h3>\r\n<p class=\"m_bottom_10\">Cámara de tipo exterior con tecnología infraroja para visión nocturna automática gracias a sus 72 LEDs de IR.</p>\r\n<p class=\"m_bottom_15\">Cuenta con balance de blancos automático y gran calidad de imagen a color gracias a su chip Sony y un ensamblaje con certificación IP66 para soportar el clima del exterior.</p>\r\nCámara tipo bullet IR\r\n\r\n• Chip (AR0237+V30)\r\n\r\n• DWDR\r\n\r\n• Resolución 1080p\r\n\r\n• 1/2.7 CMOS 2.0M\r\n\r\n• IR LED:¢5X72PCS\r\n\r\n• IR Distancia:60M\r\n\r\n• 2.8-12mm lente varifocal", "dLux V727 Visión nocturna", "<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>dLux</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Exterior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>IP66</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal/Aluminio</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "dlx-v727", "", "", "2017-01-01 16:16:26", "2017-01-01 22:16:26", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=266", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("299", "1", "2016-12-30 17:14:17", "2016-12-30 23:14:17", "<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h3 class=\"m_bottom_10\">DVR Dahua</h3>\r\n<p class=\"m_bottom_10\">Un grabador o DVR es el equipo con el que el usuario interactúa para ver y controlar sus cámaras de vigilancia cómodamente, se encuentra en versiones con soporte para 4, 8 y 16 cámaras según sea necesario.</p>\r\n<p class=\"m_bottom_15\">Este dispositivo es el recibidor de la señal de video de todas las cámaras, y envía el video a un monitor o TV, o bien visualizarlo vía web o mediante aplicación desde una computadora con Windows, usuarios de MAC OS X compatibles desde aplicación únicamente.</p>\r\nTambién cuenta con muchas otras herramientas como el guardado de video en un disco duro para acceder a el en otro momento, con la posibilidad de avanzar, retroceder y exportar video\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\n</div>\r\n<div id=\"tab-3\"></div>", "Grabador Dahua DVR5104", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://csandi.xyz/DVR.html#\"><b>Dahua</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Grabador</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">DVR5104 / 5108 / 5116</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Negro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "grabador-dvr-dahua-dvr5104", "", "", "2017-01-01 16:11:38", "2017-01-01 22:11:38", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=299", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("305", "1", "2016-12-30 17:46:42", "2016-12-30 23:46:42", "<h3 class=\"m_bottom_10\">dLux NIXT70E</h3>\r\n<p class=\"m_bottom_10\">Cámara de tipo exterior con tecnología infraroja para visión nocturna automática gracias a sus 42 LEDs de IR.</p>\r\n<p class=\"m_bottom_15\">Cuenta con balance de blancos automàtico y gran calidad de imagen a color gracias a su chip Sony.</p>", "dLux NIXT70E Visión nocturna", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://csandi.xyz/NIXT70E.html#\"><b>dLux</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Cámara</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">NIXT70E</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Gris claro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "nixt70e", "", "", "2017-01-01 16:13:22", "2017-01-01 22:13:22", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=305", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("307", "1", "2016-12-30 18:05:03", "2016-12-31 00:05:03", "<h3 class=\"m_bottom_15\">Cámara IRE23</h3>\r\n<p class=\"m_bottom_15\">Cámara de tipo domo para interior con tecnología infrarroja para visión nocturna automática Cuenta con balance de blancos automático y gran calidad de imagen a color gracias a su chip Sony y un ensamblaje con certificación IP66 para soportar el clima del exterior</p>\r\n\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>dLux</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Domo</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal/Aluminio</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-NTSC\r\n-OSD\r\n-BLC\r\n-AGC</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "IRE23 Visión nocturna", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.dluxsecurity.com/\"><b>dLux</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Cámara</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">IRE23</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "ire23-vision-nocturna-antivandalica", "", "", "2017-01-01 16:15:07", "2017-01-01 22:15:07", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=307", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("312", "1", "2016-12-30 18:31:02", "2016-12-31 00:31:02", "<h2>Cámara domo IP</h2>\r\nCámara de <strong>tipo domo</strong> con visión nocturna automática y 2 mpx.\r\n\r\nCuenta con balance de blancos automático además de gran calidad de imagen  a color con un ensamblaje con certificación IP66 y un peso de 0.37kg.\r\n\r\n&nbsp;\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.dahuasecurity\">dahua</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>domo</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones</td>\r\n<td>IP66</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal/Aluminio</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-CMOS\r\nPoE</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Cámara domo dahua IP IPCHFW1200", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.dahuasecurity.com/\"><b>dahua</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Cámara IP</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">IPCHFW1200</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "camara-domo-ip-ipchfw1200", "", "", "2017-01-01 16:02:55", "2017-01-01 22:02:55", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=312", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("315", "1", "2016-12-30 18:38:12", "2016-12-31 00:38:12", "<h2 class=\"color_dark fw_medium m_bottom_10\">Cámara Bullet IP</h2>\r\nEsta cámara de tipo domo con visión nocturna automática. Además cuenta con balance de blancos automático así como gran calidad de imagen a 2 mpx a color con un ensamblaje con certificación IP66 y un peso de 0.37kg\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.dahuasecurity.com\">dahua</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Bullet</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones</td>\r\n<td>IP66</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal/Aluminio</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\" style=\"height: 55px;\" width=\"230\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\">-CMOS\r\nPoE</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n</div>\r\n</div>", "Cámara Bullet IP IPCHDW1200", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.dahuasecurity.com/\"><b>dahua</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Cámara IP</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">IPCHDW1200</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "camara-domo-ip-ipchdw1200", "", "", "2017-01-01 15:56:40", "2017-01-01 21:56:40", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=315", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("320", "1", "2016-12-30 18:47:32", "2016-12-31 00:47:32", "<h2 class=\"color_dark fw_medium m_bottom_10\">DVR Dahua Smart 1U</h2>\r\n<p class=\"m_bottom_10\">Un grabador o DVR es el equipo con el que el usuario interactúa para ver y controlar sus cámaras de vigilancia cómodamente, se encuentra en versiones con soporte para <b>4, 8 o 16 cámaras IP</b> según sea necesario.</p>\r\n<p class=\"m_bottom_15\">Este dispositivo es el recibidor de la señal de video de todas las cámaras IP, y envía el video a un monitor o TV, o bien visualizarlo vía web o mediante aplicación desde una computadora con Windows, usuarios de MAC OS X compatibles desde aplicación únicamente.</p>\r\nAdemás con muchas otras herramientas como el guardado de video en un disco duro para acceder a el en otro momento, con la posibilidad de avanzar, retroceder y exportar video\r\n\r\nEste modelo también cuenta con soporte para hasta <b>1 Disco duro SATA, hasta 4 TB (Terabytes) y 2 USB (2.0)</b>\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nIncluye soporte IPC UPnP, PoE\r\n<h5 class=\"fw_medium m_bottom_15\">Algunas specificaciones técnicas según fabricante:</h5>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.dahuasecurity.com\">dahua</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Smart</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico/Aluminio</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOtras caracteristicas:\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-PAL/NTSC\r\n-VGA\r\n-HDMI\r\n-RJ45\r\nPTZ\r\nFTP\r\nH.264\r\nHasta 2560x1920\r\n*PoE\r\n*Peso: 0.5kg sin disco duro\r\n128 usuarios</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Grabador Dahua Smart 1U", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://csandi.xyz/SMART1U.html#\"><b>Dahua</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Grabador</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">NVR4104 NVR4108 NVR4116-P</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Negro\r\nBlanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "dahua-smart-1u", "", "", "2017-01-01 15:52:39", "2017-01-01 21:52:39", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=320", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("328", "1", "2016-12-30 19:36:26", "2016-12-31 01:36:26", "<h2 class=\"color_dark fw_medium m_bottom_10\">FireLite BG12</h2>\r\n<p class=\"m_bottom_10\">Este dispositivo de emergencia está listo para disparar una alarma de incendio con solo accionar</p>\r\n<p class=\"m_bottom_15\">La serie BG-12 de Fire-Lite Alarms es una serie de dispositivos manuales de alarma contra incendios sin codificación, con una gran cantidad de funciones y rentables, además ofrecen una variedad de modelos diferentes, incluidas versiones de accionamiento único y dual.</p>\r\n<p class=\"m_bottom_15\">Los productos serie BG-12 se diseñaron específicamente para utilizar en múltiples aplicaciones y ofrecen la flexibilidad para satisfacer las necesidades tanto del instalador como del usuario final.</p>\r\n<p class=\"m_bottom_15\">Además de otras versiones, este dispositivo es compatible y recomendado para el Panel Incendio FireLite MS-9050</p>\r\n\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h5 class=\"fw_medium m_bottom_15\">Otras especificaciones técnicas según fabricante:</h5>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.firelite.com\">FireLite</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Metal/plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\"></div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>", "Estación manual FireLite BG12", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://csandi.xyz/BG12.html#\"><b>FireLite</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Interruptor manual</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">BG12</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Rojo</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "open", "closed", "", "bg12", "", "", "2017-01-01 20:36:23", "2017-01-02 02:36:23", "", "0", "http://localhost:8080/wordpress/?post_type=product&#038;p=328", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("371", "1", "2016-12-31 17:32:19", "2016-12-31 23:32:19", " ", "", "", "publish", "closed", "closed", "", "371", "", "", "2016-12-31 17:32:19", "2016-12-31 23:32:19", "", "0", "http://csandi.xyz/371/", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("330", "1", "2016-12-31 21:29:53", "2016-12-31 21:29:53", " ", "", "", "publish", "closed", "closed", "", "330", "", "", "2016-12-31 21:29:53", "2016-12-31 21:29:53", "", "0", "http://csandi.xyz/?p=330", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("383", "1", "2016-12-31 17:49:35", "2016-12-31 23:49:35", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "enforcer", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "enforcer", "", "", "2017-01-02 19:03:30", "2017-01-03 01:03:30", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/enforcer-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("384", "1", "2016-12-31 17:49:36", "2016-12-31 23:49:36", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "firelite", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "firelite", "", "", "2017-01-02 19:03:40", "2017-01-03 01:03:40", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/firelite-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("382", "1", "2016-12-31 17:49:35", "2016-12-31 23:49:35", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "dlux", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "dlux", "", "", "2017-01-02 19:03:34", "2017-01-03 01:03:34", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/dlux-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("378", "1", "2016-12-31 17:49:31", "2016-12-31 23:49:31", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "altronix", "gmhgmhg | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "altronix", "", "", "2017-01-02 19:03:11", "2017-01-03 01:03:11", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/altronix-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("379", "1", "2016-12-31 17:49:32", "2016-12-31 23:49:32", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "axis", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "axis", "", "", "2017-01-02 19:03:14", "2017-01-03 01:03:14", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/axis-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("380", "1", "2016-12-31 17:49:33", "2016-12-31 23:49:33", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "belkin", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "belkin", "", "", "2017-01-02 19:03:18", "2017-01-03 01:03:18", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/belkin-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("381", "1", "2016-12-31 17:49:34", "2016-12-31 23:49:34", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "dahua", "v | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "dahua", "", "", "2017-01-02 19:03:23", "2017-01-03 01:03:23", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/dahua-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("351", "1", "2016-12-31 17:10:37", "2016-12-31 23:10:37", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "banner3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "banner3", "", "", "2017-01-02 18:00:06", "2017-01-03 00:00:06", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/banner3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("352", "1", "2016-12-31 17:10:41", "2016-12-31 23:10:41", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "BANNERNEW", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "bannernew", "", "", "2017-01-02 18:00:23", "2017-01-03 00:00:23", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/BANNERNEW-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("353", "1", "2016-12-31 17:10:45", "2016-12-31 23:10:45", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "bannerPATRONS", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "bannerpatrons", "", "", "2017-01-02 19:03:07", "2017-01-03 01:03:07", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/bannerPATRONS-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("385", "1", "2016-12-31 17:49:48", "2016-12-31 23:49:48", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "hikvision", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "hikvision", "", "", "2017-01-02 19:03:46", "2017-01-03 01:03:46", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/hikvision-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("386", "1", "2016-12-31 17:49:50", "2016-12-31 23:49:50", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "linksys", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "linksys", "", "", "2017-01-02 19:03:52", "2017-01-03 01:03:52", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/linksys-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("387", "1", "2016-12-31 17:49:51", "2016-12-31 23:49:51", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "magellan", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "magellan", "", "", "2017-01-02 19:04:01", "2017-01-03 01:04:01", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/magellan-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("388", "1", "2016-12-31 17:49:53", "2016-12-31 23:49:53", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "optex", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "optex", "", "", "2017-01-02 19:04:03", "2017-01-03 01:04:03", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/optex-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("389", "1", "2016-12-31 17:49:54", "2016-12-31 23:49:54", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "paradox", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "paradox", "", "", "2017-01-02 19:04:06", "2017-01-03 01:04:06", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/paradox-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("390", "1", "2016-12-31 17:49:56", "2016-12-31 23:49:56", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "spectra", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "spectra", "", "", "2017-01-02 19:04:11", "2017-01-03 01:04:11", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/spectra-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("391", "1", "2016-12-31 17:49:57", "2016-12-31 23:49:57", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "wd", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "wd", "", "", "2017-01-02 19:04:14", "2017-01-03 01:04:14", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/wd-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("395", "1", "2016-12-31 17:59:07", "2016-12-31 23:59:07", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "BG12 2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720bg12-1", "", "", "2017-01-01 15:38:32", "2017-01-01 21:38:32", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720BG12-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2016-12-31 17:59:10", "2016-12-31 23:59:10", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "BG12", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720bg12", "", "", "2017-01-01 15:38:11", "2017-01-01 21:38:11", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720BG12.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("397", "1", "2016-12-31 17:59:12", "2016-12-31 23:59:12", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DG466-1", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dg466-1", "", "", "2017-01-01 22:25:16", "2017-01-02 04:25:16", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DG466-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("398", "1", "2016-12-31 17:59:14", "2016-12-31 23:59:14", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DG466", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dg466", "", "", "2017-01-01 22:25:02", "2017-01-02 04:25:02", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DG466.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("399", "1", "2016-12-31 17:59:17", "2016-12-31 23:59:17", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DG467-1", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dg467-1", "", "", "2017-01-01 22:28:47", "2017-01-02 04:28:47", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DG467-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("400", "1", "2016-12-31 17:59:19", "2016-12-31 23:59:19", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DG467", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dg467", "", "", "2017-01-01 22:29:04", "2017-01-02 04:29:04", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DG467.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("401", "1", "2016-12-31 17:59:20", "2016-12-31 23:59:20", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DVR", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dvr", "", "", "2017-01-01 16:10:36", "2017-01-01 22:10:36", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DVR.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("402", "1", "2016-12-31 17:59:22", "2016-12-31 23:59:22", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DVR2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dvr2", "", "", "2017-01-01 16:10:30", "2017-01-01 22:10:30", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DVR2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("403", "1", "2016-12-31 17:59:24", "2016-12-31 23:59:24", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DVR3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dvr3", "", "", "2017-01-01 16:10:26", "2017-01-01 22:10:26", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DVR3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("404", "1", "2016-12-31 17:59:27", "2016-12-31 23:59:27", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DVRIP-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dvrip-3", "", "", "2017-01-02 19:04:32", "2017-01-03 01:04:32", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DVRIP-3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("405", "1", "2016-12-31 17:59:28", "2016-12-31 23:59:28", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720DVRIP", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720dvrip", "", "", "2017-01-02 19:04:31", "2017-01-03 01:04:31", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720DVRIP-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("406", "1", "2016-12-31 17:59:30", "2016-12-31 23:59:30", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "G550-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720g550-2", "", "", "2017-01-01 23:38:14", "2017-01-02 05:38:14", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720G550-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("407", "1", "2016-12-31 17:59:31", "2016-12-31 23:59:31", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "G550", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720g550", "", "", "2017-01-01 23:38:18", "2017-01-02 05:38:18", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720G550.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("408", "1", "2016-12-31 17:59:33", "2016-12-31 23:59:33", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IPCHDW-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ipchdw-2", "", "", "2017-01-01 15:54:11", "2017-01-01 21:54:11", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IPCHDW-2-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("409", "1", "2016-12-31 17:59:35", "2016-12-31 23:59:35", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IPCHDW", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ipchdw", "", "", "2017-01-01 15:54:18", "2017-01-01 21:54:18", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IPCHDW-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("410", "1", "2016-12-31 17:59:37", "2016-12-31 23:59:37", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IPCHFW-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ipchfw-2", "", "", "2017-01-01 15:59:04", "2017-01-01 21:59:04", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IPCHFW-2-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("411", "1", "2016-12-31 17:59:40", "2016-12-31 23:59:40", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IPCHFW-3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ipchfw-3", "", "", "2017-01-01 15:58:59", "2017-01-01 21:58:59", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IPCHFW-3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("412", "1", "2016-12-31 17:59:43", "2016-12-31 23:59:43", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IPCHFW", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ipchfw", "", "", "2017-01-01 15:59:11", "2017-01-01 21:59:11", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IPCHFW-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("413", "1", "2016-12-31 17:59:47", "2016-12-31 23:59:47", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IRE23-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ire23-2", "", "", "2017-01-01 16:14:21", "2017-01-01 22:14:21", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IRE23-2-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("414", "1", "2016-12-31 17:59:51", "2016-12-31 23:59:51", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IRE23-3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ire23-3", "", "", "2017-01-01 16:14:26", "2017-01-01 22:14:26", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IRE23-3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("415", "1", "2016-12-31 17:59:53", "2016-12-31 23:59:53", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "IRE23", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ire23", "", "", "2017-01-01 16:14:02", "2017-01-01 22:14:02", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720IRE23-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("416", "1", "2016-12-31 18:00:23", "2017-01-01 00:00:23", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K10V-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k10v-2", "", "", "2017-01-01 20:49:35", "2017-01-02 02:49:35", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K10V-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("417", "1", "2016-12-31 18:00:27", "2017-01-01 00:00:27", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K10V", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k10v", "", "", "2017-01-01 20:49:53", "2017-01-02 02:49:53", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K10V.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("418", "1", "2016-12-31 18:00:30", "2017-01-01 00:00:30", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K32-1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k32-1", "", "", "2017-01-01 21:45:07", "2017-01-02 03:45:07", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K32-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("419", "1", "2016-12-31 18:00:34", "2017-01-01 00:00:34", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K32-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k32-2", "", "", "2017-01-01 21:45:54", "2017-01-02 03:45:54", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K32-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("420", "1", "2016-12-31 18:00:38", "2017-01-01 00:00:38", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K32", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k32", "", "", "2017-01-01 21:46:01", "2017-01-02 03:46:01", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K32.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("421", "1", "2016-12-31 18:00:43", "2017-01-01 00:00:43", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K35-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k35-2", "", "", "2017-01-01 23:07:30", "2017-01-02 05:07:30", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K35-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("422", "1", "2016-12-31 18:00:52", "2017-01-01 00:00:52", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720K35", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k35", "", "", "2017-01-01 23:07:08", "2017-01-02 05:07:08", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K35.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("423", "1", "2016-12-31 18:00:56", "2017-01-01 00:00:56", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "K636-1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k636-1", "", "", "2017-01-01 20:18:00", "2017-01-02 02:18:00", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K636-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("424", "1", "2016-12-31 18:01:07", "2017-01-01 00:01:07", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "K636", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720k636", "", "", "2017-01-01 20:18:09", "2017-01-02 02:18:09", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720K636.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("425", "1", "2016-12-31 18:01:20", "2017-01-01 00:01:20", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720MG5050", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720mg5050", "", "", "2017-01-01 21:48:43", "2017-01-02 03:48:43", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720MG5050.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("426", "1", "2016-12-31 18:01:23", "2017-01-01 00:01:23", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720NIXT70E", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720nixt70e", "", "", "2017-01-01 16:12:32", "2017-01-01 22:12:32", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720NIXT70E-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("569", "1", "2017-01-02 20:22:52", "2017-01-03 02:22:52", "<h3>BEAM 355</h3>\r\nDetectores de humo de tipo proyector, diseñado para áreas muy grandes (donde sensores normales no son viables) apto para cumplir normas NFP72", "Detector de humo BEAM355", "Detectores de humo de tipo proyector, diseñado para áreas muy grandes (donde sensores normales no son viables) apto para cumplir normas NFP72", "publish", "closed", "closed", "", "detector-beam-355", "", "", "2017-01-02 20:58:46", "2017-01-03 02:58:46", "", "0", "http://csandi.xyz/?post_type=product&#038;p=569", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("574", "1", "2017-01-02 20:29:23", "2017-01-03 02:29:23", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "beam355-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "hqdefault", "", "", "2017-01-02 20:30:52", "2017-01-03 02:30:52", "", "569", "http://csandi.xyz/wp-content/uploads/2017/01/hqdefault.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("431", "1", "2016-12-31 18:01:42", "2017-01-01 00:01:42", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD2P-1", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd2p-1", "", "", "2017-01-01 22:13:44", "2017-01-02 04:13:44", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD2P-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("432", "1", "2016-12-31 18:01:44", "2017-01-01 00:01:44", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD2P-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd2p-3", "", "", "2017-01-01 22:13:54", "2017-01-02 04:13:54", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD2P-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("433", "1", "2016-12-31 18:01:45", "2017-01-01 00:01:45", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD2P", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd2p", "", "", "2017-01-01 22:13:18", "2017-01-02 04:13:18", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD2P.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("434", "1", "2016-12-31 18:01:47", "2017-01-01 00:01:47", "Especificaciones técnicas según fabricante:\n\nMarca:	Paradox\nEstilo:	Interior/Exterior\nCertificaciones:	-\nMaterial:	Plástico\nCondición:	Nuevo-sellado \n-Compatible con equipos Magellan", "720PMD75", "Especificaciones técnicas según fabricante:\n\nMarca:	Paradox\nEstilo:	Interior/Exterior\nCertificaciones:	-\nMaterial:	Plástico\nCondición:	Nuevo-sellado \n-Compatible con equipos Magellan", "inherit", "open", "closed", "", "720pmd75", "", "", "2017-01-01 22:55:48", "2017-01-02 04:55:48", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD75.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("435", "1", "2016-12-31 18:01:49", "2017-01-01 00:01:49", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD85-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd85-2", "", "", "2017-01-01 22:53:10", "2017-01-02 04:53:10", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD85-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("436", "1", "2016-12-31 18:01:53", "2017-01-01 00:01:53", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD85-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd85-3", "", "", "2017-01-01 22:52:52", "2017-01-02 04:52:52", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD85-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("437", "1", "2016-12-31 18:02:00", "2017-01-01 00:02:00", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720PMD85-4", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720pmd85-4", "", "", "2017-01-01 22:53:09", "2017-01-02 04:53:09", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720PMD85-4.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("439", "1", "2016-12-31 18:02:11", "2017-01-01 00:02:11", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem-3", "", "", "2017-01-01 21:59:42", "2017-01-02 03:59:42", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("440", "1", "2016-12-31 18:02:15", "2017-01-01 00:02:15", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM1-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem1-2", "", "", "2017-01-01 22:58:54", "2017-01-02 04:58:54", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM1-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("441", "1", "2016-12-31 18:02:21", "2017-01-01 00:02:21", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM1", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem1", "", "", "2017-01-01 22:58:38", "2017-01-02 04:58:38", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("442", "1", "2016-12-31 18:02:24", "2017-01-01 00:02:24", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM2-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem2-2", "", "", "2017-01-01 23:03:34", "2017-01-02 05:03:34", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM2-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("443", "1", "2016-12-31 18:02:26", "2017-01-01 00:02:26", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem2", "", "", "2017-01-01 23:03:46", "2017-01-02 05:03:46", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("444", "1", "2016-12-31 18:02:28", "2017-01-01 00:02:28", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM3-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem3-2", "", "", "2017-01-01 21:59:23", "2017-01-02 03:59:23", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM3-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("445", "1", "2016-12-31 18:02:34", "2017-01-01 00:02:34", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem3", "", "", "2017-01-01 21:58:57", "2017-01-02 03:58:57", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("446", "1", "2016-12-31 18:02:38", "2017-01-01 00:02:38", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM15-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem15-2", "", "", "2017-01-01 22:01:45", "2017-01-02 04:01:45", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM15-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("447", "1", "2016-12-31 18:02:40", "2017-01-01 00:02:40", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM15-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem15-3", "", "", "2017-01-01 22:01:38", "2017-01-02 04:01:38", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM15-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("448", "1", "2016-12-31 18:02:42", "2017-01-01 00:02:42", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM15", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem15", "", "", "2017-01-01 22:01:17", "2017-01-02 04:01:17", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM15.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("449", "1", "2016-12-31 18:02:44", "2017-01-01 00:02:44", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM101-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem101-2", "", "", "2017-01-01 22:10:19", "2017-01-02 04:10:19", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM101-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("450", "1", "2016-12-31 18:02:46", "2017-01-01 00:02:46", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM101-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem101-3", "", "", "2017-01-01 22:09:52", "2017-01-02 04:09:52", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM101-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("451", "1", "2016-12-31 18:02:48", "2017-01-01 00:02:48", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM101-4", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem101-4", "", "", "2017-01-01 22:09:55", "2017-01-02 04:09:55", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM101-4.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("452", "1", "2016-12-31 18:02:50", "2017-01-01 00:02:50", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM101-5", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem101-5", "", "", "2017-01-01 22:09:35", "2017-01-02 04:09:35", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM101-5.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("453", "1", "2016-12-31 18:02:52", "2017-01-01 00:02:52", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720REM101", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720rem101", "", "", "2017-01-01 22:10:43", "2017-01-02 04:10:43", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720REM101.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("454", "1", "2016-12-31 18:02:56", "2017-01-01 00:02:56", "Tecnología infraroja con sistema de temperatura automático para evitar falsas alarmas\n\nUso residencial y comercial, cableado y con lente de diseño esférico\n\nNo es anti mascotas, pero tiene una ligera tolerancia\n", "720RX40-1", "Tecnología infraroja con sistema de temperatura automático para evitar falsas alarmas\n\nUso residencial y comercial, cableado y con lente de diseño esférico\n\nNo es anti mascotas, pero tiene una ligera tolerancia\n", "inherit", "open", "closed", "", "720rx40-1", "", "", "2017-01-01 22:39:44", "2017-01-02 04:39:44", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720RX40-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("455", "1", "2016-12-31 18:13:11", "2017-01-01 00:13:11", "Tecnología infraroja con sistema de temperatura automático para evitar falsas alarmas\n\nUso residencial y comercial, cableado y con lente de diseño esférico\n\nNo es anti mascotas, pero tiene una ligera tolerancia\n", "720RX40", "Tecnología infraroja con sistema de temperatura automático para evitar falsas alarmas\n\nUso residencial y comercial, cableado y con lente de diseño esférico\n\nNo es anti mascotas, pero tiene una ligera tolerancia\n", "inherit", "open", "closed", "", "720rx40", "", "", "2017-01-01 22:39:28", "2017-01-02 04:39:28", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720RX40.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("456", "1", "2016-12-31 18:13:13", "2017-01-01 00:13:13", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Smart1U-black", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720smart-1", "", "", "2017-01-02 19:02:24", "2017-01-03 01:02:24", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720SMART-1-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("457", "1", "2016-12-31 18:13:15", "2017-01-01 00:13:15", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Smart-1U-white", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720smart-2", "", "", "2017-01-01 15:48:04", "2017-01-01 21:48:04", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720SMART-2-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("458", "1", "2016-12-31 18:13:18", "2017-01-01 00:13:18", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Smart1U-map", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720smart-3", "", "", "2017-01-01 15:48:37", "2017-01-01 21:48:37", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720SMART-3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("459", "1", "2016-12-31 18:13:22", "2017-01-01 00:13:22", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "SP4000", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720sp4000", "", "", "2017-01-01 16:04:37", "2017-01-01 22:04:37", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720SP4000-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("460", "1", "2016-12-31 18:13:24", "2017-01-01 00:13:24", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "TM50-1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720tm50-1", "", "", "2017-01-01 20:43:43", "2017-01-02 02:43:43", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720TM50-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("461", "1", "2016-12-31 18:13:27", "2017-01-01 00:13:27", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "TM50-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720tm50-2", "", "", "2017-01-01 20:45:14", "2017-01-02 02:45:14", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720TM50-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("462", "1", "2016-12-31 18:13:30", "2017-01-01 00:13:30", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "TM50-3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720tm50-3", "", "", "2017-01-01 20:43:57", "2017-01-02 02:43:57", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720TM50-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("463", "1", "2016-12-31 18:13:33", "2017-01-01 00:13:33", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720VDMP3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720vdmp3", "", "", "2017-01-01 23:43:19", "2017-01-02 05:43:19", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720VDMP3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("464", "1", "2016-12-31 18:13:37", "2017-01-01 00:13:37", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720VIR727-1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720vir727-1", "", "", "2017-01-01 16:08:56", "2017-01-01 22:08:56", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720VIR727-1-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("465", "1", "2016-12-31 18:13:42", "2017-01-01 00:13:42", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720VIR727-2", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720vir727-2", "", "", "2017-01-01 16:09:06", "2017-01-01 22:09:06", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720VIR727-2-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("466", "1", "2016-12-31 18:13:49", "2017-01-01 00:13:49", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720VIR727-3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720vir727-3", "", "", "2017-01-01 16:08:41", "2017-01-01 22:08:41", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720VIR727-3-1.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("467", "1", "2016-12-31 18:13:55", "2017-01-01 00:13:55", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720VIR727", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720vir727", "", "", "2017-01-01 16:08:19", "2017-01-01 22:08:19", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720VIR727-4.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("468", "1", "2016-12-31 18:13:59", "2017-01-01 00:13:59", "http://www.wdc.com/sp/products/products.aspx?id=1210#Tab2", "720WDHDD-2", "http://www.wdc.com/sp/products/products.aspx?id=1210#Tab2", "inherit", "open", "closed", "", "720wdhdd-2", "", "", "2017-01-01 23:47:07", "2017-01-02 05:47:07", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720WDHDD-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("469", "1", "2016-12-31 18:14:10", "2017-01-01 00:14:10", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720WDHDD", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720wdhdd", "", "", "2017-01-01 23:47:31", "2017-01-02 05:47:31", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720WDHDD.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("470", "1", "2016-12-31 18:14:13", "2017-01-01 00:14:13", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720WS588P-2", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ws588p-2", "", "", "2017-01-01 23:52:23", "2017-01-02 05:52:23", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720WS588P-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("471", "1", "2016-12-31 18:14:18", "2017-01-01 00:14:18", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720WS588P-3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ws588p-3", "", "", "2017-01-01 23:52:41", "2017-01-02 05:52:41", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720WS588P-3.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("472", "1", "2016-12-31 18:14:22", "2017-01-01 00:14:22", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720WS588P", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720ws588p", "", "", "2017-01-01 23:52:01", "2017-01-02 05:52:01", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720WS588P.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("473", "1", "2016-12-31 18:14:24", "2017-01-01 00:14:24", " Sandi seguridad electronica", "7202WPGM-2", " Sandi seguridad electronica", "inherit", "open", "closed", "", "7202wpgm-2", "", "", "2017-01-02 19:01:59", "2017-01-03 01:01:59", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7202WPGM-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("474", "1", "2016-12-31 18:14:26", "2017-01-01 00:14:26", " Sandi seguridad electronica", "7202WPGM", " Sandi seguridad electronica", "inherit", "open", "closed", "", "7202wpgm", "", "", "2017-01-02 19:02:01", "2017-01-03 01:02:01", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7202WPGM.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("475", "1", "2016-12-31 18:14:32", "2017-01-01 00:14:32", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "720476", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "720476", "", "", "2017-01-01 22:35:35", "2017-01-02 04:35:35", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/720476.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("476", "1", "2016-12-31 18:14:36", "2017-01-01 00:14:36", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "9050", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "7209050-1", "", "", "2017-01-01 15:34:41", "2017-01-01 21:34:41", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7209050-1-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("477", "1", "2016-12-31 18:14:38", "2017-01-01 00:14:38", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "9050 3", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "7209050-2", "", "", "2017-01-01 15:34:39", "2017-01-01 21:34:39", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7209050-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("478", "1", "2016-12-31 18:14:41", "2017-01-01 00:14:41", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "9050 2", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "7209050-3", "", "", "2017-01-01 15:34:37", "2017-01-01 21:34:37", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7209050-3-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("479", "1", "2016-12-31 18:14:47", "2017-01-01 00:14:47", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "9050 1", "Panel de Incendio FireLite MS 9050 - Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "7209050", "", "", "2017-01-01 15:34:36", "2017-01-01 21:34:36", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/7209050-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("480", "1", "2016-12-31 18:37:28", "2017-01-01 00:37:28", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "LOGO Azul PNG copia", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "logo-azul-png-copia", "", "", "2017-01-01 20:16:27", "2017-01-02 02:16:27", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/LOGO-Azul-PNG-copia.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("481", "1", "2016-12-31 18:37:39", "2017-01-01 00:37:39", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "logo", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "logo", "", "", "2017-01-01 20:16:12", "2017-01-02 02:16:12", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/logo-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("482", "1", "2016-12-31 18:44:01", "2017-01-01 00:44:01", " Sandi seguridad electronica", "ssanditec2", " Sandi seguridad electronica", "inherit", "open", "closed", "", "ssanditec2", "", "", "2017-01-02 19:01:48", "2017-01-03 01:01:48", "", "0", "http://csandi.xyz/wp-content/uploads/2016/12/ssanditec2-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("492", "1", "2017-01-01 16:26:54", "2017-01-01 22:26:54", "<h2 class=\"pro-title\">HCVR4104/4108/4116HE-S3</h2>\r\n<p class=\"m_bottom_10\">Un grabador o DVR es el equipo con el que el usuario interactúa para ver y controlar sus cámaras de vigilancia cómodamente, se encuentra en versiones con soporte para <b>4, 8 o 16 cámaras IP</b> según sea necesario.</p>\r\n<p class=\"m_bottom_15\">Este dispositivo es el recibidor de la señal de video de todas las cámaras IP/análogas, y envía el video a un monitor o TV, o bien visualizarlo vía web o mediante aplicación desde una computadora con Windows, usuarios de MAC OS X compatibles desde aplicación únicamente.</p>\r\nAdemás con muchas otras herramientas como el guardado de video en un disco duro para acceder a el en otro momento, con la posibilidad de avanzar, retroceder y exportar video\r\n<h3>Características adicionales:</h3>\r\n&gt;Support HDCVI/Analog/IP Video input\r\n&gt;H.264 dual-stream video compression\r\n&gt;HCVR4104/4108/4116HE-S3: All channel 1080N/720P recording\r\n&gt;HDMI/VGA simultaneous video output\r\n&gt;4/8/16 channel synchronous playback, GRID interface &amp; smart search\r\n&gt;Support Multi-brand network cameras: Dahua, Arecont Vision, AXIS, Bosch, Brickcom, Canon, CP Plus, Dynacolor, Honeywell, Panasonic, Pelco, Samsung, Sanyo, Sony, Videosec, Vivotek and etc.\r\n&gt;ONVIF Version 2.4.1 conformance\r\n&gt;Support 1 SATA HDD up to 6TB, 2 USB2.0\r\n&gt;3D intelligent positioning with Dahua PTZ dome camera\r\n&gt;Multiple network monitoring: Web viewer, CMS(DSS/Smart PSS)&amp;Smart Phone(DMSS)\r\n<h3>Otras especificaciones:</h3>\r\n<table class=\"ke-zeroborder\" border=\"0\" width=\"100%\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"#dcdcdc\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"140\">\r\n<h4><strong>Model</strong></h4>\r\n</td>\r\n<td valign=\"top\" bgcolor=\"#f5f5f5\" width=\"161\">\r\n<h4><strong>DH-HCVR4104HE-S3</strong></h4>\r\n</td>\r\n<td valign=\"top\" bgcolor=\"#f5f5f5\" width=\"161\">\r\n<h4><strong>DH-HCVR4108HE-S3</strong></h4>\r\n</td>\r\n<td valign=\"top\" bgcolor=\"#f5f5f5\" width=\"161\">\r\n<h4><strong>DH-HCVR4116HE-S3</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>System</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Main Processor</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Embedded processor</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Operating System</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Embedded LINUX</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Video</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Input</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">4 channel, BNC</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">8 channel, BNC</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">16 channel, BNC</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">Standard</td>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">Analog</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">NTSC/PAL</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">HDCVI</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1080P/720P HDCVI Camera</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">IP</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">4+1 up to 2Mp</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">8+2 up to 5Mp</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">16+2 up to 5Mp</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Audio</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Input</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">4 channel, RCA</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">8 channel, RCA</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">16 channel, RCA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Output</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1 channel, RCA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Two-way Talk</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Reuse audio input/output channel 1</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Display</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Interface</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1 HDMI, 1 VGA</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Resolution</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1920×1080, 1280×1024, 1280×720, 1024×768</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Display Split</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4/6</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4/8/9</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4/8/9/16</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Privacy Masking</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">4 rectangular zones (each camera)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">OSD</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Camera title, Time, Video loss, Camera lock, Motion detection, Recording</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Recording</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Video/Audio Compression</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">H.264/G.711</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Resolution</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1080N(960*1080)/720P(1280×720)/960H(960×576/960×480)/D1(704×576/704×480)/ HD1(352×576/352×480) /BCIF(704×288/704×240)CIF(352×288/352×240) / QCIF(176×144/176×120)</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">Record Rate</td>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">Main Stream:</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1080N/720P/960H/D1/HD1/ BCIF/CIF/QCIF(1~25/30fps)</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1*1080N/720P(1~25/30fps)+7*(1~12/15fps) /960H/D1/HD1/BCIF/CIF/QCIF (1~25/30fps)</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1*1080N/720P(1~25/30fps)+15*(1~12/15fps) /960H/D1/HD1/BCIF/CIF/QCIF (1~25/30fps)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"70\">Extra Stream</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">CIF/QCIF(1~15fps)</td>\r\n<td colspan=\"2\" valign=\"top\" bgcolor=\"#ffffff\" width=\"321\">CIF/QCIF(1~7fps)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Bit Rate</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1~4096Kb/s</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Record Mode</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Manual, Schedule(Regular(Continuous), MD), Stop</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Record Interval</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1~60 min (default: 60 min), Pre-record: 1~30 sec, Post-record: 10~300 sec</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Video Detection &amp; Alarm</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Trigger Events</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Recording, PTZ, Tour, Alarm out, Video Push, Email, FTP, Snapshot,\r\nBuzzer &amp; Screen tips</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Video Detection</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Motion Detection, MD Zones: 396(22×18), Video Loss &amp; Camera Blank</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Alarm Input</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">4 channel</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">8 channel</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">16 channel</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Relay Output</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">3 channel</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Playback &amp; Backup</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Sync Playback</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4/9</td>\r\n<td valign=\"top\" bgcolor=\"#ffffff\" width=\"161\">1/4/9/16</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Search Mode</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Time/Date, MD &amp; Exact search (accurate to second)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Playback Functions</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Play, Pause, Stop, Rewind, Fast play, Slow play, Next file, Previous file, Next camera, Previous camera, Full screen, Repeat, Shuffle, Backup selection, Digital zoom</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Backup Mode</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">USB Device/Internal SATA burner/Network</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Network</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Ethernet</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">RJ-45 port (10/100M)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Network Functions</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">HTTP, IPv4/IPv6, TCP/IP, UPNP, RTSP, UDP, SMTP, NTP, DHCP, DNS, PPPOE, DDNS, FTP, IP Filter, SNMP, P2P</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Max. User Access</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">128 users</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Smart Phone</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">iPhone, iPad, Android, Windows Phone</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Storage</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Internal HDD</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1 SATA port, up to 6TB</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>Auxiliary Interface</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">USB Interface</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">2 ports(1 Rear), USB2.0</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">RS485</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1 port, For PTZ Control</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"7\" valign=\"top\" bgcolor=\"#f5f5f5\" width=\"621\">\r\n<h4><strong>General</strong></h4>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Power Supply</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">DC12V/2A</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Power Consumption</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">10W(without HDD)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Working Environment</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">-10°C ~+55°C / 10%~90%RH / 86~106kpa</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Dimension(W×D×H)</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">Mini 1U, 325mm×255mm×55mm</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" valign=\"top\" bgcolor=\"#ffffff\" width=\"140\">Weight</td>\r\n<td colspan=\"4\" valign=\"top\" bgcolor=\"#ffffff\" width=\"482\">1.5KG(without HDD)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n&nbsp;", "Grabador Tribrid Lite Mini 1U", "", "publish", "open", "closed", "", "grabador-mini-1u-hcvr", "", "", "2017-01-01 16:44:06", "2017-01-01 22:44:06", "", "0", "http://csandi.xyz/?post_type=product&#038;p=492", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("496", "1", "2017-01-01 16:42:51", "2017-01-01 22:42:51", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Mini1U", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "mini1u", "", "", "2017-01-01 16:43:13", "2017-01-01 22:43:13", "", "0", "http://csandi.xyz/wp-content/uploads/2017/01/Mini1U.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("494", "1", "2017-01-01 16:21:05", "2017-01-01 22:21:05", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Mini 1U-map", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "dvr0", "", "", "2017-01-01 16:21:23", "2017-01-01 22:21:23", "", "492", "http://csandi.xyz/wp-content/uploads/2017/01/dvr0.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("498", "1", "2017-01-01 17:00:42", "2017-01-01 23:00:42", "<h3><b>PCS260  4G </b></h3>\r\nEl PCS260 es la nueva versión de los módulos de comunicación PCS.\r\n\r\nEste módulo permite comunicar su sistema de alarma <a href=\"http://www.paradox.com\">Paradox</a> por medio de tecnología 4G.\r\n\r\nComunicación <strong>encriptada</strong>, de dos vías, con capacidad para 2 tarjetas SIM, además de auto cambio a redes 3G y 2G en caso de ser necesario.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Módulo 4G PCS260", "El PCS260 es la nueva versión de los módulos de comunicación PCS.\r\n\r\nEste módulo permite comunicar su sistema de alarma <a href=\"http://www.paradox.com\">Paradox</a> por medio de tecnología 4G.", "publish", "open", "closed", "", "pcs260", "", "", "2017-01-01 17:00:42", "2017-01-01 23:00:42", "", "0", "http://csandi.xyz/?post_type=product&#038;p=498", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("499", "1", "2017-01-01 16:58:02", "2017-01-01 22:58:02", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "PCS260_45degrees_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "pcs260_45degrees_big", "", "", "2017-01-01 16:59:22", "2017-01-01 22:59:22", "", "498", "http://csandi.xyz/wp-content/uploads/2017/01/PCS260_45degrees_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("500", "1", "2017-01-01 16:58:05", "2017-01-01 22:58:05", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "PCS260_Back_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "pcs260_back_big", "", "", "2017-01-01 16:59:16", "2017-01-01 22:59:16", "", "498", "http://csandi.xyz/wp-content/uploads/2017/01/PCS260_Back_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("501", "1", "2017-01-01 16:58:06", "2017-01-01 22:58:06", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "PCS260_Front_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "pcs260_front_big", "", "", "2017-01-01 16:59:33", "2017-01-01 22:59:33", "", "498", "http://csandi.xyz/wp-content/uploads/2017/01/PCS260_Front_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("502", "1", "2017-01-01 16:58:08", "2017-01-01 22:58:08", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "PCS260_Side_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "pcs260_side_big", "", "", "2017-01-01 16:59:44", "2017-01-01 22:59:44", "", "498", "http://csandi.xyz/wp-content/uploads/2017/01/PCS260_Side_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("503", "1", "2017-01-01 17:22:06", "2017-01-01 23:22:06", "<h3>NV780MR sensor de movimiento inalámbrico.</h3>\r\nEste sensor de la familia ENVY, contiene 2 sensores dobles (dos en cada lado) los cuales son capaces de proteger un amplio perímetro, tanto en interiores como en exteriores.\r\n\r\nDiseñado para dispersar rayos de excelente cobertura para <strong>12m de cada lado, </strong>ajustables manualmente.\r\n\r\nAdemás, cuenta con capacidad de reportar como una zona (ambos lados) o dos zonas (una zona cada lado del sensor).\r\n<h3>Características:</h3>\r\n<ul>\r\n 	<li>Anti mascotas (inmunidad programable hasta 40kg).</li>\r\n 	<li>Anti enmascaramiento (aviso de cobertura del sensor como medida para evitar vandalismo del dispositivo).</li>\r\n 	<li>Cuatro sensores en un solo dispositivos.</li>\r\n 	<li>Lentes de alto focal, alta eficiencia en un diseño agradable.</li>\r\n 	<li>Combinado de lentes ópticos (espejo y fresnel).</li>\r\n 	<li>Selector de frecuencias.</li>\r\n 	<li>Modo de operación singular o doble.</li>\r\n 	<li>Ajustes de rango digital y óptico</li>\r\n 	<li>Montables en la pared.</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><strong><a href=\"http://www.paradox.com\" target=\"_blank\">Gama ENVY</a></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Sensor de movimiento NV780MR", "", "publish", "open", "closed", "", "nv780mr", "", "", "2017-01-01 20:37:03", "2017-01-02 02:37:03", "", "0", "http://csandi.xyz/?post_type=product&#038;p=503", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("504", "1", "2017-01-01 17:05:39", "2017-01-01 23:05:39", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "NV780MR_45degrees_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "nv780mr_45degrees_big", "", "", "2017-01-01 17:06:07", "2017-01-01 23:06:07", "", "503", "http://csandi.xyz/wp-content/uploads/2017/01/NV780MR_45degrees_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("505", "1", "2017-01-01 17:05:41", "2017-01-01 23:05:41", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "NV780MR_Front_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "nv780mr_front_big", "", "", "2017-01-01 17:06:00", "2017-01-01 23:06:00", "", "503", "http://csandi.xyz/wp-content/uploads/2017/01/NV780MR_Front_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("506", "1", "2017-01-01 17:05:45", "2017-01-01 23:05:45", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "NV780MR_Side_big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "nv780mr_side_big", "", "", "2017-01-01 17:05:56", "2017-01-01 23:05:56", "", "503", "http://csandi.xyz/wp-content/uploads/2017/01/NV780MR_Side_big.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("522", "1", "2017-01-01 20:07:50", "2017-01-02 02:07:50", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "altronix", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "altronix-2", "", "", "2017-01-02 18:59:59", "2017-01-03 00:59:59", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/altronix-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("523", "1", "2017-01-01 20:07:51", "2017-01-02 02:07:51", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "axis", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "axis-2", "", "", "2017-01-02 19:01:33", "2017-01-03 01:01:33", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/axis-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("524", "1", "2017-01-01 20:07:52", "2017-01-02 02:07:52", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "belkin", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "belkin-2", "", "", "2017-01-02 19:01:32", "2017-01-03 01:01:32", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/belkin-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("525", "1", "2017-01-01 20:07:53", "2017-01-02 02:07:53", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "dahua", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "dahua-2", "", "", "2017-01-02 19:01:31", "2017-01-03 01:01:31", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/dahua-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("526", "1", "2017-01-01 20:07:54", "2017-01-02 02:07:54", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "dlux", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "dlux-2", "", "", "2017-01-02 19:01:29", "2017-01-03 01:01:29", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/dlux-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("527", "1", "2017-01-01 20:07:55", "2017-01-02 02:07:55", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "enforcer", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "enforcer-2", "", "", "2017-01-02 19:01:27", "2017-01-03 01:01:27", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/enforcer-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("528", "1", "2017-01-01 20:07:56", "2017-01-02 02:07:56", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "linksys", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "linksys-2", "", "", "2017-01-02 19:01:24", "2017-01-03 01:01:24", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/linksys-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("529", "1", "2017-01-01 20:07:57", "2017-01-02 02:07:57", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "magellan", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "magellan-2", "", "", "2017-01-02 19:01:19", "2017-01-03 01:01:19", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/magellan-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("530", "1", "2017-01-01 20:07:58", "2017-01-02 02:07:58", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "optex", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "optex-2", "", "", "2017-01-02 19:01:20", "2017-01-03 01:01:20", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/optex-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("531", "1", "2017-01-01 20:07:59", "2017-01-02 02:07:59", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "paradox", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "paradox-2", "", "", "2017-01-02 19:01:19", "2017-01-03 01:01:19", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/paradox-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("532", "1", "2017-01-01 20:08:00", "2017-01-02 02:08:00", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "spectra", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "spectra-2", "", "", "2017-01-02 19:01:00", "2017-01-03 01:01:00", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/spectra-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("533", "1", "2017-01-01 20:08:01", "2017-01-02 02:08:01", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "wd", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "open", "closed", "", "wd-2", "", "", "2017-01-02 19:00:53", "2017-01-03 01:00:53", "", "38", "http://csandi.xyz/wp-content/uploads/2016/12/wd-2.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("534", "1", "2017-01-01 20:24:06", "2017-01-02 02:24:06", "<h3>Paradox K636</h3>\r\n<p class=\"m_bottom_10\">Teclado de 10 zonas con iluminación LED</p>\r\n<p class=\"m_bottom_15\">Soporte para armado en casa.</p>\r\n<p class=\"m_bottom_15\">Una partición únicamente.</p>", "Teclado K636", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Teclado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">K636+</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr class=\"divider_type_3 m_bottom_10\" />", "publish", "closed", "closed", "", "teclado-k636", "", "", "2017-01-01 20:24:06", "2017-01-02 02:24:06", "", "0", "http://csandi.xyz/?post_type=product&#038;p=534", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("535", "1", "2017-01-01 20:45:34", "2017-01-02 02:45:34", "<h2>TM50</h2>\r\n<p class=\"m_bottom_10\">Teclado inteligente con una asombrosa facilidad de uso gracias a su pantalla táctil de 5 pulgadas que, combina la potencia de la seguridad y la usabilidad con una gran interfaz gráfica para el usuario.</p>\r\n<p class=\"m_bottom_15\">Cuenta con muchas características que hacen este dispositivo el favorito de muchas personas, por ejemplo:</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nPuede crear, editar y personalizar el nombre de sus usuarios, zonas, áreas y PGMs el cual puede visualizar en su pantalla a color\r\n\r\nCuenta con lector para tarjetas <b>Micro SD</b> del cual puede cargar fotografías que desee ver a modo de salvapantallas\r\nMonitorear en pantalla, vea en tiempo real el estado de todas las áreas y zonas, además puede probarlas gracias a su <b>Solo test Mode</b>\r\nMenú sencillo de usar mediante iconos y botones para un uso intuitivo y en español para una mejor experiencia de usuario.\r\nCuenta con termómetro integrado y capacidad para conectar uno externo.\r\nListo para trabajar con hasta 8 salidas para PGM\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><strong><a href=\"http://www.paradox.com/flash/TM50DemoMGSPWithPresentation3D.swf\" target=\"_blank\">Clic en este enlace para mostrar un teclado virtual de demostración completamente funcional</a></strong></h2>", "Teclado táctil TM50", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Teclado táctil</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">TM50-G2K02</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>-Blanco\r\n-Rojo\r\n-Verde\r\n-Negro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "teclado-tactil-tm50", "", "", "2017-01-01 20:48:13", "2017-01-02 02:48:13", "", "0", "http://csandi.xyz/?post_type=product&#038;p=535", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("536", "1", "2017-01-01 20:52:19", "2017-01-02 02:52:19", "<h2 class=\"m_bottom_10\">K10</h2>\r\n<p class=\"m_bottom_10\">Teclado de 10 zonas con iluminación LED</p>\r\n<p class=\"m_bottom_15\">Soporte para armado en casa, y 2 particiones</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\n3 tipos de alarmas de pánico\r\n\r\nOtras especificaciones:\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Spectra y Magellan\r\n-StayD\r\n\r\n-Brillo ajustable</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Teclado K10", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Teclado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">K10V</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "teclado-k10", "", "", "2017-01-01 20:52:19", "2017-01-02 02:52:19", "", "0", "http://csandi.xyz/?post_type=product&#038;p=536", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("537", "1", "2017-01-01 21:46:55", "2017-01-02 03:46:55", "<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h3 class=\"m_bottom_10\">K32+</h3>\r\n<p class=\"m_bottom_10\">Teclado de 32 zonas con iluminación LED</p>\r\n<p class=\"m_bottom_15\">Soporte para armado en casa, y 2 particiones distintas</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\n</div>\r\n<div id=\"tab-3\">\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Spectra y Magellan\r\n-StayD\r\n-Botones de pánico\r\n-Brillo ajustable</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>\r\n</div>", "Teclado K32", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Teclado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">K32+</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco con gris</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "k32", "", "", "2017-01-01 21:46:55", "2017-01-02 03:46:55", "", "0", "http://csandi.xyz/?post_type=product&#038;p=537", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("538", "1", "2017-01-01 21:51:58", "2017-01-02 03:51:58", "<h3>Paradox Magellan</h3>\r\n<p class=\"m_bottom_10\">Panel de alarma Paradox familia transceptora Magellan</p>\r\n<p class=\"m_bottom_15\">Esta es la unidad central de la alarma, en ella se hacen todas las conexiones correspondientes con los accesorios como los sensores, el teclado, los PGM, la línea de teléfono, la sirena, la batería, y demás objetos periféricos.</p>\r\nNo necesita de otros dispositivos para comunicar porque este equipo ya es capaz de hacerlo, lo que la convierte en la mejor opción para los usuarios de equipos inalámbricos\r\n<h4></h4>\r\n&nbsp;", "Panel Magellan MG5050", "<p class=\"m_bottom_10\">Panel de alarma<a href=\"http://www.paradox.com\"> Paradox </a>familia transceptora Magellan</p>\r\n<p class=\"m_bottom_15\">Esta es la unidad central de la alarma, en ella se hacen todas las conexiones correspondientes con los accesorios como los sensores, el teclado, los PGM, la línea de teléfono, la sirena, la batería, y demás objetos periféricos.</p>\r\nNo necesita de otros dispositivos para comunicar porque este equipo ya es capaz de hacerlo, lo que la convierte en la mejor opción para los usuarios de equipos inalámbricos", "publish", "closed", "closed", "", "panel-magellan-mg5050", "", "", "2017-01-01 21:51:58", "2017-01-02 03:51:58", "", "0", "http://csandi.xyz/?post_type=product&#038;p=538", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("539", "1", "2017-01-01 22:00:15", "2017-01-02 04:00:15", "<h3>REM3</h3>\r\n<p class=\"m_bottom_10\">Control remoto familia REM</p>\r\n<p class=\"m_bottom_15\">8cm x 3.4cm x 1.5cm (3.1in x 1.3in x 0.6in)</p>\r\n\r\n<h3 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h3>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan\r\n-Controla hasta 6 PGMs\r\n-StayD\r\n-Memoria de eventos\r\n-Resistente al agua</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Control remoto REM 3", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Control remoto</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">REM3</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Negro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "rem3", "", "", "2017-01-01 22:00:15", "2017-01-02 04:00:15", "", "0", "http://csandi.xyz/?post_type=product&#038;p=539", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("540", "1", "2017-01-01 22:04:52", "2017-01-02 04:04:52", "<h3 class=\"m_bottom_10\">REM 15</h3>\r\n<p class=\"m_bottom_10\">Control remoto con diseño ergonómico y delgado</p>\r\n<p class=\"m_bottom_15\">Resistencia al agua y botones programables para funciones extras.</p>\r\n\r\n<h5 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h5>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Control remoto REM 15", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Control remoto</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">REM15</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Negro</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<hr class=\"divider_type_3 m_bottom_10\" />\r\n<p class=\"m_bottom_10\"></p>", "publish", "closed", "closed", "", "control-remoto-rem-15", "", "", "2017-01-01 22:05:29", "2017-01-02 04:05:29", "", "0", "http://csandi.xyz/?post_type=product&#038;p=540", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("541", "1", "2017-01-01 22:10:52", "2017-01-02 04:10:52", "<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h3 class=\"m_bottom_10\">REM 101</h3>\r\n<p class=\"m_bottom_10\">Control remoto LED para emergencias o alertas de pánico (el dispositivo envía una alerta de pánico al presionar su botón)</p>\r\n<p class=\"m_bottom_15\">Resistente al agua y disponible en 2 colores</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nPortátil y cómodo, puede ponerse una correa y usa baterías CR2032 con duración de hasta 3 años</div>\r\n<div id=\"tab-3\"></div>\r\n<h4 id=\"tab-1\">Otras especificaciones técnicas según fabricante:</h4>\r\n<div>\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>\r\n<div id=\"tab-1\"></div>\r\n</div>", "Control remoto REM 101", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"#\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Control remoto</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">REM101</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>BlancoNegro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "control-remoto-rem-101", "", "", "2017-01-01 22:10:52", "2017-01-02 04:10:52", "", "0", "http://csandi.xyz/?post_type=product&#038;p=541", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("542", "1", "2017-01-01 22:20:27", "2017-01-02 04:20:27", "<h3>PMD2P</h3>\r\n<p class=\"m_bottom_10\">Sensor de movimiento inalámbrico con capacidad anti mascotas</p>\r\n<p class=\"m_bottom_15\">Compensación automática de temperatura</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nSelector de sensibilidad y tamper doble\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\" style=\"height: 31px;\" width=\"231\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Sensor de movimiento PMD2P", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">PMD2P</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "pmd2p", "", "", "2017-01-01 22:20:27", "2017-01-02 04:20:27", "", "0", "http://csandi.xyz/?post_type=product&#038;p=542", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("544", "1", "2017-01-01 22:25:44", "2017-01-02 04:25:44", "<h3 class=\"m_bottom_10\">DG466</h3>\r\n<p class=\"m_bottom_10\">Sensor para techo con detección en apertura hacia el suelo, cuenta con dos modos de uso: simple y para sistemas EVO)</p>\r\n<p class=\"m_bottom_15\">Crea un campo de protección de 360º grados</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nA diferencia del <b>DG467</b> este sensor cuenta con dos sensores que determinan si los movimientos son entrando o saliendo (incoming and outgoing system) que es ideal para proteger lugares abiertos como balcones y patios.\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\"></div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>\r\n<div id=\"tab-1\"></div>", "Sensor DG466", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">Paradome DG466</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "dg466", "", "", "2017-01-01 22:25:44", "2017-01-02 04:25:44", "", "0", "http://csandi.xyz/?post_type=product&#038;p=544", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("545", "1", "2017-01-01 22:29:12", "2017-01-02 04:29:12", "<h3>DG467</h3>\r\n<p class=\"m_bottom_10\">Sensor para techo con detección en apertura hacia el suelo, cuenta con dos modos de uso: simple y para sistemas EVO.</p>\r\n<p class=\"m_bottom_15\">Crea un campo de protección de 360º grados</p>\r\n\r\n<h3 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h3>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Sensor DG467", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">Paradome DG467</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "dg467", "", "", "2017-01-01 22:30:05", "2017-01-02 04:30:05", "", "0", "http://csandi.xyz/?post_type=product&#038;p=545", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("546", "1", "2017-01-01 22:35:50", "2017-01-02 04:35:50", "<h3>476 PRO</h3>\r\n<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<p class=\"m_bottom_10\">Sensor de movimiento simple o con versión anti mascotas (PET)</p>\r\n<p class=\"m_bottom_15\">Evita interferencias EMI y RFI</p>\r\n\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Spectra y Magellan\r\n-Protección anti mascotas hasta 18Kg (PET)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Sensor 476 PRO", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">476PRO</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "sensor-476-pro", "", "", "2017-01-01 22:35:50", "2017-01-02 04:35:50", "", "0", "http://csandi.xyz/?post_type=product&#038;p=546", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("547", "1", "2017-01-01 22:40:06", "2017-01-02 04:40:06", "<h3>RX40</h3>\r\n<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<p class=\"m_bottom_10\">Este sensor de movimiento de la firma <a href=\"http://www.optexamerica.com\"><strong>OPTEX</strong></a> cuenta con tecnología infrarroja con sistema de temperatura automático para evitar falsas alarmas</p>\r\n<p class=\"m_bottom_15\">Uso residencial y comercial, cableado y con lente de diseño esférico</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nNo es anti mascotas, pero tiene una ligera tolerancia</div>\r\n<div id=\"tab-3\"></div>", "Sensor RX40", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.optexamerica.com\"><b>Optex</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">RX40PI</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "rx40", "", "", "2017-01-01 22:40:06", "2017-01-02 04:40:06", "", "0", "http://csandi.xyz/?post_type=product&#038;p=547", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("548", "1", "2017-01-01 22:54:04", "2017-01-02 04:54:04", "<h3>PMD85</h3>\r\n<p class=\"m_bottom_10\">Sensor de movimiento inalámbrico con capcidad anti mascotas de hasta 40Kg y doble óptica</p>\r\n<p class=\"m_bottom_15\">Compensación automática de temperatura y protección contra UV</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nSelector de sensibilidad y tamper doble\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior/Exterior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Sensor PMD85 Alto rendimiento", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">MG-PMD85W</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco con gris</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "pmd85", "", "", "2017-01-01 23:12:34", "2017-01-02 05:12:34", "", "0", "http://csandi.xyz/?post_type=product&#038;p=548", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("553", "1", "2017-01-01 23:12:20", "2017-01-02 05:12:20", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "pmd85", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "pmd85-2", "", "", "2017-01-01 23:12:30", "2017-01-02 05:12:30", "", "548", "http://csandi.xyz/wp-content/uploads/2017/01/pmd85.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("549", "1", "2017-01-01 22:57:19", "2017-01-02 04:57:19", "<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h4 class=\"m_bottom_10\">PMD75</h4>\r\n<p class=\"m_bottom_10\">Sensor de movimiento inalámbrico con capcidad anti mascotas (con más tamaño que el PMD2P)</p>\r\n<p class=\"m_bottom_15\">Compensación automática de temperatura</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nSelector de sensibilidad y tamper doble</div>\r\n<div id=\"tab-3\">\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>\r\n</div>", "Sensor PMD75", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Sensor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">PMD75</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "pmd75", "", "", "2017-01-01 22:57:19", "2017-01-02 04:57:19", "", "0", "http://csandi.xyz/?post_type=product&#038;p=549", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("550", "1", "2017-01-01 23:00:46", "2017-01-02 05:00:46", "<h3>REM1</h3>\r\n<p class=\"m_bottom_10\">Control remoto familia REM</p>\r\n<p class=\"m_bottom_15\">Un diseño diferente, con un color azul fuerte semitransparente e iluminación en rojo</p>\r\n\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan\r\n-Controla hasta 6 PGMs\r\n-StayD\r\n-Memoria de eventos\r\n-Resistente al agua</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Control remoto REM1", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Control remoto</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">REM1</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Azul</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "rem1", "", "", "2017-01-01 23:00:46", "2017-01-02 05:00:46", "", "0", "http://csandi.xyz/?post_type=product&#038;p=550", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("551", "1", "2017-01-01 23:04:04", "2017-01-02 05:04:04", "<h3>REM2</h3>\r\n<p class=\"m_bottom_10\">Control remoto familia REM</p>\r\n<p class=\"m_bottom_15\">Diseño curioso y elegante, en color negro , su iluminación es color rojo</p>\r\n\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan\r\n-\r\n-StayD\r\n-Memoria de eventos\r\n-Resistente al agua</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Control remoto REM2", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Control remoto</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">REM2</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Negro</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "rem2", "", "", "2017-01-01 23:04:04", "2017-01-02 05:04:04", "", "0", "http://csandi.xyz/?post_type=product&#038;p=551", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("552", "1", "2017-01-01 23:08:01", "2017-01-02 05:08:01", "<h3>K37</h3>\r\n<p class=\"m_bottom_10\">Teclado de 32 zonas con iluminación LED en teclas y pantalla LCD</p>\r\n<p class=\"m_bottom_15\">Soporte para armado en casa, y 2 particiones distintas que muestra en su pantalla</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nAlarmas de pánico (3) y botones One touch action (8)\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Spectra y Magellan\r\n-StayD\r\n-Botones de pánico\r\n-Brillo ajustable</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Teclado K37", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Teclado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">K37</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco con gris</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "k37", "", "", "2017-01-01 23:08:01", "2017-01-02 05:08:01", "", "0", "http://csandi.xyz/?post_type=product&#038;p=552", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("554", "1", "2017-01-01 23:34:53", "2017-01-02 05:34:53", "<div id=\"tab-1\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h3 class=\"m_bottom_10\">2WPGM</h3>\r\n<p class=\"m_bottom_10\">Función PGM con transmisión inalámbrica</p>\r\n<p class=\"m_bottom_15\">360º de cobertura y hasta 70mts con Modelos Magellan 5000</p>\r\n<p class=\"m_bottom_15\">433MHz y 868MHz</p>\r\n<p class=\"m_bottom_15\">Dimensiones: 12.5cm x 4.6cm x 2.5cm</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nInmunidad a interferencias EMI y señales RFI</div>\r\n<div id=\"tab-3\"></div>\r\n<div>\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Paradox</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">\r\n-Ofrece 433mhz y 868mhz\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"tab-3\"></div>\r\n</div>", "2WPGM inalámbrico", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> PGM Wireless</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">2W-PGM</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "2wpgm", "", "", "2017-01-01 23:34:53", "2017-01-02 05:34:53", "", "0", "http://csandi.xyz/?post_type=product&#038;p=554", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("555", "1", "2017-01-01 23:39:14", "2017-01-02 05:39:14", "<h3>G550</h3>\r\n<p class=\"m_bottom_10\">Detector de ruptura de un cristal inalámbrico</p>\r\n<p class=\"m_bottom_15\">Radio de 5 metros y 360º de cobertura</p>\r\n<p class=\"m_bottom_15\">Análisis de golpe y ondas</p>\r\n\r\n\r\n<hr class=\"m_bottom_15\" />\r\n\r\nInmunidad a interferencias EMI y señales RFI\r\n<h4 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h4>\r\n<div class=\"row clearfix\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td><a href=\"http://www.paradox.com\">Paradox</a></td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div class=\"table_sm_wrap\">Tamién:\r\n-Ofrece 433mhz y 868mhz\r\n-Usa 3 baterías AAA alkalinas\r\n-Reconoce el patrón de ruptura\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Magellan</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>", "Sensor ruptura de cristal G550", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://wwww.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Detector ruptura de cristal</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">G550</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "g550", "", "", "2017-01-01 23:39:14", "2017-01-02 05:39:14", "", "0", "http://csandi.xyz/?post_type=product&#038;p=555", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("556", "1", "2017-01-01 23:42:52", "2017-01-02 05:42:52", "<h3 class=\"m_bottom_10\">VDMP3</h3>\r\n<p class=\"m_bottom_10\">Transmisor que comunica su alarma con la red telefónica</p>\r\n<p class=\"m_bottom_15\">Esta es la unidad periférica que se utiliza para comunicarse con su alarma desde su teléfono (dentro o fuera del país).</p>\r\nUna vez instalado le comunicará cuando un evento suceda automáticamente, o bien, al llamar a su casa y seguir una serie de pasos su alarma responderá pidiendole su código de acceso, una vez puesto usted podrá controlar su sistema, esto incluye:\r\n\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Consultar estado de alarma</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Armar área</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Desarmar área</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Encender luces</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Apagar luces</li>\r\n</ul>\r\nY demás dispositivos disponibles.\r\n<p class=\"m_bottom_10\">Otras cualidades son:</p>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Configurar hasta 8 números telefónicos al que reportar</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Control completo en español</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Fácil de usar y funcional las 24 horas del día</li>\r\n</ul>\r\n</ul>\r\n&nbsp;\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n<ul class=\"vertical_list_type_2 m_left_20\">\r\n 	<li class=\"m_bottom_15\">Compatible con equipos Spectra y Magellan</li>\r\n</ul>\r\n</ul>\r\nSi desea controlar mediante mensajes de texto o no posee línea telefónica fija, por favor revisa este otro dispositivo:\r\n<b><a href=\"http://csandi.xyz/producto/pcs260/\">Comunicador por mensaje de texto -PCS260-</a></b>", "Comunicador vía teléfono VDMP3", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Transmisor</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo exacto:</td>\r\n<td><span class=\"color_dark\">VDMP3</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>-</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "vdmp3", "", "", "2017-01-01 23:43:25", "2017-01-02 05:43:25", "", "0", "http://csandi.xyz/?post_type=product&#038;p=556", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("557", "1", "2017-01-01 23:49:13", "2017-01-02 05:49:13", "<h4>WD HDD</h4>\r\n<p class=\"m_bottom_10\">No debería utilizar un disco duro de sobremesa en su sistema de vigilancia y seguridad porque no está diseñado para esta función.</p>\r\n<p class=\"m_bottom_15\">El almacenamiento especial para vigilancia WD Purple ha sido probado para su compatibilidad con una amplia gama de sistemas de seguridad. Estos discos están diseñados para reemplazar a los discos estándares de sobremesa que no están diseñados para los exigentes entornos de los sistemas de seguridad de alta definición que operan de forma ininterrumpida. Los discos de sobremesa están fabricados para operar a cortos intervalos y no están diseñados para resistir las fluctuaciones de altas temperaturas y las vibraciones típicas en las aplicaciones para vigilancia.</p>\r\nLos discos duros para vigilancia WD Purple están equipados con la tecnología AllFrame que opera con la transmisión ATA para reducir la pérdida de imágenes, mejorar la reproducción y aumentar el número de compartimentos compatibles. AllFrame reduce las interrupciones de vídeo comunes que suelen producirse cuando los discos duros de sobremesa se utilizan incorrectamente en los sistemas de seguridad. La pérdida de metraje es un problema serio cuando ocurre un evento y se necesita visualizar el vídeo. WD Purple con AllFrame proporciona la confianza que espera cuando necesita visionar el vídeo y recuperar un metraje importante para la vigilancia.\r\n\r\nLos discos duros para vigilancia WD Purple están construidos para su compatibilidad con los principales fabricantes de chipsets y chasis líderes del sector para lograr la integración con su sistema de vigilancia, además de que están optimizados para admitir hasta 32 cámaras de alta definición, por lo que disfrutará de flexibilidad para actualizar y ampliar su sistema de seguridad en el futuro.\r\n<div id=\"tab-2\" class=\"ui-tabs-panel ui-widget-content ui-corner-bottom\">\r\n<h5 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h5>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Reduce la pérdida de imágenes con discos especiales para la vigilancia.</td>\r\n</tr>\r\n<tr>\r\n<td>-Especialmente diseñados para los sistemas de vigilancia y seguridad.</td>\r\n</tr>\r\n<tr>\r\n<td>-Los algoritmos de caché están personalizados para aplicaciones exigentes en escritura, con baja velocidad de transmisión y gran número de transmisiones como los sistemas de vigilancia.</td>\r\n</tr>\r\n<tr>\r\n<td>-Cambio prioritario para la escritura y las asignaciones del caché.</td>\r\n</tr>\r\n<tr>\r\n<td>-Compatibilidad con la transmisión TLER y ATA.</td>\r\n</tr>\r\n<tr>\r\n<td>-Utilización de hasta ocho discos.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p style=\"text-align: center;\"><a href=\"http://www.wdc.com/sp/products/products.aspx?id=1210#Tab2\">Clic aqaí para ver artículo en página de Western Digital</a></p>", "Disco duro WD Purple para CCTV", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.wdc.com/sp/\"><b>Western Digital</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Disco duro interno</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Serie :</td>\r\n<td><span class=\"color_dark\">WD PURX</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>-</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "disco-duro-wd-purple-cctv", "", "", "2017-01-01 23:49:13", "2017-01-02 05:49:13", "", "0", "http://csandi.xyz/?post_type=product&#038;p=557", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("558", "1", "2017-01-01 23:52:56", "2017-01-02 05:52:56", "<h4>WS588P</h4>\r\nDispositivo detector de humo techo o pared\r\n<h5 class=\"fw_medium m_bottom_15\">Especificaciones técnicas según fabricante:</h5>\r\n<div class=\"row clearfix\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-6 m_xs_bottom_15\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Marca:</td>\r\n<td>Xiamen</td>\r\n</tr>\r\n<tr>\r\n<td>Estilo:</td>\r\n<td>Interior</td>\r\n</tr>\r\n<tr>\r\n<td>Certificaciones:</td>\r\n<td>-</td>\r\n</tr>\r\n<tr>\r\n<td>Material:</td>\r\n<td>Plástico</td>\r\n</tr>\r\n<tr>\r\n<td>Condición:</td>\r\n<td>Nuevo-sellado</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"col-lg-6 col-md-6 col-sm-6\">\r\n<div class=\"table_sm_wrap\">\r\n<table class=\"description_table type_3 m_xs_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>-Compatible con equipos Spectra y MagellanCuenta con sirena integrada y protección anti mosquitos.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>", "Detector de humo WS588P", "<table class=\"description_table m_bottom_10\">\r\n<tbody>\r\n<tr>\r\n<td>Fabricante:</td>\r\n<td><a class=\"color_dark\" href=\"http://www.paradox.com\"><b>Xiamen/Paradox</b></a></td>\r\n</tr>\r\n<tr>\r\n<td>Tipo de producto:</td>\r\n<td> Detector de humo</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h5 class=\"fw_medium m_bottom_10\">Información adicional</h5>\r\n<table class=\"description_table m_bottom_5\">\r\n<tbody>\r\n<tr>\r\n<td>Modelo:</td>\r\n<td><span class=\"color_dark\">WS588P</span></td>\r\n</tr>\r\n<tr>\r\n<td>Colores:</td>\r\n<td>Blanco</td>\r\n</tr>\r\n</tbody>\r\n</table>", "publish", "closed", "closed", "", "ws588p", "", "", "2017-01-01 23:55:26", "2017-01-02 05:55:26", "", "0", "http://csandi.xyz/?post_type=product&#038;p=558", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("573", "1", "2017-01-02 20:29:13", "2017-01-03 02:29:13", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Beam355", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "_58", "", "", "2017-01-02 20:30:35", "2017-01-03 02:30:35", "", "569", "http://csandi.xyz/wp-content/uploads/2017/01/58.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("575", "1", "2017-01-02 20:40:23", "2017-01-03 02:40:23", "<h4>ANN 80</h4>\r\nAnunciador compacto con pantalla LCD. disponible en modelo rojo y Blanco (ANN80-W)", "Anunciador LCD ANN80", "Anunciador compacto con pantalla LCD. disponible en modelo rojo y Blanco (ANN80-W)", "publish", "closed", "closed", "", "ann80", "", "", "2017-01-02 20:40:23", "2017-01-03 02:40:23", "", "0", "http://csandi.xyz/?post_type=product&#038;p=575", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("576", "1", "2017-01-02 20:37:46", "2017-01-03 02:37:46", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "ann803", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "ann803", "", "", "2017-01-02 20:38:19", "2017-01-03 02:38:19", "", "575", "http://csandi.xyz/wp-content/uploads/2017/01/ann803.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("577", "1", "2017-01-02 20:37:52", "2017-01-03 02:37:52", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "ann802", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "ann802", "", "", "2017-01-02 20:38:30", "2017-01-03 02:38:30", "", "575", "http://csandi.xyz/wp-content/uploads/2017/01/ann802.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("578", "1", "2017-01-02 20:38:00", "2017-01-03 02:38:00", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "ann80", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "ann80", "", "", "2017-01-02 20:38:15", "2017-01-03 02:38:15", "", "575", "http://csandi.xyz/wp-content/uploads/2017/01/ann80.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("579", "1", "2017-01-02 20:45:33", "2017-01-03 02:45:33", "<h4>SD992</h4>\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<p class=\"d_sm_none d_xs_block\">El SD992 es un detector de humo fotoeléctrico de dos hilos que utiliza una cámara de detección óptica de tecnología de punta. La luz LED ubicada en cada detector ofrece indicación local visible. La luz LED se puede enclavar mediante un comando de código desde el panel de control para una indicación de alarma. La luz LED también se puede desenclavar a su condición normal mediante un comando de código.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\">\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\"><a href=\"SD992.html\"><button class=\"button_type_4 bg_scheme_color d_sm_inline_middle m_sm_bottom_0 r_corners tr_all_hover color_light mw_0 m_bottom_15\">Detalles</button></a></div>\r\n</div>", "Detector de humo SD992", "<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<p class=\"d_sm_none d_xs_block\">El SD992 es un detector de humo fotoeléctrico de dos hilos que utiliza una cámara de detección óptica de tecnología de punta. La luz LED ubicada en cada detector ofrece indicación local visible. La luz LED se puede enclavar mediante un comando de código desde el panel de control para una indicación de alarma. La luz LED también se puede desenclavar a su condición normal mediante un comando de código.</p>\r\n\r\n</div>", "publish", "closed", "closed", "", "sd992", "", "", "2017-01-02 20:45:33", "2017-01-03 02:45:33", "", "0", "http://csandi.xyz/?post_type=product&#038;p=579", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("580", "1", "2017-01-02 20:44:40", "2017-01-03 02:44:40", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "sd992", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "sd992", "", "", "2017-01-02 20:44:52", "2017-01-03 02:44:52", "", "579", "http://csandi.xyz/wp-content/uploads/2017/01/sd992.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("581", "1", "2017-01-02 20:49:16", "2017-01-03 02:49:16", "<h4>FCPS</h4>\r\nCPS-24FS6 de Fire-Lite Alarms es un suministro de energía extensor de NAC remoto, de 6 amperes, rentable y compacto, y un cargador de batería. Está diseñado para extender las capacidades de los circuitos de aparatos de notificación (NAC) existentes y cumple con los requisitos de ADA, ya que ofrece sincronización de los NAC y energía auxiliar para soportar accesorios del sistema de 24 voltios. Se puede conectar a cualquier panel de control de alarma contra incendios (FACP) de 12 o 24 voltios o se puede utilizar para aplicaciones autónomas.", "Fuente de energía FCPS", "CPS-24FS6 de Fire-Lite Alarms es un suministro de energía extensor de NAC remoto, de 6 amperes, rentable y compacto, y un cargador de batería. Está diseñado para extender las capacidades de los circuitos de aparatos de notificación (NAC) existentes y cumple con los requisitos de ADA, ya que ofrece sincronización de los NAC y energía auxiliar para soportar accesorios del sistema de 24 voltios. Se puede conectar a cualquier panel de control de alarma contra incendios (FACP) de 12 o 24 voltios o se puede utilizar para aplicaciones autónomas.", "publish", "closed", "closed", "", "fcps", "", "", "2017-01-02 21:00:40", "2017-01-03 03:00:40", "", "0", "http://csandi.xyz/?post_type=product&#038;p=581", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("582", "1", "2017-01-02 20:46:55", "2017-01-03 02:46:55", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "FLFCPS24FS6NNB-D", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "flfcps24fs6nnb-d", "", "", "2017-01-02 20:47:40", "2017-01-03 02:47:40", "", "581", "http://csandi.xyz/wp-content/uploads/2017/01/FLFCPS24FS6NNB-D.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("590", "1", "2017-01-02 21:00:28", "2017-01-03 03:00:28", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "fir_fcps-24f_can", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "fir_fcps-24f_can", "", "", "2017-01-02 21:00:37", "2017-01-03 03:00:37", "", "581", "http://csandi.xyz/wp-content/uploads/2017/01/fir_fcps-24f_can.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("584", "1", "2017-01-02 20:53:52", "2017-01-03 02:53:52", "<h4>W-SD355</h4>\r\nDetector de humo inalámbrico de rápida respuesta, de tipo fotoeléctrico direccionable para area abierta", "Detector de humo W-SD355", "Detector de humo inalámbrico de rápida respuesta, de tipo fotoeléctrico direccionable para area abierta", "publish", "closed", "closed", "", "w-sd355", "", "", "2017-01-02 20:57:23", "2017-01-03 02:57:23", "", "0", "http://csandi.xyz/?post_type=product&#038;p=584", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("587", "1", "2017-01-02 20:55:57", "2017-01-03 02:55:57", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "wsd", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "wsd", "", "", "2017-01-02 20:56:11", "2017-01-03 02:56:11", "", "584", "http://csandi.xyz/wp-content/uploads/2017/01/wsd.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("591", "1", "2017-01-02 21:07:35", "2017-01-03 03:07:35", "<div class=\"f_left p_list_description f_sm_none w_sm_full m_xs_bottom_10\">\r\n<h4 class=\"d_sm_none d_xs_block\">MDL3</h4>\r\n<p class=\"d_sm_none d_xs_block\">El módulo Sync•Circuit sincroniza estrobos SpectrAlert® a 1 Hz y bocinas en temporal 3 a través de un solo par de cables. La tecnología patentada del módulo también permite silenciar las bocinas y sirenas en modelos de bocina/estrobo y sirena/estrobo a través de un par de cables.</p>\r\n\r\n</div>", "Módulos de sincronización MDL3", "<div class=\"f_left p_list_description f_sm_none w_sm_full m_xs_bottom_10\">\r\n<p class=\"d_sm_none d_xs_block\">El módulo Sync•Circuit sincroniza estrobos SpectrAlert® a 1 Hz y bocinas en temporal 3 a través de un solo par de cables. La tecnología patentada del módulo también permite silenciar las bocinas y sirenas en modelos de bocina/estrobo y sirena/estrobo a través de un par de cables.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\">\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\"><a href=\"MDL3.html\"><button class=\"button_type_4 bg_scheme_color d_sm_inline_middle m_sm_bottom_0 r_corners tr_all_hover color_light mw_0 m_bottom_15\">Detalles</button></a></div>\r\n</div>", "publish", "closed", "closed", "", "mdl3", "", "", "2017-01-02 21:10:00", "2017-01-03 03:10:00", "", "0", "http://csandi.xyz/?post_type=product&#038;p=591", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("595", "1", "2017-01-02 21:09:47", "2017-01-03 03:09:47", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "mdl3", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "mdl3-2", "", "", "2017-01-02 21:09:56", "2017-01-03 03:09:56", "", "591", "http://csandi.xyz/wp-content/uploads/2017/01/mdl3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("596", "1", "2017-01-02 21:15:14", "2017-01-03 03:15:14", "<h3>MHR/MHW</h3>\r\nLas bocinas mini MHR y MHW funcionan con 12 y 24 voltios y son ideales para aplicaciones de sistemas contra incendios en hoteles, moteles o residencias, donde se desean dispositivos de notificación más pequeños. Las bocinas mini ofrecen ajustes de volumen alto y bajo y tonos temporales y no temporales. Las bocinas se pueden montar en cajas de conexión de bastidor simple para aplicaciones en las cuales la estética es relevante.", "Bocinas mini MHR/MHW", "Las bocinas mini MHR y MHW funcionan con 12 y 24 voltios y son ideales para aplicaciones de sistemas contra incendios en hoteles, moteles o residencias, donde se desean dispositivos de notificación más pequeños. Las bocinas mini ofrecen ajustes de volumen alto y bajo y tonos temporales y no temporales. Las bocinas se pueden montar en cajas de conexión de bastidor simple para aplicaciones en las cuales la estética es relevante.", "publish", "closed", "closed", "", "bocinas-mini-mhrmhw", "", "", "2017-01-02 21:15:14", "2017-01-03 03:15:14", "", "0", "http://csandi.xyz/?post_type=product&#038;p=596", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("597", "1", "2017-01-02 21:13:46", "2017-01-03 03:13:46", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "bocinas", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "bocinas", "", "", "2017-01-02 21:13:55", "2017-01-03 03:13:55", "", "596", "http://csandi.xyz/wp-content/uploads/2017/01/bocinas.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("598", "1", "2017-01-02 21:21:25", "2017-01-03 03:21:25", "<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<h4 class=\"d_sm_none d_xs_block\">SPWK/SPCWK</h4>\r\n<p class=\"d_sm_none d_xs_block\">La serie SpectrAlert Advance ofrece la línea más amplia de altavoces y altavoces con estrobos <strong>para exteriores</strong> de la industria. Desde cajas de conexión de plástico y metal para exteriores, carcasas de plástico blancas y rojas, hasta opciones de montaje en pared y techo, se cubren prácticamente todas las aplicaciones. Los altavoces y el altavoz con estrobos para exteriores SpectrAlert Advance ofrecen un funcionamiento confiable en todo el rango de temperaturas de -40°F a 151°F. Se pueden utilizar en aplicaciones secas o húmedas para interiores o exteriores.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\"></div>", "Altavoces/estrobos SPWK/SPCWK", "<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<p class=\"d_sm_none d_xs_block\">La serie SpectrAlert Advance ofrece la línea más amplia de altavoces y altavoces con estrobos para exteriores de la industria. Desde cajas de conexión de plástico y metal para exteriores, carcasas de plástico blancas y rojas, hasta opciones de montaje en pared y techo, se cubren prácticamente todas las aplicaciones. Los altavoces y el altavoz con estrobos para exteriores SpectrAlert Advance ofrecen un funcionamiento confiable en todo el rango de temperaturas de -40°F a 151°F. Se pueden utilizar en aplicaciones secas o húmedas para interiores o exteriores.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\">\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\"><a href=\"SPWK.html\"><button class=\"button_type_4 bg_scheme_color d_sm_inline_middle m_sm_bottom_0 r_corners tr_all_hover color_light mw_0 m_bottom_15\">Detalles</button></a></div>\r\n</div>", "publish", "closed", "closed", "", "altavocesestrobos-serie-spwkspcwk-exteriores", "", "", "2017-01-02 21:23:48", "2017-01-03 03:23:48", "", "0", "http://csandi.xyz/?post_type=product&#038;p=598", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("599", "1", "2017-01-02 21:18:17", "2017-01-03 03:18:17", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "Scpectralert", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "xd", "", "", "2017-01-02 21:30:48", "2017-01-03 03:30:48", "", "598", "http://csandi.xyz/wp-content/uploads/2017/01/xD.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("600", "1", "2017-01-02 21:31:15", "2017-01-03 03:31:15", "<h4 class=\"fw_medium\">Altavoces/estrobos serie SP (W) / SPC para interiores</h4>\r\nLa serie SpectrAlert Advance de altavoces, y de altavoz con estrobos está diseñada para reducir las fallas de la conexión a tierra. El diseño de enchufar permite que el instalador realice previamente el cableado de placas de montaje y recubra los cables antes de conectar los altavoces. La cubierta de plástico evita que se corten los cables ya que cubre los componentes expuestos del altavoz.\r\n\r\nEstos dispositivos son para interiores, para ver una opción apta para exterior, vea Altavoces/estrobos SPWK/SPCWK", "Altavoces/estrobos SP(W)/SPC", "La serie SpectrAlert Advance de altavoces y altavoz con estrobos está diseñada para reducir las fallas de la conexión a tierra. El diseño de enchufar permite que el instalador realice previamente el cableado de placas de montaje y recubra los cables antes de conectar los altavoces. La cubierta de plástico evita que se corten los cables ya que cubre los componentes expuestos del altavoz.", "publish", "closed", "closed", "", "altavocesestrobos-spwspc", "", "", "2017-01-02 21:31:15", "2017-01-03 03:31:15", "", "0", "http://csandi.xyz/?post_type=product&#038;p=600", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("601", "1", "2017-01-02 21:30:32", "2017-01-03 03:30:32", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "bocinas", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "bocinas-2", "", "", "2017-01-02 21:30:50", "2017-01-03 03:30:50", "", "600", "http://csandi.xyz/wp-content/uploads/2017/01/bocinas-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("603", "1", "2017-01-02 21:32:27", "2017-01-03 03:32:27", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "spectralert", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "spectralert", "", "", "2017-01-02 21:32:44", "2017-01-03 03:32:44", "", "602", "http://csandi.xyz/wp-content/uploads/2017/01/spectralert.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("604", "1", "2017-01-02 21:35:22", "2017-01-03 03:35:22", "<h4 class=\"fw_medium\">Dispositivos de salida seleccionable SpectrAlert Advance</h4>\r\nLas bocinas, los estrobos y las bocinas/estrobos de salida seleccionable SpectrAlert® Advance de System Sensor® tienen una gran cantidad de funciones que aseguran tiempos reducidos de instalación y mayores ganancias. La serie SpectrAlert Advance de aparatos de notificación está diseñada para simplificar las instalaciones, con funciones tales como: diseños de enchufar, mensajes instantáneos para asegurar la instalación correcta de dispositivos individuales y once configuraciones de candela seleccionables en campo para estrobos y bocinas/estrobos para paredes y techos.", "Dispositivos de salida seleccionable SpectrAlert Advance", "Las bocinas, los estrobos y las bocinas/estrobos de salida seleccionable SpectrAlert® Advance de System Sensor® tienen una gran cantidad de funciones que aseguran tiempos reducidos de instalación y mayores ganancias. La serie SpectrAlert Advance de aparatos de notificación está diseñada para simplificar las instalaciones, con funciones tales como: diseños de enchufar, mensajes instantáneos para asegurar la instalación correcta de dispositivos individuales y once configuraciones de candela seleccionables en campo para estrobos y bocinas/estrobos para paredes y techos.", "publish", "closed", "closed", "", "dispositivos-salida-seleccionable-spectralert-advance", "", "", "2017-01-02 21:35:22", "2017-01-03 03:35:22", "", "0", "http://csandi.xyz/?post_type=product&#038;p=604", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("605", "1", "2017-01-02 21:43:27", "2017-01-03 03:43:27", "<h3>MCP900</h3>\r\nEl pulsador MCP900 está diseñado para su uso como componente de un sistema de control de alarma contra incendios que utilice los paneles de control de alarma contra incendios direccionables MS-9050UD(E) o MS-9200UDLS(E) de Fire-Lite. Es un pulsador manual especializado direccionable que se instala en los dos circuitos de comunicación de cableado que señalizan la alarma al panel de control y monitoreo, e indica la activación de la luz LED local", "Pulsador Manual Direccionable", "El pulsador MCP900 está diseñado para su uso como componente de un sistema de control de alarma contra incendios que utilice los paneles de control de alarma contra incendios direccionables MS-9050UD(E) o MS-9200UDLS(E) de Fire-Lite. Es un pulsador manual especializado direccionable que se instala en los dos circuitos de comunicación de cableado que señalizan la alarma al panel de control y monitoreo, e indica la activación de la luz LED local", "publish", "closed", "closed", "", "mcp900", "", "", "2017-01-02 21:43:27", "2017-01-03 03:43:27", "", "0", "http://csandi.xyz/?post_type=product&#038;p=605", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("606", "1", "2017-01-02 21:41:49", "2017-01-03 03:41:49", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "mcp", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "mcp", "", "", "2017-01-02 21:42:07", "2017-01-03 03:42:07", "", "605", "http://csandi.xyz/wp-content/uploads/2017/01/mcp.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("608", "1", "2017-01-02 22:40:47", "2017-01-03 04:40:47", "<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<h3 class=\"d_sm_none d_xs_block\">I900</h3>\r\n<p class=\"d_sm_none d_xs_block\">Los módulos aislantes de fallas I900, utilizados con los paneles MS-9050UD(E) y MS-9200UDLS(E), permiten que parte del circuito de comunicaciones continúe en funcionamiento después de un cortocircuito. Un indicador de luz LED parpadea en condición normal y se activa cuando se presenta una condición de cortocircuito. El módulo restablecerá de forma automática el circuito completo de comunicaciones a la condición normal cuando se haya eliminado el cortocircuito.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\">\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\"></div>\r\n</div>", "Aislador de lazo I900", "<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<p class=\"d_sm_none d_xs_block\">Los módulos aislantes de fallas I900, utilizados con los paneles MS-9050UD(E) y MS-9200UDLS(E), permiten que parte del circuito de comunicaciones continúe en funcionamiento después de un cortocircuito. Un indicador de luz LED parpadea en condición normal y se activa cuando se presenta una condición de cortocircuito. El módulo restablecerá de forma automática el circuito completo de comunicaciones a la condición normal cuando se haya eliminado el cortocircuito.</p>\r\n\r\n</div>\r\n<div class=\"clearfix\">\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\"><a href=\"i900.html\"><button class=\"button_type_4 bg_scheme_color d_sm_inline_middle m_sm_bottom_0 r_corners tr_all_hover color_light mw_0 m_bottom_15\">Detalles</button></a></div>\r\n</div>", "publish", "closed", "closed", "", "i900-2", "", "", "2017-01-02 22:40:47", "2017-01-03 04:40:47", "", "0", "http://csandi.xyz/?post_type=product&#038;p=608", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("609", "1", "2017-01-02 22:39:12", "2017-01-03 04:39:12", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "I900", " | Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "i900-2", "", "", "2017-01-02 22:39:26", "2017-01-03 04:39:26", "", "608", "http://csandi.xyz/wp-content/uploads/2017/01/I900.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("610", "1", "2017-01-02 22:48:48", "2017-01-03 04:48:48", "<h3 class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">MMF900</h3>\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">El módulo de monitoreo MMF-900 está diseñado para utilizarse en sistemas inteligentes de dos hilos. Proporciona un circuito de iniciación con tolerancia a fallas de dos o de cuatro cables para dispositivos de seguridad, supervisión y alarma contra incendios de contacto normalmente abierto. El panel controla el estado de la luz LED en el módulo. Los módulos MMF-900 están disponibles exclusivamente para los paneles de control de alarma contra incendios direccionables MS-9050UD(E) y MS-9200UDLS(E).\r\n<p class=\"d_sm_none d_xs_block\"></p>\r\n\r\n</div>\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">Módulo transmisor inalámbrico para estaciones de incendio Clase A y B</div>\r\n<div class=\"f_left p_list_description w_sm_full f_sm_none m_xs_bottom_10\">\r\n<ul>\r\n 	<li>Compatible con el protocolo CLIP de Fire-Lite.</li>\r\n 	<li>Se monta directamente en cajas eléctricas cuadradas de 4 pulgadas.</li>\r\n</ul>\r\n</div>\r\n<div class=\"clearfix\"></div>", "Módulo de monitoreo MMF 900", "Módulo transmisor inalámbrico para estaciones de incendio Clase A y B\r\n\r\nLos módulos MMF-900 están disponibles exclusivamente para los paneles de control de alarma contra incendios direccionables MS-9050UD(E) y MS-9200UDLS(E).", "publish", "closed", "closed", "", "mmf-900", "", "", "2017-01-02 22:48:48", "2017-01-03 04:48:48", "", "0", "http://csandi.xyz/?post_type=product&#038;p=610", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("611", "1", "2017-01-02 22:47:26", "2017-01-03 04:47:26", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "mmf", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "mmf", "", "", "2017-01-02 22:48:22", "2017-01-03 04:48:22", "", "610", "http://csandi.xyz/wp-content/uploads/2017/01/mmf.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("612", "1", "2017-01-02 23:04:51", "2017-01-03 05:04:51", "<h3>W-MMF</h3>\r\nEl módulo de monitoreo inalámbrico W-MMF está diseñado para utilizarse en sistemas inteligentes de dos hilos. Proporciona un circuito de iniciación con tolerancia a fallas de dos o de cuatro cables para dispositivos de seguridad, supervisión y alarma contra incendios de contacto normalmente abierto. El panel controla el estado de la luz LED en el módulo\r\n\r\nPara una solución cableada, ver Módulo de monitoreo MMF 900", "Módulo de monitoreo W-MMF", "El módulo de monitoreo inalámbrico W-MMF está diseñado para utilizarse en sistemas inteligentes de dos hilos. Proporciona un circuito de iniciación con tolerancia a fallas de dos o de cuatro cables para dispositivos de seguridad, supervisión y alarma contra incendios de contacto normalmente abierto. El panel controla el estado de la luz LED en el módulo", "publish", "closed", "closed", "", "modulo-de-monitoreo-w-mmf", "", "", "2017-01-02 23:04:51", "2017-01-03 05:04:51", "", "0", "http://csandi.xyz/?post_type=product&#038;p=612", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("613", "1", "2017-01-02 23:01:27", "2017-01-03 05:01:27", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "wmmf", "| Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "wmmf", "", "", "2017-01-02 23:04:39", "2017-01-03 05:04:39", "", "612", "http://csandi.xyz/wp-content/uploads/2017/01/wmmf.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("635", "1", "2017-01-04 22:25:43", "2017-01-05 04:25:43", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "RX1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rx1_02__84068-1365683125-1280-1280", "", "", "2017-01-04 22:26:05", "2017-01-05 04:26:05", "", "634", "http://csandi.xyz/wp-content/uploads/2017/01/RX1_02__84068.1365683125.1280.1280.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("622", "1", "2017-01-04 16:32:49", "2017-01-04 22:32:49", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "1", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "1", "", "", "2017-01-04 16:33:03", "2017-01-04 22:33:03", "", "0", "http://csandi.xyz/wp-content/uploads/2017/01/1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("636", "1", "2017-01-04 22:26:18", "2017-01-05 04:26:18", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "paradox_rx1_telepitoi_utmutato.pdf_1", "", "inherit", "closed", "closed", "", "paradox_rx1_telepitoi_utmutato-pdf_1", "", "", "2017-01-04 22:26:36", "2017-01-05 04:26:36", "", "634", "http://csandi.xyz/wp-content/uploads/2017/01/paradox_rx1_telepitoi_utmutato.pdf_1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("634", "1", "2017-01-04 22:29:20", "2017-01-05 04:29:20", "<h3>RX1</h3>\r\nMódulo receptor para paneles <strong>Spectra</strong> incapaces de transmitir datos inalámbricamente por si solas.\r\n<ul>\r\n 	<li>Compatibilidad con serie SP</li>\r\n 	<li>32 Zonas inalámbricas</li>\r\n 	<li>32 controles remotos</li>\r\n 	<li>2 PGM</li>\r\n 	<li>Medidor de señal, energía y estado.</li>\r\n</ul>", "Módulo receptor RX1", "Módulo receptor para paneles <strong>Spectra</strong> incapaces de transmitir datos inalámbricamente por si solas.", "publish", "closed", "closed", "", "modulo-rx1", "", "", "2017-01-04 22:31:40", "2017-01-05 04:31:40", "", "0", "http://csandi.xyz/?post_type=product&#038;p=634", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("629", "1", "2017-01-04 18:07:40", "2017-01-05 00:07:40", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "3", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "3", "", "", "2017-01-04 18:07:50", "2017-01-05 00:07:50", "", "0", "http://csandi.xyz/wp-content/uploads/2017/01/3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("630", "1", "2017-01-04 18:27:46", "2017-01-05 00:27:46", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "4", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "4", "", "", "2017-01-04 18:27:52", "2017-01-05 00:27:52", "", "0", "http://csandi.xyz/wp-content/uploads/2017/01/4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("640", "1", "2017-01-07 13:15:39", "2017-01-07 19:15:39", "<h4 class=\"m_bottom_10\">REM 25</h4>\r\n<p class=\"m_bottom_10\">Control remoto con diseño ergonómico y delgado</p>\r\n<p class=\"m_bottom_15\">Resistencia al agua y botones programables para funciones extras.</p>\r\n\r\n<ul>\r\n 	<li class=\"m_bottom_15\">6 Funciones (armar, desaarmar, mostrar estado, y controlar varias PGM</li>\r\n 	<li class=\"m_bottom_15\">Desarmado encriptado</li>\r\n 	<li class=\"m_bottom_15\">Muestra estado de sistema via LED</li>\r\n 	<li class=\"m_bottom_15\">Disponible en frecuencias 433Mhz o bien 868mhz</li>\r\n 	<li class=\"m_bottom_15\">Resistente al agua</li>\r\n 	<li class=\"m_bottom_15\">Bateria de larga duración, facil de reemplazar</li>\r\n 	<li class=\"m_bottom_15\">Disponible en colores negro y blanco</li>\r\n</ul>", "Control remoto REM25", "<p class=\"m_bottom_10\">Control remoto con diseño ergonómico y delgado</p>\r\n<p class=\"m_bottom_15\">Resistencia al agua y botones programables para funciones extras.</p>", "publish", "closed", "closed", "", "rem25", "", "", "2017-01-07 13:26:27", "2017-01-07 19:26:27", "", "0", "http://csandi.xyz/?post_type=product&#038;p=640", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("641", "1", "2017-01-07 13:13:12", "2017-01-07 19:13:12", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_Black_Front_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_black_front_big", "", "", "2017-01-07 13:25:39", "2017-01-07 19:25:39", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_Black_Front_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("642", "1", "2017-01-07 13:13:57", "2017-01-07 19:13:57", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_BatteryChange_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_batterychange_big", "", "", "2017-01-07 13:14:52", "2017-01-07 19:14:52", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_BatteryChange_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("643", "1", "2017-01-07 13:14:12", "2017-01-07 19:14:12", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_Black_45Degrees_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_black_45degrees_big", "", "", "2017-01-07 13:25:43", "2017-01-07 19:25:43", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_Black_45Degrees_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("644", "1", "2017-01-07 13:14:36", "2017-01-07 19:14:36", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_Black_Back_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_black_back_big", "", "", "2017-01-07 13:25:44", "2017-01-07 19:25:44", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_Black_Back_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("645", "1", "2017-01-07 13:14:50", "2017-01-07 19:14:50", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_White_45Degrees_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_white_45degrees_big", "", "", "2017-01-07 13:15:08", "2017-01-07 19:15:08", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_White_45Degrees_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("646", "1", "2017-01-07 13:15:11", "2017-01-07 19:15:11", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "REM25_White_Front_Big", "Seguridad Electrónica Sandí Pérez Zeledón, Costa Rica. Alarmas Antirrobo, Detección de incendio y CCTV. Zona Sur CR", "inherit", "closed", "closed", "", "rem25_white_front_big", "", "", "2017-01-07 13:25:46", "2017-01-07 19:25:46", "", "640", "http://csandi.xyz/wp-content/uploads/2017/01/REM25_White_Front_Big.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("657", "1", "2017-01-08 16:07:30", "2017-01-08 22:07:30", "SANDITEC COSTA RICA", "ssanditec2 copia", "SANDITEC COSTA RICA", "inherit", "closed", "closed", "", "ssanditec2-copia", "", "", "2017-01-08 16:10:09", "2017-01-08 22:10:09", "", "0", "http://csandi.xyz/wp-content/uploads/2017/01/ssanditec2-copia.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("662", "1", "2017-01-13 10:30:29", "0000-00-00 00:00:00", "", "Borrador automático", "", "auto-draft", "closed", "open", "", "", "", "", "2017-01-13 10:30:29", "0000-00-00 00:00:00", "", "0", "http://csandi.xyz/?p=662", "0", "post", "", "0");

/* INSERT TABLE DATA: wp_revslider_css */
INSERT INTO `wp_revslider_css` VALUES("1", ".tp-caption.medium_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("2", ".tp-caption.small_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("3", ".tp-caption.medium_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("4", ".tp-caption.large_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("5", ".tp-caption.very_large_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("6", ".tp-caption.very_big_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("7", ".tp-caption.very_big_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("8", ".tp-caption.modern_medium_fat", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("10", ".tp-caption.modern_medium_light", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("11", ".tp-caption.modern_big_bluebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("12", ".tp-caption.modern_big_redbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("14", ".tp-caption.boxshadow", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "[]", "{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("15", ".tp-caption.black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("16", ".tp-caption.noshadow", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "[]", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("17", ".tp-caption.thinheadline_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("18", ".tp-caption.thintext_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("19", ".tp-caption.largeblackbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("20", ".tp-caption.largepinkbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("21", ".tp-caption.largewhitebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("22", ".tp-caption.largegreenbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("23", ".tp-caption.excerpt", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("24", ".tp-caption.large_bold_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("25", ".tp-caption.medium_thin_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("26", ".tp-caption.small_thin_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("27", ".tp-caption.lightgrey_divider", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("28", ".tp-caption.large_bold_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("29", ".tp-caption.medium_bg_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("30", ".tp-caption.medium_bold_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("31", ".tp-caption.medium_light_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("32", ".tp-caption.medium_bg_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("33", ".tp-caption.medium_bold_orange", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("34", ".tp-caption.medium_bg_orange", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("35", ".tp-caption.grassfloor", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("36", ".tp-caption.large_bold_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("37", ".tp-caption.medium_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("39", ".tp-caption.mediumlarge_light_white_center", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("40", ".tp-caption.medium_bg_asbestos", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("41", ".tp-caption.medium_light_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("42", ".tp-caption.large_bold_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("43", ".tp-caption.mediumlarge_light_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("44", ".tp-caption.small_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("45", ".tp-caption.roundedimage", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("46", ".tp-caption.large_bg_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}", "{\"idle\":[],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("47", ".tp-caption.mediumwhitebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("48", ".tp-caption.MarkerDisplay", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("49", ".tp-caption.Restaurant-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("50", ".tp-caption.Restaurant-Cursive", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("51", ".tp-caption.Restaurant-ScrollDownText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("52", ".tp-caption.Restaurant-Description", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("53", ".tp-caption.Restaurant-Price", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("54", ".tp-caption.Restaurant-Menuitem", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("55", ".tp-caption.Furniture-LogoText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("56", ".tp-caption.Furniture-Plus", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("57", ".tp-caption.Furniture-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("58", ".tp-caption.Furniture-Subtitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("59", ".tp-caption.Gym-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("60", ".tp-caption.Gym-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("61", ".tp-caption.Gym-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("62", ".tp-caption.Fashion-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("63", ".tp-caption.Fashion-BigDisplay", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("64", ".tp-caption.Fashion-TextBlock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("65", ".tp-caption.Sports-Display", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("66", ".tp-caption.Sports-DisplayFat", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":[\"\"],\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("67", ".tp-caption.Sports-Subline", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("68", ".tp-caption.Instagram-Caption", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("69", ".tp-caption.News-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("70", ".tp-caption.News-Subtitle", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("71", ".tp-caption.Photography-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("72", ".tp-caption.Photography-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("73", ".tp-caption.Photography-ImageHover", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("74", ".tp-caption.Photography-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("75", ".tp-caption.Photography-Textblock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("76", ".tp-caption.Photography-Subline-2", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("77", ".tp-caption.Photography-ImageHover2", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("78", ".tp-caption.WebProduct-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("79", ".tp-caption.WebProduct-SubTitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("80", ".tp-caption.WebProduct-Content", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("81", ".tp-caption.WebProduct-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("82", ".tp-caption.WebProduct-Title-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("83", ".tp-caption.WebProduct-SubTitle-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("84", ".tp-caption.WebProduct-Content-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("85", ".tp-caption.FatRounded", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("86", ".tp-caption.NotGeneric-Title", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"[object Object]\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("87", ".tp-caption.NotGeneric-SubTitle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("88", ".tp-caption.NotGeneric-CallToAction", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("89", ".tp-caption.NotGeneric-Icon", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("90", ".tp-caption.NotGeneric-Menuitem", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("91", ".tp-caption.MarkerStyle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("92", ".tp-caption.Gym-Menuitem", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("93", ".tp-caption.Newspaper-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("94", ".tp-caption.Newspaper-Subtitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("95", ".tp-caption.Newspaper-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("96", ".tp-caption.Newspaper-Title-Centered", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("97", ".tp-caption.Hero-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("98", ".tp-caption.Video-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("99", ".tp-caption.Video-SubTitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("100", ".tp-caption.NotGeneric-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("101", ".tp-caption.NotGeneric-BigButton", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("102", ".tp-caption.WebProduct-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("103", ".tp-caption.Restaurant-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("104", ".tp-caption.Gym-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("105", ".tp-caption.Gym-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("106", ".tp-caption.Sports-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("107", ".tp-caption.Sports-Button-Red", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("108", ".tp-caption.Photography-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}");
INSERT INTO `wp_revslider_css` VALUES("109", ".tp-caption.Newspaper-Button-2", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}", "{\"idle\":\"\",\"hover\":\"\"}");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("10", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("99", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("492", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("101", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("102", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("103", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("492", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("264", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("264", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("264", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("265", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("265", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("265", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("266", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("266", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("266", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("299", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("299", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("299", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("305", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("305", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("305", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("307", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("307", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("312", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("312", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("312", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("320", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("320", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("320", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("325", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("328", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("328", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("328", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("330", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("492", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("498", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("498", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("498", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("503", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("503", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("503", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("534", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("534", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("534", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("535", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("535", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("535", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("536", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("536", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("536", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("537", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("537", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("537", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("538", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("538", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("538", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("539", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("539", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("539", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("540", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("540", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("540", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("541", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("541", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("541", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("542", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("542", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("542", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("544", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("544", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("544", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("545", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("545", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("545", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("546", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("546", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("546", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("547", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("547", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("547", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("548", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("548", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("548", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("549", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("549", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("549", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("550", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("550", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("550", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("551", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("551", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("551", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("552", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("552", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("552", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("554", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("554", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("554", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("555", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("555", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("555", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("556", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("556", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("556", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("557", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("557", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("557", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("558", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("558", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("558", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("558", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("569", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("569", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("569", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("575", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("575", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("575", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("579", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("579", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("579", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("581", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("581", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("581", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("584", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("584", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("584", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("591", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("591", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("591", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("596", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("596", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("596", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("598", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("598", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("598", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("600", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("600", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("604", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("604", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("604", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("605", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("605", "21", "0");
INSERT INTO `wp_term_relationships` VALUES("605", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("607", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("607", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("608", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("608", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("608", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("610", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("610", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("610", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("612", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("612", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("612", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("607", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("634", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("634", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("634", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("640", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("640", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("640", "2", "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", "product_type", "", "0", "52");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "product_tag", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "product_tag", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "product_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("10", "10", "product_tag", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("11", "11", "product_cat", "Los <strong>sistemas de alarma</strong> van desde los paquetes básicos que suplen las necesidades de un lugar pequeño, hasta equipos de gran tamaño y poder para cubrir su negocio, esos a la vez se dividen en equipos con cableado y equipos completamente inalámbricos, desde teclados sencillos hasta teclados completamente táctiles, dandole un toque lujoso al recinto.\r\nSin contar con los múltiples accesorios que pueden conectarse a su sistema de alarma, cumpliendo muchas más funciones de las que se imagina, por ejemplo:\r\n\r\nAcceso total a su alarma mediante su teléfono móvil, podrá darle acceso a personas sin tener que ir hasta el lugar.\r\nPodrá encender o apagar accesorios tales como luces, preparando su llegada, o bien para ocultar su ausencia.\r\nArmar y desarmar por medio de control remoto.", "0", "27");
INSERT INTO `wp_term_taxonomy` VALUES("12", "12", "product_cat", "Los sistemas de detección de incendio son un gran aliado en caso de una emergencia en la que se presente fuego, brindando alertas visuales y sonoras al detectarse humo, dando así la oportunidad de aplacar el fuego o bien, para evacuar inmediatamente.\nEstos sistemas cuentan con una variedad de periféricos que van conectados directamente a un panel central, el cual se encarga de hacer funcionar correctamente los dispositivos, esto es una inversión que le puede salvar la vida.", "0", "17");
INSERT INTO `wp_term_taxonomy` VALUES("13", "13", "product_cat", "Los Circuitos Cerrados de Televisión (CCTV) son hoy en día mucho más que un conjunto de cámaras y un monitor para visualizarlas.Tenga bajo control los interiores y exteriores de su negocio, casa, Industria, Comercio, Entidades Gubernamentales, Banca,etc. Dentro del Sistema de Seguridad Electronica Digital se desarrolla tambien el sistema de Circuito Cerrado de Televisión es hoy en día una solución integral para brindar seguridad visual y digitalmente las instalaciones, Desde la instalación de una sola cámara hasta los más exigentes Sistemas de Circuito Cerrado de Televisión, basados en grabación digital, con cámaras de vigilancia estratégicamente ubicadas, con diferentes sensores electrónicos de entrada y alarmas de salida que hacen el sistema escalable, flexible y acoplable.", "0", "9");
INSERT INTO `wp_term_taxonomy` VALUES("14", "14", "nav_menu", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("15", "15", "product_tag", "", "0", "12");
INSERT INTO `wp_term_taxonomy` VALUES("16", "16", "product_tag", "", "0", "9");
INSERT INTO `wp_term_taxonomy` VALUES("17", "17", "product_tag", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("18", "18", "product_tag", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("19", "19", "product_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("20", "20", "product_tag", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("21", "21", "product_tag", "", "0", "1");

/* INSERT TABLE DATA: wp_termmeta */
INSERT INTO `wp_termmeta` VALUES("1", "7", "product_count_product_tag", "4");
INSERT INTO `wp_termmeta` VALUES("2", "8", "product_count_product_tag", "3");
INSERT INTO `wp_termmeta` VALUES("3", "9", "product_count_product_tag", "1");
INSERT INTO `wp_termmeta` VALUES("4", "10", "product_count_product_tag", "3");
INSERT INTO `wp_termmeta` VALUES("5", "11", "order", "0");
INSERT INTO `wp_termmeta` VALUES("6", "11", "order", "0");
INSERT INTO `wp_termmeta` VALUES("7", "11", "display_type", "");
INSERT INTO `wp_termmeta` VALUES("8", "11", "thumbnail_id", "0");
INSERT INTO `wp_termmeta` VALUES("9", "11", "product_count_product_cat", "27");
INSERT INTO `wp_termmeta` VALUES("10", "12", "order", "0");
INSERT INTO `wp_termmeta` VALUES("11", "12", "order", "0");
INSERT INTO `wp_termmeta` VALUES("12", "12", "product_count_product_cat", "17");
INSERT INTO `wp_termmeta` VALUES("13", "12", "display_type", "");
INSERT INTO `wp_termmeta` VALUES("14", "12", "thumbnail_id", "0");
INSERT INTO `wp_termmeta` VALUES("15", "13", "order", "0");
INSERT INTO `wp_termmeta` VALUES("16", "13", "order", "0");
INSERT INTO `wp_termmeta` VALUES("17", "13", "product_count_product_cat", "9");
INSERT INTO `wp_termmeta` VALUES("18", "13", "display_type", "");
INSERT INTO `wp_termmeta` VALUES("19", "13", "thumbnail_id", "0");
INSERT INTO `wp_termmeta` VALUES("20", "15", "product_count_product_tag", "12");
INSERT INTO `wp_termmeta` VALUES("21", "16", "product_count_product_tag", "9");
INSERT INTO `wp_termmeta` VALUES("22", "17", "product_count_product_tag", "5");
INSERT INTO `wp_termmeta` VALUES("23", "18", "product_count_product_tag", "6");
INSERT INTO `wp_termmeta` VALUES("24", "19", "product_count_product_tag", "1");
INSERT INTO `wp_termmeta` VALUES("25", "20", "product_count_product_tag", "5");
INSERT INTO `wp_termmeta` VALUES("26", "21", "product_count_product_tag", "1");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Sin categoría", "sin-categoria", "0");
INSERT INTO `wp_terms` VALUES("2", "simple", "simple", "0");
INSERT INTO `wp_terms` VALUES("3", "grouped", "grouped", "0");
INSERT INTO `wp_terms` VALUES("4", "variable", "variable", "0");
INSERT INTO `wp_terms` VALUES("5", "external", "external", "0");
INSERT INTO `wp_terms` VALUES("6", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("7", "Cámara", "camara", "0");
INSERT INTO `wp_terms` VALUES("8", "DVR", "dvr", "0");
INSERT INTO `wp_terms` VALUES("9", "estación manual", "estacion-manual", "0");
INSERT INTO `wp_terms` VALUES("10", "panel", "panel", "0");
INSERT INTO `wp_terms` VALUES("11", "Alarma Antirrobo", "alarma", "0");
INSERT INTO `wp_terms` VALUES("12", "Detección de Incendio", "deteccion-de-incendio", "0");
INSERT INTO `wp_terms` VALUES("13", "Videovigilancia", "videovigilancia", "0");
INSERT INTO `wp_terms` VALUES("14", "menu", "menu", "0");
INSERT INTO `wp_terms` VALUES("15", "accesorio", "accesorio", "0");
INSERT INTO `wp_terms` VALUES("16", "sensor", "sensor", "0");
INSERT INTO `wp_terms` VALUES("17", "teclado", "teclado", "0");
INSERT INTO `wp_terms` VALUES("18", "control", "control", "0");
INSERT INTO `wp_terms` VALUES("19", "disco", "disco", "0");
INSERT INTO `wp_terms` VALUES("20", "detector", "detector", "0");
INSERT INTO `wp_terms` VALUES("21", "accesiorio", "accesiorio", "0");

/* INSERT TABLE DATA: wp_tpcmem_checkpoints */
INSERT INTO `wp_tpcmem_checkpoints` VALUES("1", "sanitize_comment_cookies", "Sanitize comment cookies");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("2", "setup_theme", "Setup theme");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("3", "init", "WordPress initialization");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("4", "wp_head", "Display front-end header");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("5", "publish_future_post", "Publish future post");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("6", "do_feed_rdf", "RDF feed");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("7", "do_feed_rss", "RSS feed");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("8", "do_feed_rss2", "RSS2 feed");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("9", "do_feed_atom", "Atom feed");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("10", "do_pings", "Pings");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("11", "admin_print_scripts", "Print admin scripts");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("12", "admin_print_footer_scripts", "Print admin footer scripts");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("13", "admin_print_styles", "Print admin styles");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("14", "pre_post_update", "Pre-post update");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("15", "publish_post", "Publish post");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("16", "future_post", "Future post");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("17", "future_page", "Future page");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("18", "save_post", "Save post");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("19", "template_redirect", "Template redirect");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("20", "edit_post", "Edit post");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("21", "edit_form_advanced", "Edit form advanced");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("22", "shutdown", "Shutdown");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("23", "loop_start", "Start of WordPress loop");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("24", "loop_end", "End of WordPress loop");
INSERT INTO `wp_tpcmem_checkpoints` VALUES("25", "wp", "Executed at startup by WP_Query::main()");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "admin");
INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", "Jostrike");
INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", "Sandí");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("10", "1", "locale", "");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("12", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("13", "1", "dismissed_wp_pointers", "vc_pointers_backend_editor");
INSERT INTO `wp_usermeta` VALUES("14", "1", "default_password_nag", "");
INSERT INTO `wp_usermeta` VALUES("15", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("16", "1", "session_tokens", "a:34:{s:64:\"e00d0e80d03ede69e83ad35421a2d003b0cad5834d825e10beb0f301e516d3f9\";a:4:{s:10:\"expiration\";i:1484515481;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483305881;}s:64:\"121da8769b64dbc09a6783a1cda9457704bca60ed1e2e498beb3ea80e21f3f4b\";a:4:{s:10:\"expiration\";i:1484589288;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483379688;}s:64:\"7c773ed4585b5f0b4543b98ca30741fbab86ec309b6d55105a5d57aa4b95495d\";a:4:{s:10:\"expiration\";i:1484609340;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483399740;}s:64:\"534dfc25f9890292ca08fdde15ca1079911e89a6146866b8327dd635cded8d7f\";a:4:{s:10:\"expiration\";i:1484621705;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483412105;}s:64:\"a7e86a693e970defcfc9cf638f1e00be723de70e60204d51a6370465074202d7\";a:4:{s:10:\"expiration\";i:1484622243;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483412643;}s:64:\"2b6cfb2c5f2677f732df5ffde2f9b574e3c9e8d29199b37ec9418e39af714426\";a:4:{s:10:\"expiration\";i:1484623332;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483413732;}s:64:\"86b1e8ee139f8bff44288f028e530462ae150abd5e652ae9ed9bc8d9a279f67d\";a:4:{s:10:\"expiration\";i:1484627592;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483417992;}s:64:\"7fac2d3d1529f2f20973b4d903f5d619accd44a8c9c65919e895e567adf8a986\";a:4:{s:10:\"expiration\";i:1484629544;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483419944;}s:64:\"53c51b6a166b16f007a1d2dd6c0bc6ad232a4646ed4c86b826b5cdebf7093402\";a:4:{s:10:\"expiration\";i:1484630459;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483420859;}s:64:\"95525f8a9ed0644ea96e28d90c123bbe998630ad4362ef6036133eda9a68d878\";a:4:{s:10:\"expiration\";i:1484672385;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483462785;}s:64:\"b18b29f52b1604c49b1310acf5056bad29d68c9d14dd1203bdd068003d1d9569\";a:4:{s:10:\"expiration\";i:1484674531;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483464931;}s:64:\"6c7ef5c18c265a863fb1a8d51910c2bbd08f06b3663e018df5df5faf295b3669\";a:4:{s:10:\"expiration\";i:1484675915;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:140:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14C92 Safari/602.1\";s:5:\"login\";i:1483466315;}s:64:\"50df0ab5b22f74b7817fecbe168f1b66456a209dd7e5d3e30717ae182c321355\";a:4:{s:10:\"expiration\";i:1484675915;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:140:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14C92 Safari/602.1\";s:5:\"login\";i:1483466315;}s:64:\"0866368019faf033d65ee21df687ad54246c87000b9210d611834b3204ade557\";a:4:{s:10:\"expiration\";i:1484675916;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:140:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14C92 Safari/602.1\";s:5:\"login\";i:1483466316;}s:64:\"9a3f9a1279779fb2bd668f767aa45221a30c437ae8efc8c5e59053d1ceb2955e\";a:4:{s:10:\"expiration\";i:1484682102;s:2:\"ip\";s:15:\"201.191.198.104\";s:2:\"ua\";s:134:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1\";s:5:\"login\";i:1483472502;}s:64:\"2b42761cb40abdc3befd5b1fe4f9d61996d8368069eef891032b71f22684cf35\";a:4:{s:10:\"expiration\";i:1484709664;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483500064;}s:64:\"ee38a51cb39698f18f91c9882706523901743fb70924f477bd5ac1574612a7b2\";a:4:{s:10:\"expiration\";i:1484709859;s:2:\"ip\";s:14:\"201.194.248.88\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483500259;}s:64:\"bda0ea0afbc53b33e6e9c4c77fc71a985e34e6a5f3cf68dc46cd27b0938db615\";a:4:{s:10:\"expiration\";i:1484779363;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483569763;}s:64:\"b986e7800cf91557eabaf6b3bd4dac006bd32628b02475fc18738ecd620977ed\";a:4:{s:10:\"expiration\";i:1484781637;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483572037;}s:64:\"0eb2b150febfb10c0bc123565720937c5802a7e657565e7fe5b16c0646645ad9\";a:4:{s:10:\"expiration\";i:1484781922;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483572322;}s:64:\"98fcf3595d5664e4edacacd8825ee16e0348abd5512d66ecba1ea62880b46dcd\";a:4:{s:10:\"expiration\";i:1484798365;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1483588765;}s:64:\"a5b825a758e435f4dd5e6b723549f32103a8b3900170ee8c5cc12846d5b615bb\";a:4:{s:10:\"expiration\";i:1485108402;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483898802;}s:64:\"bf0032dd5180590780735087c2bf2c1c417fac5e3ae08fe6515b99cfead0ddfd\";a:4:{s:10:\"expiration\";i:1485191444;s:2:\"ip\";s:15:\"201.194.236.242\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36\";s:5:\"login\";i:1483981844;}s:64:\"117722f00d7ee4dfda0e9cfcca708084d5a07731d978b77981373f41b37184b6\";a:4:{s:10:\"expiration\";i:1484497461;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324661;}s:64:\"ceaa17a9e05beff0219d8bb34368358cfbfd83716dab97c9e313220479fd325e\";a:4:{s:10:\"expiration\";i:1484497462;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324662;}s:64:\"49f4f5bbbc804446435616d1d20d7934d1f6a5851f91842f56328ec8808e077a\";a:4:{s:10:\"expiration\";i:1484497464;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324664;}s:64:\"99a89572f9c88300d7a00a5f2bfd51477dc577f1d2fa7792ccdf789f95a50bc5\";a:4:{s:10:\"expiration\";i:1484497465;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324665;}s:64:\"e9414ece90e9a88ab3b5873be995f7bf0d0ba8c5b231a518eaebbbc028c013e0\";a:4:{s:10:\"expiration\";i:1484497465;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324665;}s:64:\"53be2bb43f7e3440cc8a3b8b9d23486dda35211e265bfb91f5ee87efa68899a4\";a:4:{s:10:\"expiration\";i:1484497469;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324669;}s:64:\"1118bf57fd4fed8283e1de9e7988247d03264dd17ef7e53a3aca6fbe4a9fd6a9\";a:4:{s:10:\"expiration\";i:1484497469;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324669;}s:64:\"548f3cabc2abe123045bbd251d4d8a64d5e9e9e2302cfc46660d1244914ef961\";a:4:{s:10:\"expiration\";i:1484497469;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324669;}s:64:\"49f52a248f3ae06fac9e564b5d1d405402d1d5d8313344461cad882a3e7e7419\";a:4:{s:10:\"expiration\";i:1484497469;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324669;}s:64:\"c25e7c9628c6eb915bf3da28d7df9970031ac0515d221761cfe06a2986559eab\";a:4:{s:10:\"expiration\";i:1484497470;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324670;}s:64:\"1516ff5d7c631f52487c64b8d102ae0663246d1a15513c3f3aa8c3f5278b995a\";a:4:{s:10:\"expiration\";i:1484497474;s:2:\"ip\";s:14:\"201.200.147.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1484324674;}}");
INSERT INTO `wp_usermeta` VALUES("66", "1", "last_login_time", "2017-01-03 11:58:36");
INSERT INTO `wp_usermeta` VALUES("65", "1", "wpseo-remove-upsell-notice", "1");
INSERT INTO `wp_usermeta` VALUES("17", "1", "wp_user-settings", "libraryContent=browse&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=640px&edit_element_vcUIPanelTop=74px&hidetb=1&editor=tinymce&urlbutton=file");
INSERT INTO `wp_usermeta` VALUES("18", "1", "wp_user-settings-time", "1483911832");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_dashboard_quick_press_last_post_id", "662");
INSERT INTO `wp_usermeta` VALUES("20", "1", "manageedit-shop_ordercolumnshidden", "a:1:{i:0;s:15:\"billing_address\";}");
INSERT INTO `wp_usermeta` VALUES("55", "1", "manageedit-productcolumnshidden", "a:4:{i:0;s:3:\"sku\";i:1;s:11:\"is_in_stock\";i:2;s:5:\"price\";i:3;s:12:\"product_type\";}");
INSERT INTO `wp_usermeta` VALUES("56", "1", "edit_product_per_page", "30");
INSERT INTO `wp_usermeta` VALUES("57", "1", "closedpostboxes_product", "a:2:{i:0;s:24:\"woocommerce-product-data\";i:1;s:15:\"layout-settings\";}");
INSERT INTO `wp_usermeta` VALUES("58", "1", "metaboxhidden_product", "a:3:{i:0;s:24:\"woocommerce-product-data\";i:1;s:10:\"postcustom\";i:2;s:15:\"layout-settings\";}");
INSERT INTO `wp_usermeta` VALUES("59", "1", "closedpostboxes_page", "a:2:{i:0;s:25:\"pagefrog-preview-meta-box\";i:1;s:15:\"layout-settings\";}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "wpseo_title", "");
INSERT INTO `wp_usermeta` VALUES("25", "1", "wpseo_metadesc", "");
INSERT INTO `wp_usermeta` VALUES("26", "1", "wpseo_metakey", "");
INSERT INTO `wp_usermeta` VALUES("27", "1", "wpseo_excludeauthorsitemap", "");
INSERT INTO `wp_usermeta` VALUES("28", "1", "wpseo_content_analysis_disable", "");
INSERT INTO `wp_usermeta` VALUES("29", "1", "wpseo_keyword_analysis_disable", "");
INSERT INTO `wp_usermeta` VALUES("30", "1", "billing_first_name", "");
INSERT INTO `wp_usermeta` VALUES("22", "1", "_yoast_wpseo_profile_updated", "1483295193");
INSERT INTO `wp_usermeta` VALUES("23", "1", "wp_media_library_mode", "grid");
INSERT INTO `wp_usermeta` VALUES("31", "1", "billing_last_name", "");
INSERT INTO `wp_usermeta` VALUES("32", "1", "billing_company", "");
INSERT INTO `wp_usermeta` VALUES("33", "1", "billing_address_1", "");
INSERT INTO `wp_usermeta` VALUES("34", "1", "billing_address_2", "");
INSERT INTO `wp_usermeta` VALUES("35", "1", "billing_city", "");
INSERT INTO `wp_usermeta` VALUES("36", "1", "billing_postcode", "");
INSERT INTO `wp_usermeta` VALUES("37", "1", "billing_country", "");
INSERT INTO `wp_usermeta` VALUES("38", "1", "billing_state", "");
INSERT INTO `wp_usermeta` VALUES("39", "1", "billing_phone", "");
INSERT INTO `wp_usermeta` VALUES("40", "1", "billing_email", "");
INSERT INTO `wp_usermeta` VALUES("41", "1", "shipping_first_name", "");
INSERT INTO `wp_usermeta` VALUES("42", "1", "shipping_last_name", "");
INSERT INTO `wp_usermeta` VALUES("43", "1", "shipping_company", "Seguridad Electrónica Sandí");
INSERT INTO `wp_usermeta` VALUES("44", "1", "shipping_address_1", "");
INSERT INTO `wp_usermeta` VALUES("45", "1", "shipping_address_2", "");
INSERT INTO `wp_usermeta` VALUES("46", "1", "shipping_city", "");
INSERT INTO `wp_usermeta` VALUES("47", "1", "shipping_postcode", "");
INSERT INTO `wp_usermeta` VALUES("48", "1", "shipping_country", "CR");
INSERT INTO `wp_usermeta` VALUES("49", "1", "shipping_state", "");
INSERT INTO `wp_usermeta` VALUES("50", "1", "last_update", "1483295193");
INSERT INTO `wp_usermeta` VALUES("51", "1", "googleplus", "");
INSERT INTO `wp_usermeta` VALUES("52", "1", "twitter", "");
INSERT INTO `wp_usermeta` VALUES("53", "1", "facebook", "www.fb.com/Jostrike");
INSERT INTO `wp_usermeta` VALUES("54", "1", "wpseo-has-mailchimp-signup", "1");
INSERT INTO `wp_usermeta` VALUES("60", "1", "metaboxhidden_page", "a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("61", "1", "closedpostboxes_dashboard", "a:6:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:36:\"woocommerce_dashboard_recent_reviews\";i:3;s:28:\"woocommerce_dashboard_status\";i:4;s:21:\"dashboard_quick_press\";i:5;s:17:\"dashboard_primary\";}");
INSERT INTO `wp_usermeta` VALUES("62", "1", "metaboxhidden_dashboard", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("63", "1", "tgmpa_dismissed_notice_flatastic", "1");
INSERT INTO `wp_usermeta` VALUES("67", "1", "jetpack_tracks_wpcom_id", "54335371");
INSERT INTO `wp_usermeta` VALUES("68", "1", "abtf_show_offer", "0");
INSERT INTO `wp_usermeta` VALUES("69", "1", "wp__wassup_settings", "a:16:{s:13:\"detail_filter\";s:10:\"everything\";s:12:\"detail_chart\";s:1:\"1\";s:12:\"detail_limit\";s:2:\"50\";s:18:\"detail_time_period\";s:1:\"1\";s:9:\"from_date\";i:0;s:7:\"to_date\";i:0;s:10:\"spy_filter\";s:10:\"everything\";s:7:\"spy_map\";s:1:\"1\";s:14:\"ualert_message\";s:0:\"\";s:6:\"unonce\";i:812040;s:5:\"umark\";s:0:\"\";s:3:\"uip\";s:0:\"\";s:6:\"urecid\";i:0;s:10:\"utimestamp\";i:0;s:9:\"uwassupid\";s:0:\"\";s:8:\"uversion\";s:5:\"1.9.3\";}");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "sandi", "$P$B.rFfY35uxsKMj00YHrClMXtsYEHqC/", "admin", "jostrike1@gmail.com", "http://www.sanditec.com", "2016-12-31 20:19:22", "", "0", "admin");

/* INSERT TABLE DATA: wp_wassup */
INSERT INTO `wp_wassup` VALUES("1", "00000000000000000000000000000001", "1483984973", "127.0.0.1", "localhost", "[404] Welcome to WassUP", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36 WassUp/1.9.3 (http://www.wpwp.org)", "http://www.wpwp.org", "", "0", "MacOSX", "Chrome 54", "es", "", "", "", "", "sandi", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("2", "0b_5648d67d56d65676f3501681234c1b2b", "1483985011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("3", "0b_d680ef3dc503f499084f7d8ce2503a9c", "1483985028", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/producto/spectra-sp4000/www.paradox.com", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("4", "0b_919239eeb11f8c50bf464610d81e1c14", "1483985058", "201.194.236.242", "201.194.236.242", "/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "", "", "0", "iPhone OS", "Safari 10 Mobile", "xl", "320 x 568", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("5", "0b_919239eeb11f8c50bf464610d81e1c14", "1483985061", "201.194.236.242", "201.194.236.242", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "Safari 10 Mobile", "xl", "320 x 568", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("6", "0b_919239eeb11f8c50bf464610d81e1c14", "1483985062", "201.194.236.242", "201.194.236.242", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "Safari 10 Mobile", "xl", "320 x 568", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("7", "0b_919239eeb11f8c50bf464610d81e1c14", "1483985063", "201.194.236.242", "201.194.236.242", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "Safari 10 Mobile", "xl", "320 x 568", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("8", "0b_d89a678e273820569906c29bb40970d9", "1483985071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("9", "0b_3aa37ce9121890083c54668efc4ac9b0", "1483985073", "201.194.236.242", "201.194.236.242", "[404] /apple-touch-icon-120x120-precomposed.png", "MobileSafari/602.1 CFNetwork/808.2.16 Darwin/16.3.0", "", "", "0", "", "", "xl", "", "", "MobileSafari", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("10", "0b_d1c9145482b343de7d5c48a753c77c70", "1483985132", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("11", "0b_836cca60d6ec3b2223e670595a6dd675", "1483985191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("12", "0b_730cfd79b10838977d7d6dbb1d4f42a8", "1483985251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("13", "0b_9bef7beaa8bfe69bbea1d328ba03d4a4", "1483985311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("14", "0b_4dc98669c76bc0913c7fa6984b1be068", "1483985371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("15", "0b_5c46465b8863c337326cb64a914efd81", "1483985466", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("16", "0b_d1c9145482b343de7d5c48a753c77c70", "1483985510", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("17", "0b_99ea14cc9e6cffd93332a9c60fdc2917", "1483985511", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("18", "0b_d71efc7b9ea2c1260993ff7b0e9dcbea", "1483985552", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("19", "0b_5648d67d56d65676f3501681234c1b2b", "1483985612", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("20", "0b_d89a678e273820569906c29bb40970d9", "1483985672", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("21", "0b_d1c9145482b343de7d5c48a753c77c70", "1483985732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("22", "0b_836cca60d6ec3b2223e670595a6dd675", "1483985792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("23", "0b_730cfd79b10838977d7d6dbb1d4f42a8", "1483985852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("24", "0b_9bef7beaa8bfe69bbea1d328ba03d4a4", "1483985911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("25", "0b_4dc98669c76bc0913c7fa6984b1be068", "1483985971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("26", "0b_5c46465b8863c337326cb64a914efd81", "1483986031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("27", "0b_99ea14cc9e6cffd93332a9c60fdc2917", "1483986093", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("28", "0b_d71efc7b9ea2c1260993ff7b0e9dcbea", "1483986152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("29", "0b_5648d67d56d65676f3501681234c1b2b", "1483986211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("30", "0b_d89a678e273820569906c29bb40970d9", "1483986271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("31", "0b_d1c9145482b343de7d5c48a753c77c70", "1483986331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("32", "0b_836cca60d6ec3b2223e670595a6dd675", "1483986391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("33", "0b_730cfd79b10838977d7d6dbb1d4f42a8", "1483986451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("34", "0b_9bef7beaa8bfe69bbea1d328ba03d4a4", "1483986511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("35", "0b_4dc98669c76bc0913c7fa6984b1be068", "1483986571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("36", "0b_e33f7c716e4118780206c52d82385c0a", "1483986631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("37", "0b_2f046ef3ce77a199ffb28a2ec3e59c8d", "1483986692", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("38", "0b_ded2fe804dcad0bba9fd4213c9d7e85f", "1483986752", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("39", "0b_6dd35d82e986dbf2d12f3e35f64fdea1", "1483986813", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("40", "0b_15dc8ce2434698c5329db5cf56bed1ff", "1483986871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("41", "0b_3e1c3254a15da3c64681497ab1553a68", "1483986931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("42", "0b_588c50959898463053084e3122845ac0", "1483986991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("43", "0b_5a69a924d59b96eb19a2227edbf182ab", "1483987051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("44", "0b_72a51a66f744fab5f7cb955ca8568f1e", "1483987112", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("45", "0b_b7ab77d4ba54383ea916c15ff23b74d5", "1483987172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("46", "0b_e33f7c716e4118780206c52d82385c0a", "1483987231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("47", "0b_2f046ef3ce77a199ffb28a2ec3e59c8d", "1483987292", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("48", "0b_ded2fe804dcad0bba9fd4213c9d7e85f", "1483987351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("49", "0b_6dd35d82e986dbf2d12f3e35f64fdea1", "1483987412", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("50", "0b_15dc8ce2434698c5329db5cf56bed1ff", "1483987471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("51", "0b_3e1c3254a15da3c64681497ab1553a68", "1483987531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("52", "0b_588c50959898463053084e3122845ac0", "1483987591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("53", "0b_5a69a924d59b96eb19a2227edbf182ab", "1483987651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("54", "0b_72a51a66f744fab5f7cb955ca8568f1e", "1483987711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("55", "0b_b7ab77d4ba54383ea916c15ff23b74d5", "1483987771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("56", "0b_e33f7c716e4118780206c52d82385c0a", "1483987831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("57", "0b_2f046ef3ce77a199ffb28a2ec3e59c8d", "1483987892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("58", "0b_ded2fe804dcad0bba9fd4213c9d7e85f", "1483987951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("59", "0b_6dd35d82e986dbf2d12f3e35f64fdea1", "1483988012", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("60", "0b_15dc8ce2434698c5329db5cf56bed1ff", "1483988071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("61", "0b_3e1c3254a15da3c64681497ab1553a68", "1483988131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("62", "0b_588c50959898463053084e3122845ac0", "1483988193", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("63", "0b_5a69a924d59b96eb19a2227edbf182ab", "1483988251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("64", "0b_5093563d4be416838d3e35a3530f183c", "1483988260", "66.249.69.227", "crawl-66-249-69-227.googlebot.com", "/", "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "Android", "", "", "", "", "Googlebot-Mobile", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("65", "0b_89abd374693f0f86c3ba67a725a284cd", "1483988261", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/", "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "Android", "", "", "", "", "Googlebot-Mobile", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("66", "0b_72a51a66f744fab5f7cb955ca8568f1e", "1483988312", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("67", "0b_b7ab77d4ba54383ea916c15ff23b74d5", "1483988371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("68", "0b_8ffc1aa3a24e0443cdd914cc50587953", "1483988431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("69", "0b_990c7551fa590925460888884a4f240c", "1483988497", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("70", "0b_916173d2328f10d9e4b429c42d5eda11", "1483988551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("71", "0b_e4c1fe1ee551a73eb30cd426af50283e", "1483988611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("72", "0b_6f9d02ec81c0319566e85b7b1bd94106", "1483988671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("73", "0b_7029f0a01ced758bfced60bde04c0333", "1483988732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("74", "0b_a7a39d9d832e7c515c54b8fe5b56bf2f", "1483988791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("75", "0b_98091bd7310f9b8ca51a0b0b3e8194f3", "1483988851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("76", "0b_053e21c3b56b61212fccc5e0b465c597", "1483988911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("77", "0b_ad05a529b09721a8eeb570375ef217c8", "1483988972", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("78", "0b_8ffc1aa3a24e0443cdd914cc50587953", "1483989031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("79", "0b_990c7551fa590925460888884a4f240c", "1483989091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("80", "0b_386c7ee0cdfa5b08dc385bc2b2542227", "1483989116", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/producto/teclado-tactil-tm50/www.paradox.com", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("81", "0b_916173d2328f10d9e4b429c42d5eda11", "1483989151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("82", "0b_e4c1fe1ee551a73eb30cd426af50283e", "1483989211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("83", "0b_6f9d02ec81c0319566e85b7b1bd94106", "1483989271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("84", "0b_7029f0a01ced758bfced60bde04c0333", "1483989331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("85", "0b_a7a39d9d832e7c515c54b8fe5b56bf2f", "1483989392", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("86", "0b_98091bd7310f9b8ca51a0b0b3e8194f3", "1483989452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("87", "0b_053e21c3b56b61212fccc5e0b465c597", "1483989520", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("88", "0b_ad05a529b09721a8eeb570375ef217c8", "1483989571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("89", "0b_8ffc1aa3a24e0443cdd914cc50587953", "1483989631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("90", "0b_990c7551fa590925460888884a4f240c", "1483989691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("91", "0b_916173d2328f10d9e4b429c42d5eda11", "1483989751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("92", "0b_e4c1fe1ee551a73eb30cd426af50283e", "1483989822", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("93", "0b_6f9d02ec81c0319566e85b7b1bd94106", "1483989871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("94", "0b_7029f0a01ced758bfced60bde04c0333", "1483989931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("95", "0b_a7a39d9d832e7c515c54b8fe5b56bf2f", "1483990004", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("96", "0b_98091bd7310f9b8ca51a0b0b3e8194f3", "1483990051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("97", "0b_053e21c3b56b61212fccc5e0b465c597", "1483990111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("98", "0b_ad05a529b09721a8eeb570375ef217c8", "1483990172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("99", "0b_64b3329225b2fe46784ceef2281bd456", "1483990231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("100", "0b_6ec53062134399b5e4a6c46428217e27", "1483990292", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("101", "0b_2e7560d63c053131a5d7f1d3d3be746d", "1483990352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("102", "0b_7855b63746623ea52aadf6fcb4ecd752", "1483990413", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("103", "0b_5b01a12c1f9d115cffcd3d446a9970a0", "1483990471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("104", "0b_c8db093073dbead793c4a6e04c033fbd", "1483990531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("105", "0b_eddad220a2a9c4555bc24fe630a7ebf6", "1483990591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("106", "0b_137e01c444bcf67975bcc4362d9275a3", "1483990651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("107", "0b_ddfe0d09f73911568bb90a50c79ab09f", "1483990712", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("108", "0b_6d192aa0195ccf1b9f1223b147319104", "1483990771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("109", "0b_64b3329225b2fe46784ceef2281bd456", "1483990831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("110", "0b_6ec53062134399b5e4a6c46428217e27", "1483990892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("111", "0b_2e7560d63c053131a5d7f1d3d3be746d", "1483990951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("112", "0b_7855b63746623ea52aadf6fcb4ecd752", "1483991011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("113", "0b_5b01a12c1f9d115cffcd3d446a9970a0", "1483991071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("114", "0b_c8db093073dbead793c4a6e04c033fbd", "1483991131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("115", "0b_eddad220a2a9c4555bc24fe630a7ebf6", "1483991191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("116", "0b_137e01c444bcf67975bcc4362d9275a3", "1483991251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("117", "0b_ddfe0d09f73911568bb90a50c79ab09f", "1483991311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("118", "0b_b38ea841746cff00581c5b5448dcbb01", "1483991324", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/sitemap-pt-product-2017-01.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("119", "0b_b38ea841746cff00581c5b5448dcbb01", "1483991325", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("120", "0b_6d192aa0195ccf1b9f1223b147319104", "1483991372", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("121", "0b_64b3329225b2fe46784ceef2281bd456", "1483991431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("122", "0b_6ec53062134399b5e4a6c46428217e27", "1483991491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("123", "0b_2e7560d63c053131a5d7f1d3d3be746d", "1483991552", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("124", "0b_7855b63746623ea52aadf6fcb4ecd752", "1483991611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("125", "0b_5b01a12c1f9d115cffcd3d446a9970a0", "1483991671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("126", "0b_c8db093073dbead793c4a6e04c033fbd", "1483991731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("127", "0b_eddad220a2a9c4555bc24fe630a7ebf6", "1483991792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("128", "0b_137e01c444bcf67975bcc4362d9275a3", "1483991851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("129", "0b_ddfe0d09f73911568bb90a50c79ab09f", "1483991911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("130", "0b_6d192aa0195ccf1b9f1223b147319104", "1483991972", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("131", "0b_242d5670b761142620383b4cbfdfbb4d", "1483992029", "66.249.69.253", "crawl-66-249-69-253.googlebot.com", "/sitemap-misc.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("132", "0b_adc13b2276f63738cf003b22ed593fc0", "1483992030", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("133", "0b_0ba102f1b232d406f8810b84b7787ff9", "1483992031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("134", "0b_febc351be12606b6f9aacecb88dd2756", "1483992093", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("135", "0b_e0fe5d1e7ba966adc2ace8597308a9d9", "1483992185", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("136", "0b_f8b922129e548388e5dabb5f5af21324", "1483992190", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("137", "0b_79c4bbf67501589c04cf4b80acde803a", "1483992212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("138", "0b_242d5670b761142620383b4cbfdfbb4d", "1483992262", "66.249.69.253", "crawl-66-249-69-253.googlebot.com", "/sitemap_index.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("139", "0b_670f58acfa19a683c9c8f122f772f35a", "1483992271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("140", "0b_a20769f31798541922d1010ef0f6c1e6", "1483992276", "201.194.236.242", "201.194.236.242", "/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36", "", "", "0", "MacOSX", "Chrome 54", "us", "1280 x 1024", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("141", "0b_a20769f31798541922d1010ef0f6c1e6", "1483992284", "201.194.236.242", "201.194.236.242", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36", "http://csandi.xyz/", "", "0", "MacOSX", "Chrome 54", "us", "1280 x 1024", "", "", "", "sandi", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("142", "0b_02a0414cb16373527d77ff3b738a1189", "1483992332", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("143", "0b_f8b922129e548388e5dabb5f5af21324", "1483992391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("144", "0b_a006214a9dfa1150998d16d7022524b5", "1483992451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("145", "0b_5d37dd62b1e60fee93eed84536404a2c", "1483992511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("146", "0b_ef2e77843a69d4617ba1f564a3733e42", "1483992571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("147", "0b_0ba102f1b232d406f8810b84b7787ff9", "1483992631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("148", "0b_febc351be12606b6f9aacecb88dd2756", "1483992697", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("149", "0b_e0fe5d1e7ba966adc2ace8597308a9d9", "1483992752", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("150", "0b_79c4bbf67501589c04cf4b80acde803a", "1483992812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("151", "0b_670f58acfa19a683c9c8f122f772f35a", "1483992871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("152", "0b_02a0414cb16373527d77ff3b738a1189", "1483992931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("153", "0b_f8b922129e548388e5dabb5f5af21324", "1483992991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("154", "0b_cda691a52ca22d265a822cb77463ba03", "1483993024", "37.9.122.202", "spider-37-9-122-202.yandex.com", "[404] /images/fav.ico", "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)", "", "", "0", "", "", "ru", "", "", "YandexBot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("155", "0b_a006214a9dfa1150998d16d7022524b5", "1483993051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("156", "0b_5d37dd62b1e60fee93eed84536404a2c", "1483993112", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("157", "0b_ef2e77843a69d4617ba1f564a3733e42", "1483993172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("158", "0b_0ba102f1b232d406f8810b84b7787ff9", "1483993231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("159", "0b_febc351be12606b6f9aacecb88dd2756", "1483993291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("160", "0b_e0fe5d1e7ba966adc2ace8597308a9d9", "1483993353", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("161", "0b_79c4bbf67501589c04cf4b80acde803a", "1483993411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("162", "0b_adc13b2276f63738cf003b22ed593fc0", "1483993427", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/producto/modulo-de-monitoreo-w-mmf/MDL3.html", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("163", "0b_670f58acfa19a683c9c8f122f772f35a", "1483993471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("164", "0b_02a0414cb16373527d77ff3b738a1189", "1483993531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("165", "0b_f8b922129e548388e5dabb5f5af21324", "1483993591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("166", "0b_a006214a9dfa1150998d16d7022524b5", "1483993652", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("167", "0b_5d37dd62b1e60fee93eed84536404a2c", "1483993711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("168", "0b_ef2e77843a69d4617ba1f564a3733e42", "1483993772", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("169", "0b_56819ec969bf3442589bcf929a3b515e", "1483993831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("170", "0b_d2d289df87cda1c15c4c42f6aaf8720c", "1483993892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("171", "0b_af513d3a5ad5fcbc6db4250fc3b0ae5e", "1483993952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("172", "0b_6a5bb1c48237120494234fc8c43bfded", "1483994013", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("173", "0b_ea68af53051e9512f2530dbdacdaf922", "1483994071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("174", "0b_0110313da108858d9c84553adfb5b132", "1483994131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("175", "0b_53e0741bc8055eeab038bfd5005a751c", "1483994191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("176", "0b_5d29741d9fcfe6c2574220b30bb87c60", "1483994251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("177", "0b_c3b01fe69dca30d4694934ee56705d3a", "1483994311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("178", "0b_001f31096cf31be25f7e7bf211651c82", "1483994371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("179", "0b_56819ec969bf3442589bcf929a3b515e", "1483994431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("180", "0b_d2d289df87cda1c15c4c42f6aaf8720c", "1483994491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("181", "0b_af513d3a5ad5fcbc6db4250fc3b0ae5e", "1483994551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("182", "0b_b568432eded275ed080130fc87827d39", "1483994562", "66.249.69.253", "crawl-66-249-69-253.googlebot.com", "/producto/modulo-de-monitoreo-w-mmf/SPWK.html", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("183", "0b_6a5bb1c48237120494234fc8c43bfded", "1483994611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("184", "0b_ea68af53051e9512f2530dbdacdaf922", "1483994672", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("185", "0b_0110313da108858d9c84553adfb5b132", "1483994731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("186", "0b_e80e58cc82576cf278c29301991ff9ea", "1483994789", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/producto/panel-incendio-firelite-ms-9050/SPWK.html", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("187", "0b_53e0741bc8055eeab038bfd5005a751c", "1483994791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("188", "0b_5d29741d9fcfe6c2574220b30bb87c60", "1483994851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("189", "0b_c3b01fe69dca30d4694934ee56705d3a", "1483994911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("190", "0b_001f31096cf31be25f7e7bf211651c82", "1483994971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("191", "0b_56819ec969bf3442589bcf929a3b515e", "1483995031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("192", "0b_d2d289df87cda1c15c4c42f6aaf8720c", "1483995091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("193", "0b_af513d3a5ad5fcbc6db4250fc3b0ae5e", "1483995152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("194", "0b_6a5bb1c48237120494234fc8c43bfded", "1483995212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("195", "0b_ea68af53051e9512f2530dbdacdaf922", "1483995271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("196", "0b_0110313da108858d9c84553adfb5b132", "1483995332", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("197", "0b_53e0741bc8055eeab038bfd5005a751c", "1483995392", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("198", "0b_5d29741d9fcfe6c2574220b30bb87c60", "1483995452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("199", "0b_c3b01fe69dca30d4694934ee56705d3a", "1483995511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("200", "0b_001f31096cf31be25f7e7bf211651c82", "1483995571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("201", "0b_ef482e1d04a6a0afd2781b6cecb79e46", "1483995631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("202", "0b_e3287203bc530328c700ad6a486aa3d2", "1483995691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("203", "0b_d6c434b44a3cad503d034871bf87e787", "1483995701", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/producto/altavocesestrobos-serie-spwkspcwk-exteriores/SPWK.html", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("204", "0b_7cb676d87c7ee065ccb6bd3043080984", "1483995765", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("205", "0b_96b2b7b829ff6b1e0a63807e6ae9dd50", "1483995811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("206", "0b_c005d533f441485df34a705a9613487d", "1483995871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("207", "0b_9a9e33ef031569c49427ac954504b046", "1483995931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("208", "0b_b6c4c2a8018485c5df5a75f4910f16e2", "1483995993", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("209", "0b_600bc99dc510dca95f6b7f3200ea7145", "1483996051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("210", "0b_3124bc191ba1bf42710811813ad00605", "1483996111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("211", "0b_a56346f39c107807088942215c939f5f", "1483996171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("212", "0b_ef482e1d04a6a0afd2781b6cecb79e46", "1483996231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("213", "0b_e3287203bc530328c700ad6a486aa3d2", "1483996291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("214", "0b_7cb676d87c7ee065ccb6bd3043080984", "1483996351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("215", "0b_96b2b7b829ff6b1e0a63807e6ae9dd50", "1483996412", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("216", "0b_c005d533f441485df34a705a9613487d", "1483996471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("217", "0b_9a9e33ef031569c49427ac954504b046", "1483996531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("218", "0b_b6c4c2a8018485c5df5a75f4910f16e2", "1483996591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("219", "0b_600bc99dc510dca95f6b7f3200ea7145", "1483996652", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("220", "0b_3124bc191ba1bf42710811813ad00605", "1483996711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("221", "0b_a56346f39c107807088942215c939f5f", "1483996771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("222", "0b_ef482e1d04a6a0afd2781b6cecb79e46", "1483996831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("223", "0b_e3287203bc530328c700ad6a486aa3d2", "1483996892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("224", "0b_7cb676d87c7ee065ccb6bd3043080984", "1483996951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("225", "0b_96b2b7b829ff6b1e0a63807e6ae9dd50", "1483997011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("226", "0b_c005d533f441485df34a705a9613487d", "1483997071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("227", "0b_9a9e33ef031569c49427ac954504b046", "1483997131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("228", "0b_b6c4c2a8018485c5df5a75f4910f16e2", "1483997191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("229", "0b_d6c434b44a3cad503d034871bf87e787", "1483997212", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/sitemap-tax-product_tag.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("230", "0b_d6c434b44a3cad503d034871bf87e787", "1483997213", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("231", "0b_600bc99dc510dca95f6b7f3200ea7145", "1483997252", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("232", "0b_3124bc191ba1bf42710811813ad00605", "1483997322", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("233", "0b_a56346f39c107807088942215c939f5f", "1483997371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("234", "0b_1866bfef83a7f59bd285eb878947e7bc", "1483997431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("235", "0b_e02b6fd90ec2233d7fe6014540e5ed93", "1483997491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("236", "0b_ee25d2d60db051f378366e8b57736e06", "1483997551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("237", "0b_0ba5f5f9a1087e9ee1c61c7d370fec91", "1483997612", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("238", "0b_30bda1a654cedc25d99da28ee54d662c", "1483997671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("239", "0b_f03cbabe9823c4068bfc65c543defeb1", "1483997731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("240", "0b_51c55a90bda1aeb02c8cc068653bb32c", "1483997791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("241", "0b_469ca917662c6b4bc1df65e80ca20b5b", "1483997851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("242", "0b_9824a3cb65618d038bee0cb41a36c53e", "1483997911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("243", "0b_e25610e6e62635ffb1a0ad694f04ffd4", "1483997973", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("244", "0b_1866bfef83a7f59bd285eb878947e7bc", "1483998031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("245", "0b_e02b6fd90ec2233d7fe6014540e5ed93", "1483998091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("246", "0b_ee25d2d60db051f378366e8b57736e06", "1483998151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("247", "0b_0cd56dee827bcca115c5dfcaa92063b5", "1483998194", "66.249.69.253", "crawl-66-249-69-253.googlebot.com", "/producto/dispositivos-salida-seleccionable-spectralert-advance/MDL3.html", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("248", "0b_0ba5f5f9a1087e9ee1c61c7d370fec91", "1483998211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("249", "0b_30bda1a654cedc25d99da28ee54d662c", "1483998271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("250", "0b_f03cbabe9823c4068bfc65c543defeb1", "1483998331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("251", "0b_51c55a90bda1aeb02c8cc068653bb32c", "1483998391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("252", "0b_469ca917662c6b4bc1df65e80ca20b5b", "1483998460", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("253", "0b_9824a3cb65618d038bee0cb41a36c53e", "1483998511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("254", "0b_e25610e6e62635ffb1a0ad694f04ffd4", "1483998572", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("255", "0b_1866bfef83a7f59bd285eb878947e7bc", "1483998631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("256", "0b_e02b6fd90ec2233d7fe6014540e5ed93", "1483998692", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("257", "0b_ee25d2d60db051f378366e8b57736e06", "1483998752", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("258", "0b_0ba5f5f9a1087e9ee1c61c7d370fec91", "1483998811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("259", "0b_30bda1a654cedc25d99da28ee54d662c", "1483998871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("260", "0b_f03cbabe9823c4068bfc65c543defeb1", "1483998931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("261", "0b_51c55a90bda1aeb02c8cc068653bb32c", "1483998992", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("262", "0b_469ca917662c6b4bc1df65e80ca20b5b", "1483999051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("263", "0b_9824a3cb65618d038bee0cb41a36c53e", "1483999112", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("264", "0b_e25610e6e62635ffb1a0ad694f04ffd4", "1483999171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("265", "0b_34a6dd99ba6f2926bc01346671d2e1d5", "1483999231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("266", "0b_e81f62986e410021bae4f5f77adfabcf", "1483999293", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("267", "0b_b8be1679f7765c8ad1745c766f3ac094", "1483999351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("268", "0b_1b4c4635ba2cf26e1035013720b0733b", "1483999411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("269", "0b_8a2042d8cfa5b114e071e61e1128e596", "1483999471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("270", "0b_411f0b425139395477708904b91c95d8", "1483999531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("271", "0b_9b612a16fafea0b518599c9e4a784100", "1483999591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("272", "0b_582b2f61b4e12cf6abcd530e0ad6c936", "1483999651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("273", "0b_b5be6fa0a030e7fec0469623259b2263", "1483999711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("274", "0b_e9325cd4933c2a3ff128cf83184dcc34", "1483999771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("275", "0b_34a6dd99ba6f2926bc01346671d2e1d5", "1483999831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("276", "0b_e81f62986e410021bae4f5f77adfabcf", "1483999892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("277", "0b_b8be1679f7765c8ad1745c766f3ac094", "1483999979", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("278", "0b_1b4c4635ba2cf26e1035013720b0733b", "1484000011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("279", "0b_8a2042d8cfa5b114e071e61e1128e596", "1484000072", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("280", "0b_411f0b425139395477708904b91c95d8", "1484000131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("281", "0b_9b612a16fafea0b518599c9e4a784100", "1484000191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("282", "0b_582b2f61b4e12cf6abcd530e0ad6c936", "1484000251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("283", "0b_b5be6fa0a030e7fec0469623259b2263", "1484000311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("284", "0b_e9325cd4933c2a3ff128cf83184dcc34", "1484000371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("285", "0b_34a6dd99ba6f2926bc01346671d2e1d5", "1484000431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("286", "0b_e81f62986e410021bae4f5f77adfabcf", "1484000492", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("287", "0b_b8be1679f7765c8ad1745c766f3ac094", "1484000552", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("288", "0b_1b4c4635ba2cf26e1035013720b0733b", "1484000611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("289", "0b_8a2042d8cfa5b114e071e61e1128e596", "1484000671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("290", "0b_411f0b425139395477708904b91c95d8", "1484000731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("291", "0b_9b612a16fafea0b518599c9e4a784100", "1484000791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("292", "0b_582b2f61b4e12cf6abcd530e0ad6c936", "1484000852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("293", "0b_b5be6fa0a030e7fec0469623259b2263", "1484000911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("294", "0b_e9325cd4933c2a3ff128cf83184dcc34", "1484000971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("295", "0b_7ac917112788bf099128eee041426b2c", "1484001031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("296", "0b_364a79da40da176cb6d4ed20eede69ad", "1484001098", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("297", "0b_b8a82cd87cd5137968bbe1999a31c55a", "1484001152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("298", "0b_1ea523cd0da743ec55729f5802f01011", "1484001213", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("299", "0b_622cfae2947c8e453bead4a4dd85a4ff", "1484001271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("300", "0b_dc3c293f07f73d010501840a60529cbf", "1484001331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("301", "0b_20925cd532911e0876bcf284d667bf25", "1484001391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("302", "0b_9b690aa2bf944bb6a4645c6987456fec", "1484001452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("303", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001486", "183.27.47.217", "183.27.47.217", "/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("304", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001493", "183.27.47.217", "183.27.47.217", "/producto/control-remoto-rem-101/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("305", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001495", "183.27.47.217", "183.27.47.217", "/producto/control-remoto-rem-15/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("306", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001495", "183.27.47.217", "183.27.47.217", "/contacto/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "66", "0");
INSERT INTO `wp_wassup` VALUES("307", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001495", "183.27.47.217", "183.27.47.217", "//s.w.org", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("308", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001496", "183.27.47.217", "183.27.47.217", "/comments/feed/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("309", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001496", "183.27.47.217", "183.27.47.217", "/categoria-producto/deteccion-de-incendio/", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("310", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001497", "183.27.47.217", "183.27.47.217", "/s.w.org", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("311", "0b_2c4e970f480ec290efabe2f837f7f652", "1484001498", "183.27.47.217", "183.27.47.217", "/wp-json/oembed/1.0/embed?url=http://csandi.xyz/&&v=2&at1=2AA314A2BC2B2317C3130314A313A313E29E2AC2A82B82AA2AC2A82A42AA2AC2A82B631402A02A03F&at2=10949&at3=67559990CDAF891057278C7AE7A6BE32&at4=oTt7HJdYUoB+DJWS0fPxzP-9vj5cXL8n", "Mozilla/4.0 (compatible; MSIE8.0; Windows NT 6.0) .NET CLR 2.0.50727)", "", "", "0", "WinVista", "Netscape 4", "", "", "", "", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("312", "0b_1f33317e3166590dbf0c9f82f5e68545", "1484001511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("313", "0b_dad43c2314a53b9e999c931c7a838f82", "1484001572", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("314", "0b_7ac917112788bf099128eee041426b2c", "1484001631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("315", "0b_364a79da40da176cb6d4ed20eede69ad", "1484001691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("316", "0b_b8a82cd87cd5137968bbe1999a31c55a", "1484001751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("317", "0b_1ea523cd0da743ec55729f5802f01011", "1484001811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("318", "0b_622cfae2947c8e453bead4a4dd85a4ff", "1484001871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("319", "0b_dc3c293f07f73d010501840a60529cbf", "1484001932", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("320", "0b_20925cd532911e0876bcf284d667bf25", "1484001991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("321", "0b_9b690aa2bf944bb6a4645c6987456fec", "1484002051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("322", "0b_1f33317e3166590dbf0c9f82f5e68545", "1484002111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("323", "0b_dad43c2314a53b9e999c931c7a838f82", "1484002171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("324", "0b_7ac917112788bf099128eee041426b2c", "1484002231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("325", "0b_364a79da40da176cb6d4ed20eede69ad", "1484002291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("326", "0b_b8a82cd87cd5137968bbe1999a31c55a", "1484002351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("327", "0b_1ea523cd0da743ec55729f5802f01011", "1484002411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("328", "0b_622cfae2947c8e453bead4a4dd85a4ff", "1484002471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("329", "0b_dc3c293f07f73d010501840a60529cbf", "1484002531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("330", "0b_20925cd532911e0876bcf284d667bf25", "1484002592", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("331", "0b_9b690aa2bf944bb6a4645c6987456fec", "1484002651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("332", "0b_1f33317e3166590dbf0c9f82f5e68545", "1484002711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("333", "0b_dad43c2314a53b9e999c931c7a838f82", "1484002771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("334", "0b_fd59c8b394f5e77dbc97ee43a7f385db", "1484002832", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("335", "0b_c80685b6371f0e2d090f9733cc2cf4c1", "1484002891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("336", "0b_c5b3c458e23027f7bc2465dbb9f4286f", "1484002960", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("337", "0b_0285f4eef4c8ff517f13b417e42a120d", "1484003012", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("338", "0b_0822bde923047b08e1804770b2ad1101", "1484003090", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("339", "0b_cf8e62abbaf2e65198d54b3e7d25ef42", "1484003131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("340", "0b_4c224c5d3919273fcb02ed5af68c4c83", "1484003191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("341", "0b_4513b4e41aa1f2a9490fb681beecefa0", "1484003252", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("342", "0b_f78487c1b2543aac24234af35d03709c", "1484003311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("343", "0b_8872c023f6a7833198ee534718acbc13", "1484003371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("344", "0b_fd59c8b394f5e77dbc97ee43a7f385db", "1484003431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("345", "0b_c80685b6371f0e2d090f9733cc2cf4c1", "1484003491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("346", "0b_c5b3c458e23027f7bc2465dbb9f4286f", "1484003551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("347", "0b_0285f4eef4c8ff517f13b417e42a120d", "1484003611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("348", "0b_0822bde923047b08e1804770b2ad1101", "1484003671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("349", "0b_cf8e62abbaf2e65198d54b3e7d25ef42", "1484003732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("350", "0b_4c224c5d3919273fcb02ed5af68c4c83", "1484003791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("351", "0b_4513b4e41aa1f2a9490fb681beecefa0", "1484003851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("352", "0b_f78487c1b2543aac24234af35d03709c", "1484003912", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("353", "0b_8872c023f6a7833198ee534718acbc13", "1484003971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("354", "0b_fd59c8b394f5e77dbc97ee43a7f385db", "1484004031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("355", "0b_c80685b6371f0e2d090f9733cc2cf4c1", "1484004091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("356", "0b_c5b3c458e23027f7bc2465dbb9f4286f", "1484004152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("357", "0b_0285f4eef4c8ff517f13b417e42a120d", "1484004211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("358", "0b_0822bde923047b08e1804770b2ad1101", "1484004271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("359", "0b_cf8e62abbaf2e65198d54b3e7d25ef42", "1484004331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("360", "0b_4c224c5d3919273fcb02ed5af68c4c83", "1484004392", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("361", "0b_4513b4e41aa1f2a9490fb681beecefa0", "1484004451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("362", "0b_f78487c1b2543aac24234af35d03709c", "1484004511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("363", "0b_8872c023f6a7833198ee534718acbc13", "1484004571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("364", "0b_0841722724a54e9bef8824cb13e6bc75", "1484004632", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("365", "0b_7fee8bf20c35c4ec8c41f70b261e9f9e", "1484004642", "187.204.12.208", "dsl-187-204-12-208-dyn.prod-infinitum.com.mx", "/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14B100 Safari/602.1", "", "", "0", "iPhone OS", "CriOS 55 Mobile", "xl", "375 x 667", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("366", "0b_7fee8bf20c35c4ec8c41f70b261e9f9e", "1484004651", "187.204.12.208", "dsl-187-204-12-208-dyn.prod-infinitum.com.mx", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14B100 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "CriOS 55 Mobile", "xl", "375 x 667", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("367", "0b_7fee8bf20c35c4ec8c41f70b261e9f9e", "1484004653", "187.204.12.208", "dsl-187-204-12-208-dyn.prod-infinitum.com.mx", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14B100 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "CriOS 55 Mobile", "xl", "375 x 667", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("368", "0b_7fee8bf20c35c4ec8c41f70b261e9f9e", "1484004653", "187.204.12.208", "dsl-187-204-12-208-dyn.prod-infinitum.com.mx", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/55.0.2883.79 Mobile/14B100 Safari/602.1", "http://csandi.xyz/", "", "0", "iPhone OS", "CriOS 55 Mobile", "xl", "375 x 667", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("369", "0b_0ce639229b12c4c78f82c69973bf00ee", "1484004692", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("370", "0b_3c541d5ae71f0fa8714f65bc3f33f831", "1484004751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("371", "0b_9b55aaf6e99d5a396bef02df41eb755e", "1484004812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("372", "0b_e9e33be81be5e2146d310436ad84b490", "1484004871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("373", "0b_73e02a12fee69118a9d5714f1b553ed7", "1484004931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("374", "0b_f273b7bcafb70478f0260f464eb8a081", "1484004991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("375", "0b_ff9310231be19943e2830a2780a9df55", "1484005051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("376", "0b_c741c236a876c861130e77ad5db40434", "1484005111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("377", "0b_b895cec46dd3bdfe9452fb6ba6fb3eb0", "1484005161", "31.13.102.96", "31.13.102.96", "[404] /images/img/bannerPATRONS.png", "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)", "", "", "0", "", "", "", "", "", "facebookexternalhit", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("378", "0b_3a996f465b301d538144efc7310c7310", "1484005171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("379", "0b_0841722724a54e9bef8824cb13e6bc75", "1484005232", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("380", "0b_9325ebf85cc41e91fca0898ce34b1cd0", "1484005255", "185.127.10.41", "185.127.10.41", "/", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)", "", "", "0", "Win7", "IE 8", "", "", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("381", "0b_0ce639229b12c4c78f82c69973bf00ee", "1484005291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("382", "0b_3c541d5ae71f0fa8714f65bc3f33f831", "1484005352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("383", "0b_97a39b308842625a2fdf348908995493", "1484005361", "66.249.69.231", "crawl-66-249-69-231.googlebot.com", "/sitemap.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("384", "0b_97a39b308842625a2fdf348908995493", "1484005362", "66.249.69.253", "crawl-66-249-69-253.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("385", "0b_9b55aaf6e99d5a396bef02df41eb755e", "1484005411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("386", "0b_e9e33be81be5e2146d310436ad84b490", "1484005471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("387", "0b_73e02a12fee69118a9d5714f1b553ed7", "1484005531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("388", "0b_f273b7bcafb70478f0260f464eb8a081", "1484005591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("389", "0b_ff9310231be19943e2830a2780a9df55", "1484005651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("390", "0b_c741c236a876c861130e77ad5db40434", "1484005711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("391", "0b_3a996f465b301d538144efc7310c7310", "1484005771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("392", "0b_0841722724a54e9bef8824cb13e6bc75", "1484005831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("393", "0b_0ce639229b12c4c78f82c69973bf00ee", "1484005892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("394", "0b_3c541d5ae71f0fa8714f65bc3f33f831", "1484005952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("395", "0b_9b55aaf6e99d5a396bef02df41eb755e", "1484006013", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("396", "0b_e9e33be81be5e2146d310436ad84b490", "1484006071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("397", "0b_73e02a12fee69118a9d5714f1b553ed7", "1484006131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("398", "0b_f273b7bcafb70478f0260f464eb8a081", "1484006192", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("399", "0b_ff9310231be19943e2830a2780a9df55", "1484006251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("400", "0b_c741c236a876c861130e77ad5db40434", "1484006312", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("401", "0b_3a996f465b301d538144efc7310c7310", "1484006371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("402", "0b_0ccd7368a1c7c2ec218f08ef6102f55e", "1484006432", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("403", "0b_ae6e30c584234e8a497d34752dd9e731", "1484006497", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("404", "0b_b73a9399be5c89705357f677fda69cb5", "1484006553", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("405", "0b_7976c6555993fa7f89732323c050239f", "1484006612", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("406", "0b_f2bb7e63764d2d86c5fac2be0ea7caaf", "1484006673", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("407", "0b_bccd5e61051ab6d5315728d95806b10b", "1484006740", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("408", "0b_6958edb3f90594007d9067ec40d6b5f6", "1484006791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("409", "0b_3f0743369f84d34d6f6de22e5de05a60", "1484006852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("410", "0b_67a708b7bfece20fa839cde68d1c3f9f", "1484006911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("411", "0b_22f09f49495d2005e0f591d1c01ee14f", "1484006971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("412", "0b_0ccd7368a1c7c2ec218f08ef6102f55e", "1484007031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("413", "0b_ae6e30c584234e8a497d34752dd9e731", "1484007091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("414", "0b_b73a9399be5c89705357f677fda69cb5", "1484007152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("415", "0b_7976c6555993fa7f89732323c050239f", "1484007212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("416", "0b_636cd465e977b4cc8a3dc8ad59ba205e", "1484007261", "64.246.165.50", "www.whois.sc", "/", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)", "http://whois.domaintools.com/csandi.xyz", "", "0", "WinXP", "Firefox 3", "sc", "", "", "SurveyBot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("417", "0b_f2bb7e63764d2d86c5fac2be0ea7caaf", "1484007271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("418", "0b_bccd5e61051ab6d5315728d95806b10b", "1484007332", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("419", "0b_6958edb3f90594007d9067ec40d6b5f6", "1484007391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("420", "0b_3f0743369f84d34d6f6de22e5de05a60", "1484007451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("421", "0b_67a708b7bfece20fa839cde68d1c3f9f", "1484007512", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("422", "0b_22f09f49495d2005e0f591d1c01ee14f", "1484007571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("423", "0b_0ccd7368a1c7c2ec218f08ef6102f55e", "1484007631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("424", "0b_ae6e30c584234e8a497d34752dd9e731", "1484007691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("425", "0b_b73a9399be5c89705357f677fda69cb5", "1484007751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("426", "0b_5c246ed6c4555593f6fb5ebb3e454477", "1484007757", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/sitemap.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("427", "0b_5c246ed6c4555593f6fb5ebb3e454477", "1484007760", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("428", "0b_7976c6555993fa7f89732323c050239f", "1484007811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("429", "0b_f2bb7e63764d2d86c5fac2be0ea7caaf", "1484007871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("430", "0b_bccd5e61051ab6d5315728d95806b10b", "1484007931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("431", "0b_6958edb3f90594007d9067ec40d6b5f6", "1484007991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("432", "0b_3f0743369f84d34d6f6de22e5de05a60", "1484008052", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("433", "0b_67a708b7bfece20fa839cde68d1c3f9f", "1484008111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("434", "0b_22f09f49495d2005e0f591d1c01ee14f", "1484008171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("435", "0b_74e6bf830a743833c0603f857780338c", "1484008231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("436", "0b_26156278dbc664a964aec5e0c7394b00", "1484008291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("437", "0b_46764d198b42ac92537ad5fe74e3b94c", "1484008351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("438", "0b_732226f1ba9cc6409544ce685b664d4c", "1484008413", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("439", "0b_a9674619812ab1a75406a4ff5bfbec96", "1484008471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("440", "0b_bdf5f421c112e686b57e8be1c4466188", "1484008532", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("441", "0b_d18b719aa7763deb31f4fac4227dafda", "1484008591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("442", "0b_a59a56b17b8d85a01011ce20cd8ab896", "1484008651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("443", "0b_bef2cf7b65b548d53da06eba6a87b6e4", "1484008660", "201.194.236.242", "201.194.236.242", "/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36", "", "", "0", "MacOSX", "Chrome 54", "us", "", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("444", "0b_dbe70fe3b9fb89d4184c695ae1686253", "1484008711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("445", "0b_cd0a5d996e1db59782a58f22154c7a18", "1484008771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("446", "0b_74e6bf830a743833c0603f857780338c", "1484008831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("447", "0b_26156278dbc664a964aec5e0c7394b00", "1484008891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("448", "0b_46764d198b42ac92537ad5fe74e3b94c", "1484008951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("449", "0b_732226f1ba9cc6409544ce685b664d4c", "1484009011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("450", "0b_a9674619812ab1a75406a4ff5bfbec96", "1484009071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("451", "0b_bdf5f421c112e686b57e8be1c4466188", "1484009131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("452", "0b_d18b719aa7763deb31f4fac4227dafda", "1484009192", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("453", "0b_a59a56b17b8d85a01011ce20cd8ab896", "1484009251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("454", "0b_dbe70fe3b9fb89d4184c695ae1686253", "1484009312", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("455", "0b_74e6bf830a743833c0603f857780338c", "1484009426", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("456", "0b_cd0a5d996e1db59782a58f22154c7a18", "1484009429", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("457", "0b_26156278dbc664a964aec5e0c7394b00", "1484009492", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("458", "0b_46764d198b42ac92537ad5fe74e3b94c", "1484009572", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("459", "0b_732226f1ba9cc6409544ce685b664d4c", "1484009614", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("460", "0b_a9674619812ab1a75406a4ff5bfbec96", "1484009672", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("461", "0b_bdf5f421c112e686b57e8be1c4466188", "1484009732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("462", "0b_d18b719aa7763deb31f4fac4227dafda", "1484009794", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("463", "0b_a59a56b17b8d85a01011ce20cd8ab896", "1484009851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("464", "0b_dbe70fe3b9fb89d4184c695ae1686253", "1484009911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("465", "0b_cd0a5d996e1db59782a58f22154c7a18", "1484009971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("466", "0b_6af99caaa5d80fc5734d21915045037d", "1484010031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("467", "0b_0647fb07e416f49dd812ed2e20db2d59", "1484010092", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("468", "0b_9857b4d67f317f68148aca2cd100c371", "1484010151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("469", "0b_a87ba6258eb47940d70a0a2bdfe22f61", "1484010211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("470", "0b_aa06310a7b564d0ffca79bb362a7d253", "1484010271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("471", "0b_333db8ae30f70c5babfe8eb938f2ad98", "1484010331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("472", "0b_83d3de3493fb704e9ee14a6c1ee71763", "1484010391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("473", "0b_f749dc025a8475f9260e7e680d8da19c", "1484010451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("474", "0b_5d1f4622ea06cfc4997c76edc440a34d", "1484010512", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("475", "0b_0447df7e11b5904ce22c49f2c862c0f4", "1484010571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("476", "0b_6af99caaa5d80fc5734d21915045037d", "1484010632", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("477", "0b_0647fb07e416f49dd812ed2e20db2d59", "1484010691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("478", "0b_9857b4d67f317f68148aca2cd100c371", "1484010751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("479", "0b_a87ba6258eb47940d70a0a2bdfe22f61", "1484010811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("480", "0b_aa06310a7b564d0ffca79bb362a7d253", "1484010871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("481", "0b_333db8ae30f70c5babfe8eb938f2ad98", "1484010931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("482", "0b_83d3de3493fb704e9ee14a6c1ee71763", "1484010993", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("483", "0b_f749dc025a8475f9260e7e680d8da19c", "1484011051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("484", "0b_5d1f4622ea06cfc4997c76edc440a34d", "1484011111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("485", "0b_0447df7e11b5904ce22c49f2c862c0f4", "1484011172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("486", "0b_6af99caaa5d80fc5734d21915045037d", "1484011231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("487", "0b_0647fb07e416f49dd812ed2e20db2d59", "1484011291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("488", "0b_9857b4d67f317f68148aca2cd100c371", "1484011352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("489", "0b_a87ba6258eb47940d70a0a2bdfe22f61", "1484011411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("490", "0b_aa06310a7b564d0ffca79bb362a7d253", "1484011471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("491", "0b_333db8ae30f70c5babfe8eb938f2ad98", "1484011531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("492", "0b_83d3de3493fb704e9ee14a6c1ee71763", "1484011591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("493", "0b_f749dc025a8475f9260e7e680d8da19c", "1484011651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("494", "0b_5d1f4622ea06cfc4997c76edc440a34d", "1484011712", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("495", "0b_0447df7e11b5904ce22c49f2c862c0f4", "1484011771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("496", "0b_beaf2cef3d02453ce93f90b6bc825c8a", "1484011848", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("497", "0b_a60f94602bc5af1bc772f00f0ce6f87a", "1484011892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("498", "0b_38330c3ce71a7545c95e2cdc50c29144", "1484011952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("499", "0b_c4e92483caa4c29bccbfd168237c65ff", "1484012012", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("500", "0b_d33e56686460422034cedbf355c3e54b", "1484012078", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("501", "0b_610ae54be181ece301acc6e48631ca31", "1484012157", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("502", "0b_9c377b0f85ab2f43f40dd1aa3f313a3f", "1484012193", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("503", "0b_85b11628fd79ef5e7691f045802c2220", "1484012193", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("504", "0b_ed12d7a91565ef10f62b9a74156e1ee7", "1484012312", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("505", "0b_955a5fd793ea5b46f856707883487738", "1484012372", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("506", "0b_beaf2cef3d02453ce93f90b6bc825c8a", "1484012433", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("507", "0b_a60f94602bc5af1bc772f00f0ce6f87a", "1484012496", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("508", "0b_38330c3ce71a7545c95e2cdc50c29144", "1484012551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("509", "0b_c4e92483caa4c29bccbfd168237c65ff", "1484012611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("510", "0b_d33e56686460422034cedbf355c3e54b", "1484012671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("511", "0b_610ae54be181ece301acc6e48631ca31", "1484012733", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("512", "0b_9c377b0f85ab2f43f40dd1aa3f313a3f", "1484012791", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("513", "0b_85b11628fd79ef5e7691f045802c2220", "1484012875", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("514", "0b_ed12d7a91565ef10f62b9a74156e1ee7", "1484012911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("515", "0b_955a5fd793ea5b46f856707883487738", "1484012971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("516", "0b_beaf2cef3d02453ce93f90b6bc825c8a", "1484013031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("517", "0b_a60f94602bc5af1bc772f00f0ce6f87a", "1484013092", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("518", "0b_38330c3ce71a7545c95e2cdc50c29144", "1484013151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("519", "0b_c4e92483caa4c29bccbfd168237c65ff", "1484013211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("520", "0b_d33e56686460422034cedbf355c3e54b", "1484013280", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("521", "0b_610ae54be181ece301acc6e48631ca31", "1484013331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("522", "0b_9c377b0f85ab2f43f40dd1aa3f313a3f", "1484013393", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("523", "0b_85b11628fd79ef5e7691f045802c2220", "1484013452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("524", "0b_ed12d7a91565ef10f62b9a74156e1ee7", "1484013511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("525", "0b_955a5fd793ea5b46f856707883487738", "1484013572", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("526", "0b_f5c788b7a88295212444bbee74d971a7", "1484013631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("527", "0b_11f1c40fef32a3d5b70e72ff516158e7", "1484013691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("528", "0b_eb30788a0dea0ee270e682d2c2210caf", "1484013751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("529", "0b_f0929e2cfdb4dd04e3178625fbc489e2", "1484013812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("530", "0b_77e8a275fbeb50fd563a9bc84def8131", "1484013871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("531", "0b_6844d200d0124b288e499b06992b6e52", "1484013931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("532", "0b_a04c343414aa5e9fccd1e9b180eea575", "1484013991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("533", "0b_c66ead0710a104745975f3a0e11c414c", "1484014051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("534", "0b_e556514ebc275c59a569436eeb844a82", "1484014120", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("535", "0b_113b7e0e5f7cc5ba1a0c0cdc21ff20d3", "1484014172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("536", "0b_f5c788b7a88295212444bbee74d971a7", "1484014231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("537", "0b_11f1c40fef32a3d5b70e72ff516158e7", "1484014291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("538", "0b_eb30788a0dea0ee270e682d2c2210caf", "1484014352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("539", "0b_f0929e2cfdb4dd04e3178625fbc489e2", "1484014411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("540", "0b_77e8a275fbeb50fd563a9bc84def8131", "1484014476", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("541", "0b_6844d200d0124b288e499b06992b6e52", "1484014531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("542", "0b_a04c343414aa5e9fccd1e9b180eea575", "1484014591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("543", "0b_c66ead0710a104745975f3a0e11c414c", "1484014652", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("544", "0b_e556514ebc275c59a569436eeb844a82", "1484014711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("545", "0b_113b7e0e5f7cc5ba1a0c0cdc21ff20d3", "1484014772", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("546", "0b_f5c788b7a88295212444bbee74d971a7", "1484014831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("547", "0b_11f1c40fef32a3d5b70e72ff516158e7", "1484014892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("548", "0b_eb30788a0dea0ee270e682d2c2210caf", "1484014951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("549", "0b_f0929e2cfdb4dd04e3178625fbc489e2", "1484015016", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("550", "0b_77e8a275fbeb50fd563a9bc84def8131", "1484015071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("551", "0b_6844d200d0124b288e499b06992b6e52", "1484015131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("552", "0b_a04c343414aa5e9fccd1e9b180eea575", "1484015194", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("553", "0b_c66ead0710a104745975f3a0e11c414c", "1484015252", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("554", "0b_e556514ebc275c59a569436eeb844a82", "1484015311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("555", "0b_113b7e0e5f7cc5ba1a0c0cdc21ff20d3", "1484015371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("556", "0b_5feec70406fc35f8a1a1f5995fe94fcc", "1484015431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("557", "0b_0accdcd226ebf4f017619f905e6cdeae", "1484015492", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("558", "0b_939ae85b2f281fe49def98c55cfe1912", "1484015532", "180.76.15.30", "baiduspider-180-76-15-30.crawl.baidu.com", "/REM2.html", "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)", "", "", "0", "", "", "us", "", "", "Baiduspider", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("559", "0b_ff8a2a804be527db4f243292d5e011cc", "1484015568", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("560", "0b_bf89bd8b02c6a62b2447de764fee5b2a", "1484015613", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("561", "0b_22bb7bfcfd306ee7e81ce2ee3eb41469", "1484015671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("562", "0b_908dd2ecdd169ba564a7b3f12a95061e", "1484015739", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("563", "0b_366eab36420d6b4d8935788064d248e7", "1484015792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("564", "0b_8b21edd2c30559525772a8bcbf371eab", "1484015851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("565", "0b_a7de59d3147a6638f1eea363cbff0181", "1484015911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("566", "0b_3e8d6f7284496063377b56965e08e9fb", "1484015972", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("567", "0b_5feec70406fc35f8a1a1f5995fe94fcc", "1484016031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("568", "0b_0accdcd226ebf4f017619f905e6cdeae", "1484016092", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("569", "0b_ff8a2a804be527db4f243292d5e011cc", "1484016153", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("570", "0b_bf89bd8b02c6a62b2447de764fee5b2a", "1484016211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("571", "0b_22bb7bfcfd306ee7e81ce2ee3eb41469", "1484016271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("572", "0b_908dd2ecdd169ba564a7b3f12a95061e", "1484016331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("573", "0b_366eab36420d6b4d8935788064d248e7", "1484016392", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("574", "0b_8b21edd2c30559525772a8bcbf371eab", "1484016451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("575", "0b_a7de59d3147a6638f1eea363cbff0181", "1484016511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("576", "0b_3e8d6f7284496063377b56965e08e9fb", "1484016579", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("577", "0b_5feec70406fc35f8a1a1f5995fe94fcc", "1484016631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("578", "0b_0accdcd226ebf4f017619f905e6cdeae", "1484016693", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("579", "0b_ff8a2a804be527db4f243292d5e011cc", "1484016752", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("580", "0b_bf89bd8b02c6a62b2447de764fee5b2a", "1484016811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("581", "0b_22bb7bfcfd306ee7e81ce2ee3eb41469", "1484016871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("582", "0b_908dd2ecdd169ba564a7b3f12a95061e", "1484016932", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("583", "0b_366eab36420d6b4d8935788064d248e7", "1484016993", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("584", "0b_8b21edd2c30559525772a8bcbf371eab", "1484017051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("585", "0b_a7de59d3147a6638f1eea363cbff0181", "1484017112", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("586", "0b_3e8d6f7284496063377b56965e08e9fb", "1484017171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("587", "0b_2daf47a9bd47af376a971e8695a90a99", "1484017231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("588", "0b_aa14f3f1cf86337de1ac7765b6073fdb", "1484017299", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("589", "0b_67c47e745bb17a236d916f8413bf5f4d", "1484017491", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("590", "0b_aa14f3f1cf86337de1ac7765b6073fdb", "1484017571", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("591", "0b_86ad3f3a8d249bdb458ac3f2ec84b068", "1484017592", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("592", "0b_fa08d69c81d79b54ee1a87547e945930", "1484017657", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("593", "0b_9f270ced380d6d973c6103d018f89364", "1484017724", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("594", "0b_9b5d558201facab07cbc25d69cd491e7", "1484017772", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("595", "0b_2daf47a9bd47af376a971e8695a90a99", "1484017831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("596", "0b_aa14f3f1cf86337de1ac7765b6073fdb", "1484017891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("597", "0b_a4e6c0084be7b30cfa74ca9274b28e50", "1484017951", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("598", "0b_0d5e325b98b6dbd7cbecef13df889ec7", "1484018011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("599", "0b_67c47e745bb17a236d916f8413bf5f4d", "1484018071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("600", "0b_4ce1e2c46b1d148676be3b84efa72548", "1484018133", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("601", "0b_86ad3f3a8d249bdb458ac3f2ec84b068", "1484018192", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("602", "0b_fa08d69c81d79b54ee1a87547e945930", "1484018252", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("603", "0b_9f270ced380d6d973c6103d018f89364", "1484018313", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("604", "0b_9b5d558201facab07cbc25d69cd491e7", "1484018371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("605", "0b_2daf47a9bd47af376a971e8695a90a99", "1484018432", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("606", "0b_aa14f3f1cf86337de1ac7765b6073fdb", "1484018492", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("607", "0b_a4e6c0084be7b30cfa74ca9274b28e50", "1484018553", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("608", "0b_0d5e325b98b6dbd7cbecef13df889ec7", "1484018614", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("609", "0b_67c47e745bb17a236d916f8413bf5f4d", "1484018671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("610", "0b_4ce1e2c46b1d148676be3b84efa72548", "1484018760", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("611", "0b_a4e6c0084be7b30cfa74ca9274b28e50", "1484018777", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("612", "0b_86ad3f3a8d249bdb458ac3f2ec84b068", "1484018805", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("613", "0b_fa08d69c81d79b54ee1a87547e945930", "1484018851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("614", "0b_9f270ced380d6d973c6103d018f89364", "1484018912", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("615", "0b_9b5d558201facab07cbc25d69cd491e7", "1484018979", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("616", "0b_cbe0a410b8b16d25acc4a10d57b2b0bd", "1484019031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("617", "0b_6b117700673020dcb908221fb0014fa0", "1484019105", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("618", "0b_60633a939d1ad256964a167055daa61e", "1484019151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("619", "0b_a80353c97e79f6a9067568c3a46aa7b5", "1484019212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("620", "0b_c2f79e5aa2b3c6c77da23dfe6023c51a", "1484019295", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("621", "0b_ac696946c5faf2db97500711bde685b6", "1484019336", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("622", "0b_deb84a859dd2fff0e163852a77988dd4", "1484019391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("623", "0b_f4e361478bc0c2c61646ffed4c59085a", "1484019433", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("624", "0b_dd332e09d8eb43caf2552f2c6bc3dfce", "1484019451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("625", "0b_867708621c3f8aa718733412d0995372", "1484019571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("626", "0b_60633a939d1ad256964a167055daa61e", "1484019684", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("627", "0b_6b117700673020dcb908221fb0014fa0", "1484019691", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("628", "0b_a80353c97e79f6a9067568c3a46aa7b5", "1484019812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("629", "0b_c2f79e5aa2b3c6c77da23dfe6023c51a", "1484019872", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("630", "0b_ac696946c5faf2db97500711bde685b6", "1484019931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("631", "0b_deb84a859dd2fff0e163852a77988dd4", "1484019991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("632", "0b_dd332e09d8eb43caf2552f2c6bc3dfce", "1484020056", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("633", "0b_f4e361478bc0c2c61646ffed4c59085a", "1484020111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("634", "0b_867708621c3f8aa718733412d0995372", "1484020171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("635", "0b_cbe0a410b8b16d25acc4a10d57b2b0bd", "1484020231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("636", "0b_6b117700673020dcb908221fb0014fa0", "1484020311", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("637", "0b_60633a939d1ad256964a167055daa61e", "1484020351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("638", "0b_a80353c97e79f6a9067568c3a46aa7b5", "1484020413", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("639", "0b_c2f79e5aa2b3c6c77da23dfe6023c51a", "1484020471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("640", "0b_ac696946c5faf2db97500711bde685b6", "1484020531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("641", "0b_deb84a859dd2fff0e163852a77988dd4", "1484020592", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("642", "0b_dd332e09d8eb43caf2552f2c6bc3dfce", "1484020652", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("643", "0b_f4e361478bc0c2c61646ffed4c59085a", "1484020711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("644", "0b_867708621c3f8aa718733412d0995372", "1484020771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("645", "0b_cf9657b1510494e546fdc6453ffd519e", "1484020838", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("646", "0b_d5b8479e6b41eb330f3a1a5fe7215926", "1484020907", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("647", "0b_ef29cfe1ca16e5dea932922da9118d57", "1484020963", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("648", "0b_ff87ec4e4fc9c39d78784faf43048b04", "1484021011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("649", "0b_815f61152565d78018aec75d298e77e8", "1484021072", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("650", "0b_f8ec2ad969521b6df42f3e13fce50026", "1484021131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("651", "0b_6b82eebe876543a5d12720f4404b3a56", "1484021191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("652", "0b_160d85b69399dab823bb061574250374", "1484021253", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("653", "0b_c43575d1b6a8325033f407ba02ec5ec4", "1484021313", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("654", "0b_268b4947446a1b92d35f534e83404995", "1484021355", "178.154.189.38", "spider-178-154-189-38.yandex.com", "/", "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)", "", "", "0", "", "", "ru", "", "", "YandexBot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("655", "0b_f8ec2ad969521b6df42f3e13fce50026", "1484021441", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("656", "0b_cf9657b1510494e546fdc6453ffd519e", "1484021441", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("657", "0b_d5b8479e6b41eb330f3a1a5fe7215926", "1484021566", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("658", "0b_ef29cfe1ca16e5dea932922da9118d57", "1484021566", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("659", "0b_6b82eebe876543a5d12720f4404b3a56", "1484021678", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("660", "0b_815f61152565d78018aec75d298e77e8", "1484021678", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("661", "0b_f8ec2ad969521b6df42f3e13fce50026", "1484021733", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("662", "0b_160d85b69399dab823bb061574250374", "1484021852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("663", "0b_c43575d1b6a8325033f407ba02ec5ec4", "1484021933", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("664", "0b_ef29cfe1ca16e5dea932922da9118d57", "1484022182", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("665", "0b_815f61152565d78018aec75d298e77e8", "1484022290", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("666", "0b_cf51f333ceed6c9d50672e0260e47f09", "1484022290", "66.249.69.223", "crawl-66-249-69-223.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("667", "0b_0bdae5db2a206f8db8ee010cb35202a2", "1484022291", "66.249.69.199", "crawl-66-249-69-199.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("668", "0b_160d85b69399dab823bb061574250374", "1484022374", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("669", "0b_6b82eebe876543a5d12720f4404b3a56", "1484022391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("670", "0b_ff87ec4e4fc9c39d78784faf43048b04", "1484022542", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("671", "0b_c43575d1b6a8325033f407ba02ec5ec4", "1484022542", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("672", "0b_ac1ccdab0c19188de02603c47113e3e9", "1484022572", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("673", "0b_a87b07b29ca3409febfae76177eb097b", "1484022642", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("674", "0b_bb49bef30a88d9a6975077e9129fc264", "1484022696", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("675", "0b_181b7c95250790bf3d68f625dbe0a07d", "1484022752", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("676", "0b_067ec92eca732c020df590c664ee3583", "1484022813", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("677", "0b_da73b95187e4b8e459843f4fe0dbfb8d", "1484022873", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("678", "0b_3088756b17eff18aa362e5067c5fd2f3", "1484022932", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("679", "0b_227c6ff3d8e1055e03645f4f42582216", "1484022991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("680", "0b_0535eadc30a069a9d656e1fedc91aaf4", "1484023052", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("681", "0b_bec855d79a8c99d0f271a98db5e306f8", "1484023111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("682", "0b_f8f1b3127eb0fcd1b3caf13d5648a95b", "1484023172", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("683", "0b_a87b07b29ca3409febfae76177eb097b", "1484023232", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("684", "0b_bb49bef30a88d9a6975077e9129fc264", "1484023291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("685", "0b_181b7c95250790bf3d68f625dbe0a07d", "1484023382", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("686", "0b_da73b95187e4b8e459843f4fe0dbfb8d", "1484023401", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("687", "0b_067ec92eca732c020df590c664ee3583", "1484023444", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("688", "0b_3088756b17eff18aa362e5067c5fd2f3", "1484023453", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("689", "0b_227c6ff3d8e1055e03645f4f42582216", "1484023620", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("690", "0b_0535eadc30a069a9d656e1fedc91aaf4", "1484023705", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("691", "0b_f8f1b3127eb0fcd1b3caf13d5648a95b", "1484023705", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("692", "0b_bec855d79a8c99d0f271a98db5e306f8", "1484023712", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("693", "0b_bb49bef30a88d9a6975077e9129fc264", "1484023814", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("694", "0b_a87b07b29ca3409febfae76177eb097b", "1484023832", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("695", "0b_181b7c95250790bf3d68f625dbe0a07d", "1484023953", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("696", "0b_067ec92eca732c020df590c664ee3583", "1484024012", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("697", "0b_da73b95187e4b8e459843f4fe0dbfb8d", "1484024071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("698", "0b_3088756b17eff18aa362e5067c5fd2f3", "1484024131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("699", "0b_227c6ff3d8e1055e03645f4f42582216", "1484024193", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("700", "0b_0535eadc30a069a9d656e1fedc91aaf4", "1484024251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("701", "0b_bec855d79a8c99d0f271a98db5e306f8", "1484024311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("702", "0b_f8f1b3127eb0fcd1b3caf13d5648a95b", "1484024372", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("703", "0b_47546160362db1e511775a1c0072933c", "1484024431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("704", "0b_4e9468606f7b616806ad669b272cdf3a", "1484024526", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("705", "0b_5fc6221f565f132fd0a686225a81a20f", "1484024594", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("706", "0b_eca2e861bc18998a447a2ed3fa9ceb9e", "1484024684", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("707", "0b_c96d2a63e5b05605c0d5f05e6ec58dcf", "1484024731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("708", "0b_4e9468606f7b616806ad669b272cdf3a", "1484024792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("709", "0b_2a3cdcd99d85f1f7971f70ce1edfb845", "1484024851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("710", "0b_692213e330f6443e127ffb3123ce8e53", "1484024911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("711", "0b_2cfad621eb96e19702584856bed1d8dc", "1484025023", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("712", "0b_c96d2a63e5b05605c0d5f05e6ec58dcf", "1484025023", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("713", "0b_fe3612d0e05af717702be2546a996abf", "1484025123", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("714", "0b_ea2f5bdd14c5496421c8780a3adeaae5", "1484025152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("715", "0b_5fc6221f565f132fd0a686225a81a20f", "1484025211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("716", "0b_eca2e861bc18998a447a2ed3fa9ceb9e", "1484025271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("717", "0b_c96d2a63e5b05605c0d5f05e6ec58dcf", "1484025331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("718", "0b_4e9468606f7b616806ad669b272cdf3a", "1484025392", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("719", "0b_2a3cdcd99d85f1f7971f70ce1edfb845", "1484025453", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("720", "0b_692213e330f6443e127ffb3123ce8e53", "1484025515", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("721", "0b_2cfad621eb96e19702584856bed1d8dc", "1484025571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("722", "0b_47546160362db1e511775a1c0072933c", "1484025631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("723", "0b_fe3612d0e05af717702be2546a996abf", "1484025693", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("724", "0b_ea2f5bdd14c5496421c8780a3adeaae5", "1484025763", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("725", "0b_5fc6221f565f132fd0a686225a81a20f", "1484025811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("726", "0b_eca2e861bc18998a447a2ed3fa9ceb9e", "1484025871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("727", "0b_c96d2a63e5b05605c0d5f05e6ec58dcf", "1484025932", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("728", "0b_4e9468606f7b616806ad669b272cdf3a", "1484025992", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("729", "0b_2a3cdcd99d85f1f7971f70ce1edfb845", "1484026051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("730", "0b_692213e330f6443e127ffb3123ce8e53", "1484026111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("731", "0b_2cfad621eb96e19702584856bed1d8dc", "1484026174", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("732", "0b_5d98be4867b4e4a70a422f1c8d45711b", "1484026234", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("733", "0b_d4c0024950c9b9eda4b8d6d889332b8a", "1484026292", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("734", "0b_61eb8ce4a3d52ee07d12d0728d864f5d", "1484026351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("735", "0b_aa2f1ef6808a7fa538c8bc2b4598f4ed", "1484026426", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("736", "0b_1c6a54f897e5e51e340c0ee3ba883223", "1484026471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("737", "0b_2b8a48f807503b623bbe4ad440fc1d35", "1484026531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("738", "0b_855b633b4e3668d177c75363d6c1ae9e", "1484026592", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("739", "0b_1b57e968f47aa4ea043c36a0153903a6", "1484026652", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("740", "0b_afea358ad00bffc13befe39dba79bc26", "1484026711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("741", "0b_b02f7c5b43d430d5e188488f57396f83", "1484026771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("742", "0b_5d98be4867b4e4a70a422f1c8d45711b", "1484026831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("743", "0b_d4c0024950c9b9eda4b8d6d889332b8a", "1484026892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("744", "0b_61eb8ce4a3d52ee07d12d0728d864f5d", "1484026952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("745", "0b_aa2f1ef6808a7fa538c8bc2b4598f4ed", "1484027011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("746", "0b_1c6a54f897e5e51e340c0ee3ba883223", "1484027071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("747", "0b_2b8a48f807503b623bbe4ad440fc1d35", "1484027131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("748", "0b_855b633b4e3668d177c75363d6c1ae9e", "1484027198", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("749", "0b_1b57e968f47aa4ea043c36a0153903a6", "1484027251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("750", "0b_afea358ad00bffc13befe39dba79bc26", "1484027313", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("751", "0b_b02f7c5b43d430d5e188488f57396f83", "1484027371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("752", "0b_5d98be4867b4e4a70a422f1c8d45711b", "1484027431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("753", "0b_d4c0024950c9b9eda4b8d6d889332b8a", "1484027491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("754", "0b_61eb8ce4a3d52ee07d12d0728d864f5d", "1484027552", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("755", "0b_aa2f1ef6808a7fa538c8bc2b4598f4ed", "1484027611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("756", "0b_1c6a54f897e5e51e340c0ee3ba883223", "1484027715", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("757", "0b_1b57e968f47aa4ea043c36a0153903a6", "1484027737", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("758", "0b_2b8a48f807503b623bbe4ad440fc1d35", "1484027737", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("759", "0b_855b633b4e3668d177c75363d6c1ae9e", "1484027794", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("760", "0b_afea358ad00bffc13befe39dba79bc26", "1484027916", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("761", "0b_b02f7c5b43d430d5e188488f57396f83", "1484027981", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("762", "0b_3295846e9f743db129eba1b6830781b9", "1484028032", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("763", "0b_f1859eb8f183ec28a3103e8b07e3a6e1", "1484028096", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("764", "0b_42bbda9635d4f1a993cca725423b43fa", "1484028190", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("765", "0b_3f9c2f104f1bf3f6ca5e01b6beaf87c0", "1484028211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("766", "0b_1e11b57506588d44aa82b28f45a58c4a", "1484028271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("767", "0b_4837c8b05d447e083e7078f6f363a404", "1484028333", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("768", "0b_6ae3fa5d11870de7a49d0e569263f9e5", "1484028391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("769", "0b_fb95435b3c56e6050d2cf795a2c9346e", "1484028451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("770", "0b_a87606bf6a5971ffeb68bd21e961fe2e", "1484028511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("771", "0b_42bbda9635d4f1a993cca725423b43fa", "1484028571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("772", "0b_3295846e9f743db129eba1b6830781b9", "1484028631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("773", "0b_f1859eb8f183ec28a3103e8b07e3a6e1", "1484028692", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("774", "0b_72f1581556fb817935338a8c945f1f61", "1484028751", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("775", "0b_3f9c2f104f1bf3f6ca5e01b6beaf87c0", "1484028811", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("776", "0b_1e11b57506588d44aa82b28f45a58c4a", "1484028871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("777", "0b_4837c8b05d447e083e7078f6f363a404", "1484028931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("778", "0b_6ae3fa5d11870de7a49d0e569263f9e5", "1484028994", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("779", "0b_fb95435b3c56e6050d2cf795a2c9346e", "1484029052", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("780", "0b_a87606bf6a5971ffeb68bd21e961fe2e", "1484029113", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("781", "0b_42bbda9635d4f1a993cca725423b43fa", "1484029173", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("782", "0b_3295846e9f743db129eba1b6830781b9", "1484029232", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("783", "0b_f1859eb8f183ec28a3103e8b07e3a6e1", "1484029291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("784", "0b_72f1581556fb817935338a8c945f1f61", "1484029351", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("785", "0b_3f9c2f104f1bf3f6ca5e01b6beaf87c0", "1484029411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("786", "0b_1e11b57506588d44aa82b28f45a58c4a", "1484029471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("787", "0b_4837c8b05d447e083e7078f6f363a404", "1484029531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("788", "0b_6ae3fa5d11870de7a49d0e569263f9e5", "1484029593", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("789", "0b_fb95435b3c56e6050d2cf795a2c9346e", "1484029651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("790", "0b_a87606bf6a5971ffeb68bd21e961fe2e", "1484029711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("791", "0b_42bbda9635d4f1a993cca725423b43fa", "1484029772", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("792", "0b_b03f5f7efa6ddd622dd0cb63e2579002", "1484029834", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("793", "0b_8bc4db178f4a8d5fc722b43539a1d72d", "1484029891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("794", "0b_5468d9acd415e61478dc728f4d979adc", "1484029952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("795", "0b_2f29b7dce5bdb597d9eb499f00f8240a", "1484030013", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("796", "0b_3d12cd8d342c12c332c5e326712b4765", "1484030071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("797", "0b_ecf8933b554ee68c1ba100d44533e73d", "1484030132", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("798", "0b_fc89f2ad1b2889139847f51ba61fc515", "1484030200", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("799", "0b_e0dd900534377da553e1a3005308daa1", "1484030251", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("800", "0b_f7ba77c28641a60774004efa87ba60ba", "1484030313", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("801", "0b_c0d47055d1c733f71d24ed6086a39c9a", "1484030377", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("802", "0b_b03f5f7efa6ddd622dd0cb63e2579002", "1484030456", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("803", "0b_fc89f2ad1b2889139847f51ba61fc515", "1484030532", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("804", "0b_5468d9acd415e61478dc728f4d979adc", "1484030556", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("805", "0b_2f29b7dce5bdb597d9eb499f00f8240a", "1484030611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("806", "0b_3d12cd8d342c12c332c5e326712b4765", "1484030672", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("807", "0b_ecf8933b554ee68c1ba100d44533e73d", "1484030736", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("808", "0b_fc89f2ad1b2889139847f51ba61fc515", "1484030792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("809", "0b_e0dd900534377da553e1a3005308daa1", "1484030852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("810", "0b_f7ba77c28641a60774004efa87ba60ba", "1484030912", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("811", "0b_c0d47055d1c733f71d24ed6086a39c9a", "1484030971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("812", "0b_b03f5f7efa6ddd622dd0cb63e2579002", "1484031032", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("813", "0b_8bc4db178f4a8d5fc722b43539a1d72d", "1484031093", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("814", "0b_5468d9acd415e61478dc728f4d979adc", "1484031158", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("815", "0b_2f29b7dce5bdb597d9eb499f00f8240a", "1484031212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("816", "0b_3d12cd8d342c12c332c5e326712b4765", "1484031272", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("817", "0b_ecf8933b554ee68c1ba100d44533e73d", "1484031370", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("818", "0b_c0d47055d1c733f71d24ed6086a39c9a", "1484031382", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("819", "0b_f7ba77c28641a60774004efa87ba60ba", "1484031489", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("820", "0b_fc89f2ad1b2889139847f51ba61fc515", "1484031489", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("821", "0b_c0d47055d1c733f71d24ed6086a39c9a", "1484031573", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("822", "0b_ba1a3f87501863b957437a435180fe0c", "1484031633", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("823", "0b_4878b9ca5b1b64628db1fecf163e31ba", "1484031694", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("824", "0b_58a0909fd476ee8f4721784e6daef2c9", "1484031757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("825", "0b_3cdd593a83541ea88d15ca18d8b43ddb", "1484031812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("826", "0b_2b40c9d998a8dada1add5891875baf78", "1484031871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("827", "0b_41efab081c18b1b05f54730800885391", "1484031931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("828", "0b_2105e1a704483b7038c5188fd1f362e5", "1484031991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("829", "0b_3cdd593a83541ea88d15ca18d8b43ddb", "1484032031", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("830", "0b_947b65fde49777a12b93bd1eba489fa0", "1484032057", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("831", "0b_c8ae06b6e720f899821b73dd97437216", "1484032112", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("832", "0b_17c4800d42f08feb6f7e664bfadb5561", "1484032175", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("833", "0b_947b65fde49777a12b93bd1eba489fa0", "1484032275", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("834", "0b_4878b9ca5b1b64628db1fecf163e31ba", "1484032291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("835", "0b_58a0909fd476ee8f4721784e6daef2c9", "1484032353", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("836", "0b_3cdd593a83541ea88d15ca18d8b43ddb", "1484032411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("837", "0b_2b40c9d998a8dada1add5891875baf78", "1484032471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("838", "0b_41efab081c18b1b05f54730800885391", "1484032531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("839", "0b_7832ea9f9adba8a745e1ff25fc1a920f", "1484032570", "51.255.83.13", "ns3047017.ip-51-255-83.eu", "/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0", "", "", "0", "Win10 x64", "Firefox 49", "eu", "", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("840", "0b_2105e1a704483b7038c5188fd1f362e5", "1484032591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("841", "0b_947b65fde49777a12b93bd1eba489fa0", "1484032651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("842", "0b_c8ae06b6e720f899821b73dd97437216", "1484032712", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("843", "0b_17c4800d42f08feb6f7e664bfadb5561", "1484032771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("844", "0b_ba1a3f87501863b957437a435180fe0c", "1484032831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("845", "0b_4878b9ca5b1b64628db1fecf163e31ba", "1484032891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("846", "0b_58a0909fd476ee8f4721784e6daef2c9", "1484032953", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("847", "0b_3cdd593a83541ea88d15ca18d8b43ddb", "1484033011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("848", "0b_2b40c9d998a8dada1add5891875baf78", "1484033071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("849", "0b_41efab081c18b1b05f54730800885391", "1484033131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("850", "0b_2105e1a704483b7038c5188fd1f362e5", "1484033191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("851", "0b_947b65fde49777a12b93bd1eba489fa0", "1484033253", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("852", "0b_c8ae06b6e720f899821b73dd97437216", "1484033311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("853", "0b_17c4800d42f08feb6f7e664bfadb5561", "1484033371", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("854", "0b_ea869f58445dde88697479137b001535", "1484033431", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("855", "0b_2ead80a1bf61ebd412ea6fa0c0180d76", "1484033492", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("856", "0b_76354cb43d07bb034df234b9d096496d", "1484033551", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("857", "0b_9786611bbd9f4d33ccd699988de20f47", "1484033613", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("858", "0b_f88f45e3083fdc6b4edd0bd991e3822d", "1484033671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("859", "0b_e003d7c2dcfca608bc527f1b2bed7da9", "1484033732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("860", "0b_d5f61d484ac781f8c0b28ec3936d2dad", "1484033792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("861", "0b_fe9dc2133048774d75650607e84d3deb", "1484033852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("862", "0b_1ab2a22807481e53d40942297697274e", "1484033911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("863", "0b_106ecc9561523a5dd206c40af7727221", "1484033976", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("864", "0b_ea869f58445dde88697479137b001535", "1484034032", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("865", "0b_2ead80a1bf61ebd412ea6fa0c0180d76", "1484034091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("866", "0b_76354cb43d07bb034df234b9d096496d", "1484034151", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("867", "0b_9786611bbd9f4d33ccd699988de20f47", "1484034211", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("868", "0b_f88f45e3083fdc6b4edd0bd991e3822d", "1484034272", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("869", "0b_e003d7c2dcfca608bc527f1b2bed7da9", "1484034331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("870", "0b_d5f61d484ac781f8c0b28ec3936d2dad", "1484034391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("871", "0b_fe9dc2133048774d75650607e84d3deb", "1484034451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("872", "0b_1ab2a22807481e53d40942297697274e", "1484034511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("873", "0b_106ecc9561523a5dd206c40af7727221", "1484034571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("874", "0b_ea869f58445dde88697479137b001535", "1484034631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("875", "0b_2ead80a1bf61ebd412ea6fa0c0180d76", "1484034692", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("876", "0b_76354cb43d07bb034df234b9d096496d", "1484034757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("877", "0b_9786611bbd9f4d33ccd699988de20f47", "1484034812", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("878", "0b_f88f45e3083fdc6b4edd0bd991e3822d", "1484034871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("879", "0b_e003d7c2dcfca608bc527f1b2bed7da9", "1484034932", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("880", "0b_d5f61d484ac781f8c0b28ec3936d2dad", "1484034993", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("881", "0b_fe9dc2133048774d75650607e84d3deb", "1484035051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("882", "0b_1ab2a22807481e53d40942297697274e", "1484035111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("883", "0b_106ecc9561523a5dd206c40af7727221", "1484035171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("884", "0b_79ae8bd5af78fc1eb2b3a05aa192e3b5", "1484035241", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("885", "0b_72fec72ec08b2435c8e2c2dc317a55e0", "1484035253", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("886", "0b_9c072465bfc8ed66a43aa5c9e669dc74", "1484035292", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("887", "0b_c2cdc3ea25ea562718d5c70acd044efb", "1484035352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("888", "0b_653f7080fda90e197ed6ebdb14fc5757", "1484035411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("889", "0b_aae0c20e62f4c17943c962556eaa8a9b", "1484035471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("890", "0b_d5233c6027e15af748b718b8dc5a7fcb", "1484035531", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("891", "0b_79ae8bd5af78fc1eb2b3a05aa192e3b5", "1484035592", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("892", "0b_d4ad7755491ad9087e9d2a6b396cb133", "1484035657", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("893", "0b_ef7f3fc62931e62e8109ea24e7f280af", "1484035657", "66.249.69.194", "crawl-66-249-69-194.googlebot.com", "/producto/dg466/www.paradox.com", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("894", "0b_c747967cbb977cc163cc1a0fb16ce64f", "1484035711", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("895", "0b_019e5699b2ee1a1a3bfecdac92b77db7", "1484035771", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("896", "0b_72fec72ec08b2435c8e2c2dc317a55e0", "1484035831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("897", "0b_9c072465bfc8ed66a43aa5c9e669dc74", "1484035891", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("898", "0b_c2cdc3ea25ea562718d5c70acd044efb", "1484035952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("899", "0b_653f7080fda90e197ed6ebdb14fc5757", "1484036011", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("900", "0b_aae0c20e62f4c17943c962556eaa8a9b", "1484036071", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("901", "0b_d5233c6027e15af748b718b8dc5a7fcb", "1484036132", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("902", "0b_79ae8bd5af78fc1eb2b3a05aa192e3b5", "1484036191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("903", "0b_d4ad7755491ad9087e9d2a6b396cb133", "1484036253", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("904", "0b_c747967cbb977cc163cc1a0fb16ce64f", "1484036311", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("905", "0b_019e5699b2ee1a1a3bfecdac92b77db7", "1484036377", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("906", "0b_72fec72ec08b2435c8e2c2dc317a55e0", "1484036432", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("907", "0b_9c072465bfc8ed66a43aa5c9e669dc74", "1484036491", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("908", "0b_c2cdc3ea25ea562718d5c70acd044efb", "1484036552", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("909", "0b_653f7080fda90e197ed6ebdb14fc5757", "1484036611", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("910", "0b_aae0c20e62f4c17943c962556eaa8a9b", "1484036671", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("911", "0b_d5233c6027e15af748b718b8dc5a7fcb", "1484036731", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("912", "0b_79ae8bd5af78fc1eb2b3a05aa192e3b5", "1484036792", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("913", "0b_d4ad7755491ad9087e9d2a6b396cb133", "1484036852", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("914", "0b_c747967cbb977cc163cc1a0fb16ce64f", "1484036913", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("915", "0b_019e5699b2ee1a1a3bfecdac92b77db7", "1484036971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("916", "0b_d4f4392dc2b7ea611b26f70e79f68864", "1484037031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("917", "0b_a5ec128afe4a2707095e936636767dff", "1484037092", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("918", "0b_8e647c960f6ac62b1f53385c535baeda", "1484037152", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("919", "0b_9546725a7fed358b789ac8a5732adfeb", "1484037213", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("920", "0b_d61fbd7aadf010ca5e22373f0ba72a40", "1484037271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("921", "0b_3ad56a912e0ebcc01321b6b986f4c17c", "1484037331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("922", "0b_0b662b9740901d9b13c22ba6dbcc1909", "1484037391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("923", "0b_e91183c791fab8c3e6c6a3aea7f8de5e", "1484037451", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("924", "0b_1c5e35ff8696204686a312dbac188b3f", "1484037511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("925", "0b_29cd1c4ce937a59c99b099686fc6439a", "1484037573", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("926", "0b_d4f4392dc2b7ea611b26f70e79f68864", "1484037631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("927", "0b_a5ec128afe4a2707095e936636767dff", "1484037693", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("928", "0b_8e647c960f6ac62b1f53385c535baeda", "1484037754", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("929", "0b_9546725a7fed358b789ac8a5732adfeb", "1484037821", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("930", "0b_d61fbd7aadf010ca5e22373f0ba72a40", "1484037871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("931", "0b_3ad56a912e0ebcc01321b6b986f4c17c", "1484037931", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("932", "0b_0b662b9740901d9b13c22ba6dbcc1909", "1484037991", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("933", "0b_e91183c791fab8c3e6c6a3aea7f8de5e", "1484038051", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("934", "0b_1c5e35ff8696204686a312dbac188b3f", "1484038111", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("935", "0b_29cd1c4ce937a59c99b099686fc6439a", "1484038171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("936", "0b_d4f4392dc2b7ea611b26f70e79f68864", "1484038232", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("937", "0b_a5ec128afe4a2707095e936636767dff", "1484038291", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("938", "0b_8e647c960f6ac62b1f53385c535baeda", "1484038358", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("939", "0b_9546725a7fed358b789ac8a5732adfeb", "1484038412", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("940", "0b_d61fbd7aadf010ca5e22373f0ba72a40", "1484038471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("941", "0b_3ad56a912e0ebcc01321b6b986f4c17c", "1484038532", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("942", "0b_427fb5c95eda26cffd6748f5118d08e6", "1484039374", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("943", "0b_725709bc5100508a3d345263c5813749", "1484039374", "66.249.66.175", "crawl-66-249-66-175.googlebot.com", "/post_3.html", "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "Android", "", "", "", "", "Googlebot-Mobile", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("944", "0b_4c712147d84a9b04a58dff4d48b16c0f", "1484039483", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("945", "0b_6e157456accd7234f8744a278f1a53d2", "1484039483", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("946", "0b_fb5ce3e2a66f88d0bc96a54403db3e10", "1484039799", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("947", "0b_9be4a4ba16ea8e0f090a3b16844a6a28", "1484039851", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("948", "0b_2e2fc5cc93fe8a26dedd20880b704cfc", "1484039911", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("949", "0b_427fb5c95eda26cffd6748f5118d08e6", "1484039971", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("950", "0b_6e157456accd7234f8744a278f1a53d2", "1484040031", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("951", "0b_d24fb4681a21dc446e6ccc852793d251", "1484040091", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("952", "0b_8fc078bcbdd0ea157648d0adc5349fd6", "1484040156", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("953", "0b_8b406a5b2464ce6883f530c1d1949cf7", "1484040212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("954", "0b_cbda6504cf4a3cd76bbb44cc7c1539b0", "1484040271", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("955", "0b_4c712147d84a9b04a58dff4d48b16c0f", "1484040332", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("956", "0b_fb5ce3e2a66f88d0bc96a54403db3e10", "1484040391", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("957", "0b_9be4a4ba16ea8e0f090a3b16844a6a28", "1484040452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("958", "0b_2e2fc5cc93fe8a26dedd20880b704cfc", "1484040512", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("959", "0b_427fb5c95eda26cffd6748f5118d08e6", "1484040573", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("960", "0b_ac34c62ef21a72a3a85f67c45aeb9f20", "1484040667", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("961", "0b_38e3a8bd31c1721acdb7b31d3ad2bbe2", "1484040756", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("962", "0b_1603bd024c3c3d1745562ddf4b56ed2d", "1484040813", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("963", "0b_7ec42a5ebad58fecdb13c4d6a705ab63", "1484040871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("964", "0b_13de081ac89b66f611732e401cd6a676", "1484040943", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("965", "0b_9a7ae7e3e4b8f0b783920c7772ac5345", "1484041041", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("966", "0b_ac34c62ef21a72a3a85f67c45aeb9f20", "1484041241", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("967", "0b_34091464dbbc0173e3033135fa544bc8", "1484041294", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("968", "0b_38e3a8bd31c1721acdb7b31d3ad2bbe2", "1484041352", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("969", "0b_1603bd024c3c3d1745562ddf4b56ed2d", "1484041411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("970", "0b_7ec42a5ebad58fecdb13c4d6a705ab63", "1484041472", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("971", "0b_13de081ac89b66f611732e401cd6a676", "1484041533", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("972", "0b_a03521b8a2fd41ba567630334ce07b22", "1484041591", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("973", "0b_5871f80acdee913b350325e45a46b39c", "1484041651", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("974", "0b_9a7ae7e3e4b8f0b783920c7772ac5345", "1484041712", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("975", "0b_1e2259bdf881b43c734293fbee723b2d", "1484041772", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("976", "0b_ac34c62ef21a72a3a85f67c45aeb9f20", "1484041831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("977", "0b_34091464dbbc0173e3033135fa544bc8", "1484041892", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("978", "0b_38e3a8bd31c1721acdb7b31d3ad2bbe2", "1484041952", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("979", "0b_1603bd024c3c3d1745562ddf4b56ed2d", "1484042041", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("980", "0b_7ec42a5ebad58fecdb13c4d6a705ab63", "1484042091", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("981", "0b_13de081ac89b66f611732e401cd6a676", "1484042154", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("982", "0b_a03521b8a2fd41ba567630334ce07b22", "1484042218", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("983", "0b_5871f80acdee913b350325e45a46b39c", "1484042274", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("984", "0b_2d762b4e19942c646e774d2c5c3e133f", "1484043248", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("985", "0b_f96c0b21bf5a2b22e0bebb9775811866", "1484043248", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("986", "0b_ab488ed18790ad2129614f14ee709bd3", "1484043515", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("987", "0b_526eab4c1cb08a1a3a11a781610ed0e7", "1484043571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("988", "0b_ee25973985525d17b1de4ce756da52a2", "1484043632", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("989", "0b_f8183b9da5f6a0c23dc989dd58fb7332", "1484043692", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("990", "0b_5a45894686f7fa040bb2b416415c8eaa", "1484043727", "201.194.236.242", "201.194.236.242", "/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "", "", "0", "MacOSX", "Chrome 55", "us", "1280 x 800", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("991", "0b_5a45894686f7fa040bb2b416415c8eaa", "1484043742", "201.194.236.242", "201.194.236.242", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "http://csandi.xyz/", "", "0", "MacOSX", "Chrome 55", "us", "1280 x 800", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("992", "0b_5a45894686f7fa040bb2b416415c8eaa", "1484043744", "201.194.236.242", "201.194.236.242", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "http://csandi.xyz/", "", "0", "MacOSX", "Chrome 55", "us", "1280 x 800", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("993", "0b_3d64f2ab0a429f3ce9029e4370b99387", "1484043752", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("994", "0b_df95246f8fd34cd1fba92ef7fd572eed", "1484044791", "201.194.236.242", "201.194.236.242", "/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "", "", "0", "iPhone OS", "Safari 10 Mobile", "xl", "", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("995", "0b_abd4d2a93c88d0cc23bb7f24cd97e44b", "1484044897", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("996", "0b_ff7c6e70835c4146cc3262e3ef0d6bb8", "1484044968", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("997", "0b_4c107c28c93e20a21a1f760f04051176", "1484045013", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("998", "0b_af9f2047c32891ba1772fa59cf067154", "1484045073", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("999", "0b_d6f9b580aacbd1624d201163f2bbbab7", "1484045132", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1000", "0b_afca1cb38bea915cb1a8925230d55e5e", "1484045191", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1001", "0b_ff7c6e70835c4146cc3262e3ef0d6bb8", "1484045252", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1002", "0b_13242baf19170445db4ca01a88faf7d9", "1484045324", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1003", "0b_71c49237fc1c074eb23a0ec6805b4aa0", "1484045387", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1004", "0b_ff7c6e70835c4146cc3262e3ef0d6bb8", "1484045467", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1005", "0b_5603a3b251008355dc08a38178a8c4c2", "1484046527", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1006", "0b_2285bef4e0e5f017538289666f9fea7a", "1484046942", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1007", "0b_5603a3b251008355dc08a38178a8c4c2", "1484047133", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1008", "0b_c2f3ea36eb02ec0324a714df124a1123", "1484047171", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1009", "0b_b49aeeaa8d1b1daad9221561b0c6329d", "1484047231", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1010", "0b_189fb93b4e7250a42226519023883d1e", "1484047292", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1011", "0b_2547fdbcc70635600ce75879e8e3943e", "1484047351", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1012", "0b_a9702d546b8f3f6e3e56cc703f141ec5", "1484047411", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1013", "0b_8454234800c492a7a11fa8baa39672de", "1484047471", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1014", "0b_b49aeeaa8d1b1daad9221561b0c6329d", "1484047481", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1015", "0b_c2f3ea36eb02ec0324a714df124a1123", "1484047792", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1016", "0b_c4db576494e194545434f2a1ab961d39", "1484047831", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1017", "0b_3be837a80259387ded0fdc5a6fb7b22d", "1484047891", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1018", "0b_cde93ab6b65fc2edb3c60a4b0973988b", "1484047963", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1019", "0b_3c1e77cb6d3555304910a1d7a829ed52", "1484048013", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1020", "0b_28547194257d07a941560b8619ab89fb", "1484048072", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1021", "0b_82197d938baa553bcec9299a07df4e67", "1484048131", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1022", "0b_1b3d0166a9a4dbd84898ee5a4f653756", "1484048192", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1023", "0b_0c506af1134677dd6afa1ee7a01562b3", "1484048382", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1024", "0b_c4db576494e194545434f2a1ab961d39", "1484048460", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1025", "0b_cde93ab6b65fc2edb3c60a4b0973988b", "1484048500", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1026", "0b_3be837a80259387ded0fdc5a6fb7b22d", "1484048501", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1027", "0b_28547194257d07a941560b8619ab89fb", "1484048715", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1028", "0b_82197d938baa553bcec9299a07df4e67", "1484048732", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1029", "0b_537d8bed50e5600cf419d9f67072b200", "1484048868", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1030", "0b_1b3d0166a9a4dbd84898ee5a4f653756", "1484048870", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1031", "0b_b74993763ad4bdb29e741b7a49b35ead", "1484048912", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1032", "0b_0c506af1134677dd6afa1ee7a01562b3", "1484049064", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1033", "0b_c4db576494e194545434f2a1ab961d39", "1484049064", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1034", "0b_3be837a80259387ded0fdc5a6fb7b22d", "1484049092", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1035", "0b_cde93ab6b65fc2edb3c60a4b0973988b", "1484049152", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1036", "0b_3c1e77cb6d3555304910a1d7a829ed52", "1484049212", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1037", "0b_28547194257d07a941560b8619ab89fb", "1484049277", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1038", "0b_82197d938baa553bcec9299a07df4e67", "1484049331", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1039", "0b_1b3d0166a9a4dbd84898ee5a4f653756", "1484049393", "64.237.55.3", "s426.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1040", "0b_537d8bed50e5600cf419d9f67072b200", "1484049452", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1041", "0b_b74993763ad4bdb29e741b7a49b35ead", "1484049511", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1042", "0b_0c506af1134677dd6afa1ee7a01562b3", "1484049571", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1043", "0b_11b93417f3e5e3b1e284090414321b96", "1484049611", "173.252.90.127", "173.252.90.127", "[404] /images/img/bannerPATRONS.png", "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)", "", "", "0", "", "", "", "", "", "facebookexternalhit", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1044", "0b_b8d40a48aa8837a5145e6ea5d1956aa1", "1484049631", "46.165.195.139", "s445.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1045", "0b_c35cfeaef5a812090aab3678ec3c18f4", "1484049726", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1046", "0b_c7ca370c458b2d0d2e6a0ed57ba240ce", "1484049732", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1047", "0b_362fd6804d3be3253b500cc8076aa176", "1484049752", "95.211.228.65", "s498.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1048", "0b_282d31459e5b61982651c85c6d1118cd", "1484049833", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1049", "0b_e55bf7f57b110566a9661da0ba657537", "1484049871", "178.255.153.2", "s428.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1050", "0b_c4e91e185cabfe9730444e5ae031926e", "1484271878", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1051", "0b_9e3cc396248fd12b7b15012c7d254961", "1484271948", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1052", "0b_3ccbb9a0ce6ce5295fc50fc7b0bb5d01", "1484271997", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1053", "0b_484c100fae13a468fd47173fceb576a5", "1484272057", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1054", "0b_81df3a91f6f86ea3bcb8e2a00630577f", "1484272117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1055", "0b_0c8386fb129cdbd877ad0dc4f8eb65d5", "1484272177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1056", "0b_16060a41e4c24c9862342847a4744e9a", "1484272238", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1057", "0b_622995d0d09ff264f1ab768265ce5a26", "1484272298", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1058", "0b_9e3cc396248fd12b7b15012c7d254961", "1484272357", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1059", "0b_73806a020648e8a88e19b9fa2c0aee3b", "1484272417", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1060", "0b_c4e91e185cabfe9730444e5ae031926e", "1484272477", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1061", "0b_d92336187115aa81e15db21203cc8f5e", "1484272537", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1062", "0b_3ccbb9a0ce6ce5295fc50fc7b0bb5d01", "1484272598", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1063", "0b_484c100fae13a468fd47173fceb576a5", "1484272659", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1064", "0b_81df3a91f6f86ea3bcb8e2a00630577f", "1484272717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1065", "0b_0c8386fb129cdbd877ad0dc4f8eb65d5", "1484272777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1066", "0b_b7669abfd8302773e1db4492391c4750", "1484272837", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1067", "0b_e0c505005b3e6a46a05a543ee736189b", "1484272897", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1068", "0b_02bc739de30b2681f8b1e91ed6ca3432", "1484272958", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1069", "0b_a085fed94e1ace23297c6977abf3c1e6", "1484273017", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1070", "0b_8414df29441f1690c8c36cc023117346", "1484273077", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1071", "0b_03a1f47048245642b32f0f53a7a75eac", "1484273137", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1072", "0b_3e046de14c3eb096adbcc2189e9515b2", "1484273197", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1073", "0b_fb1853fba9ab49baacebb772b6dedfa7", "1484273259", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1074", "0b_93ccc5f62b7574334cf290040c65f15e", "1484273317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1075", "0b_895a9630f9b346ed5244672aa28e2128", "1484273377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1076", "0b_b7669abfd8302773e1db4492391c4750", "1484273437", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1077", "0b_e0c505005b3e6a46a05a543ee736189b", "1484273497", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1078", "0b_02bc739de30b2681f8b1e91ed6ca3432", "1484273557", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1079", "0b_a085fed94e1ace23297c6977abf3c1e6", "1484273617", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1080", "0b_8414df29441f1690c8c36cc023117346", "1484273677", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1081", "0b_03a1f47048245642b32f0f53a7a75eac", "1484273738", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1082", "0b_3e046de14c3eb096adbcc2189e9515b2", "1484273797", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1083", "0b_fb1853fba9ab49baacebb772b6dedfa7", "1484273857", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1084", "0b_93ccc5f62b7574334cf290040c65f15e", "1484273918", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1085", "0b_895a9630f9b346ed5244672aa28e2128", "1484273978", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1086", "0b_b7669abfd8302773e1db4492391c4750", "1484274037", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1087", "0b_e0c505005b3e6a46a05a543ee736189b", "1484274097", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1088", "0b_02bc739de30b2681f8b1e91ed6ca3432", "1484274157", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1089", "0b_a085fed94e1ace23297c6977abf3c1e6", "1484274217", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1090", "0b_8414df29441f1690c8c36cc023117346", "1484274277", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1091", "0b_03a1f47048245642b32f0f53a7a75eac", "1484274337", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1092", "0b_3e046de14c3eb096adbcc2189e9515b2", "1484274397", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1093", "0b_fb1853fba9ab49baacebb772b6dedfa7", "1484274458", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1094", "0b_93ccc5f62b7574334cf290040c65f15e", "1484274517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1095", "0b_895a9630f9b346ed5244672aa28e2128", "1484274577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1096", "0b_dda6cef88b6213b20290ef14981058dd", "1484274637", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1097", "0b_62c73bf92356b9da81467656236e72f6", "1484274697", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1098", "0b_4d497d7504d2d683beef959ed833c747", "1484274757", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1099", "0b_b260380e57c42242e0c147ec362b367b", "1484274818", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1100", "0b_e5e2df0b1dc352e9a095bfa27a7c3d19", "1484274877", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1101", "0b_6b2215acb5fd765c8746b446c7dfda68", "1484274937", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1102", "0b_c4a67d7a32056508d3f549d4d19c7a29", "1484274997", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1103", "0b_43d55925f3eb7719567a7ca9bcf4f483", "1484275057", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1104", "0b_0b0a002913bd313f0fb4bb68ed953863", "1484275117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1105", "0b_5021dace09e36c431802efbeb620cf21", "1484275177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1106", "0b_dda6cef88b6213b20290ef14981058dd", "1484275238", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1107", "0b_62c73bf92356b9da81467656236e72f6", "1484275297", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1108", "0b_4d497d7504d2d683beef959ed833c747", "1484275357", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1109", "0b_b260380e57c42242e0c147ec362b367b", "1484275417", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1110", "0b_e5e2df0b1dc352e9a095bfa27a7c3d19", "1484275477", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1111", "0b_6b2215acb5fd765c8746b446c7dfda68", "1484275538", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1112", "0b_c4a67d7a32056508d3f549d4d19c7a29", "1484275597", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1113", "0b_43d55925f3eb7719567a7ca9bcf4f483", "1484275657", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1114", "0b_0b0a002913bd313f0fb4bb68ed953863", "1484275717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1115", "0b_5021dace09e36c431802efbeb620cf21", "1484275777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1116", "0b_dda6cef88b6213b20290ef14981058dd", "1484275837", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1117", "0b_62c73bf92356b9da81467656236e72f6", "1484275898", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1118", "0b_4d497d7504d2d683beef959ed833c747", "1484275957", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1119", "0b_b260380e57c42242e0c147ec362b367b", "1484276017", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1120", "0b_e5e2df0b1dc352e9a095bfa27a7c3d19", "1484276077", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1121", "0b_6b2215acb5fd765c8746b446c7dfda68", "1484276137", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1122", "0b_c4a67d7a32056508d3f549d4d19c7a29", "1484276198", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1123", "0b_43d55925f3eb7719567a7ca9bcf4f483", "1484276257", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1124", "0b_0b0a002913bd313f0fb4bb68ed953863", "1484276317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1125", "0b_5021dace09e36c431802efbeb620cf21", "1484276377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1126", "0b_04acf3ed7aecfc64e54f5b9a15f1e2f4", "1484276437", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1127", "0b_4c8a6571bc5b8af334567ee5c7d3d3d2", "1484276497", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1128", "0b_af1d08a337aba0aae9452acb571f7efd", "1484276558", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1129", "0b_00181d6de7fe30759bc9e7d418cdb223", "1484276617", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1130", "0b_c5550376c10bb530ee0da5cf80039443", "1484276677", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1131", "0b_c2e7292ab66171c3e5b2cffee5f86c6f", "1484276737", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1132", "0b_17a6fdb50540594bc68a676f11b4575a", "1484276797", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1133", "0b_6c496a6d887dd374299e2029542526bd", "1484276857", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1134", "0b_ee54e6ce57661ef9bebacf3468d3098b", "1484276917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1135", "0b_536b805337745d98497c4f9516a688fb", "1484276977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1136", "0b_04acf3ed7aecfc64e54f5b9a15f1e2f4", "1484277037", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1137", "0b_4c8a6571bc5b8af334567ee5c7d3d3d2", "1484277097", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1138", "0b_af1d08a337aba0aae9452acb571f7efd", "1484277157", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1139", "0b_00181d6de7fe30759bc9e7d418cdb223", "1484277218", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1140", "0b_c5550376c10bb530ee0da5cf80039443", "1484277277", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1141", "0b_c2e7292ab66171c3e5b2cffee5f86c6f", "1484277337", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1142", "0b_17a6fdb50540594bc68a676f11b4575a", "1484277397", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1143", "0b_6c496a6d887dd374299e2029542526bd", "1484277456", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1144", "0b_ee54e6ce57661ef9bebacf3468d3098b", "1484277517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1145", "0b_536b805337745d98497c4f9516a688fb", "1484277577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1146", "0b_04acf3ed7aecfc64e54f5b9a15f1e2f4", "1484277637", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1147", "0b_4c8a6571bc5b8af334567ee5c7d3d3d2", "1484277704", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1148", "0b_af1d08a337aba0aae9452acb571f7efd", "1484277757", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1149", "0b_00181d6de7fe30759bc9e7d418cdb223", "1484277817", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1150", "0b_c5550376c10bb530ee0da5cf80039443", "1484277877", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1151", "0b_c2e7292ab66171c3e5b2cffee5f86c6f", "1484277937", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1152", "0b_17a6fdb50540594bc68a676f11b4575a", "1484277997", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1153", "0b_6c496a6d887dd374299e2029542526bd", "1484278057", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1154", "0b_ee54e6ce57661ef9bebacf3468d3098b", "1484278117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1155", "0b_536b805337745d98497c4f9516a688fb", "1484278177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1156", "0b_55246ce40672df35fbcfdeb3ba26a180", "1484278237", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1157", "0b_17c3049342250fd086fc5c3aeec614b9", "1484278297", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1158", "0b_17e502023c751299f600c798427c9bd5", "1484278357", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1159", "0b_d2259266df5f1e77a15a59dbb81c027c", "1484278418", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1160", "0b_1cb20d5ece8f1f2b17e367c852052b1d", "1484278477", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1161", "0b_9d7b89b2397f7c9e14f3b90d938daa86", "1484278538", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1162", "0b_91d89d012b89ca651752e9add795d2b1", "1484278597", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1163", "0b_09a3034869d1e94fd7877ba1e8e92e00", "1484278657", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1164", "0b_2ce6eca696110d9dbc22af647534a202", "1484278717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1165", "0b_24633304cbd1c9e18cc30150dd8610d9", "1484278777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1166", "0b_55246ce40672df35fbcfdeb3ba26a180", "1484278837", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1167", "0b_17c3049342250fd086fc5c3aeec614b9", "1484278897", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1168", "0b_17e502023c751299f600c798427c9bd5", "1484278957", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1169", "0b_d2259266df5f1e77a15a59dbb81c027c", "1484279017", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1170", "0b_1cb20d5ece8f1f2b17e367c852052b1d", "1484279077", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1171", "0b_9d7b89b2397f7c9e14f3b90d938daa86", "1484279137", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1172", "0b_91d89d012b89ca651752e9add795d2b1", "1484279199", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1173", "0b_09a3034869d1e94fd7877ba1e8e92e00", "1484279257", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1174", "0b_2ce6eca696110d9dbc22af647534a202", "1484279317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1175", "0b_24633304cbd1c9e18cc30150dd8610d9", "1484279377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1176", "0b_55246ce40672df35fbcfdeb3ba26a180", "1484279437", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1177", "0b_17c3049342250fd086fc5c3aeec614b9", "1484279497", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1178", "0b_17e502023c751299f600c798427c9bd5", "1484279557", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1179", "0b_d2259266df5f1e77a15a59dbb81c027c", "1484279617", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1180", "0b_1cb20d5ece8f1f2b17e367c852052b1d", "1484279677", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1181", "0b_9d7b89b2397f7c9e14f3b90d938daa86", "1484279737", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1182", "0b_06ca93384603a109b9b1e687754dacf2", "1484279759", "66.249.64.186", "crawl-66-249-64-186.googlebot.com", "/css/jquery.fancybox-1.3.4.css", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "http://csandi.xyz/RX40.html", "", "0", "", "", "us", "", "", "Googlebot", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("1183", "0b_06ca93384603a109b9b1e687754dacf2", "1484279760", "66.249.64.186", "crawl-66-249-64-186.googlebot.com", "[404] /js/jquery.fancybox-1.3.4.js", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "http://csandi.xyz/RX40.html", "", "0", "", "", "us", "", "", "Googlebot", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("1184", "0b_06ca93384603a109b9b1e687754dacf2", "1484279761", "66.249.64.182", "crawl-66-249-64-182.googlebot.com", "/js/jquery-migrate-1.2.1.min.js", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "http://csandi.xyz/RX40.html", "", "0", "", "", "us", "", "", "Googlebot", "", "", "", "3", "0", "0");
INSERT INTO `wp_wassup` VALUES("1185", "0b_91d89d012b89ca651752e9add795d2b1", "1484279798", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1186", "0b_09a3034869d1e94fd7877ba1e8e92e00", "1484279858", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1187", "0b_2ce6eca696110d9dbc22af647534a202", "1484279917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1188", "0b_24633304cbd1c9e18cc30150dd8610d9", "1484279977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1189", "0b_b91548aa7c49d1c9b46644886280da3c", "1484280037", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1190", "0b_2b7ed25edbbfc155e56ab6e8cb5fffae", "1484280097", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1191", "0b_08e9df4e4907c6137f4c536fdb18a6d0", "1484280157", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1192", "0b_61c49ccf5a8ad9d2ec65f7a2d02433d4", "1484280217", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1193", "0b_41518099de38a8985765df31c5c6646d", "1484280277", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1194", "0b_a0b6c84155986ee4e4e51d47c6323036", "1484280337", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1195", "0b_c19c8fe492860f294d71f01eb79ad8dd", "1484280397", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1196", "0b_0b4b595bbf22984be60e31a154ddfc89", "1484280457", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1197", "0b_1314325daa2f90f0443003f3edb9ff63", "1484280518", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1198", "0b_5950aa3a125835e5d0eec76db4acd6b1", "1484280577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1199", "0b_b91548aa7c49d1c9b46644886280da3c", "1484280637", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1200", "0b_2b7ed25edbbfc155e56ab6e8cb5fffae", "1484280697", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1201", "0b_08e9df4e4907c6137f4c536fdb18a6d0", "1484280757", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1202", "0b_61c49ccf5a8ad9d2ec65f7a2d02433d4", "1484280817", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1203", "0b_41518099de38a8985765df31c5c6646d", "1484280877", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1204", "0b_a0b6c84155986ee4e4e51d47c6323036", "1484280938", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1205", "0b_c19c8fe492860f294d71f01eb79ad8dd", "1484280997", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1206", "0b_0b4b595bbf22984be60e31a154ddfc89", "1484281057", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1207", "0b_1314325daa2f90f0443003f3edb9ff63", "1484281117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1208", "0b_5950aa3a125835e5d0eec76db4acd6b1", "1484281178", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1209", "0b_b91548aa7c49d1c9b46644886280da3c", "1484281237", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1210", "0b_2b7ed25edbbfc155e56ab6e8cb5fffae", "1484281297", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1211", "0b_08e9df4e4907c6137f4c536fdb18a6d0", "1484281357", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1212", "0b_61c49ccf5a8ad9d2ec65f7a2d02433d4", "1484281417", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1213", "0b_41518099de38a8985765df31c5c6646d", "1484281480", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1214", "0b_a0b6c84155986ee4e4e51d47c6323036", "1484281537", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1215", "0b_73e6b00acad261a8b8ead3658521a72b", "1484281573", "66.249.64.178", "crawl-66-249-64-178.googlebot.com", "/sitemap-pt-product-2017-01.xml", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1216", "0b_73e6b00acad261a8b8ead3658521a72b", "1484281575", "66.249.64.182", "crawl-66-249-64-182.googlebot.com", "/", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", "", "", "0", "", "", "", "", "", "Googlebot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1217", "0b_c19c8fe492860f294d71f01eb79ad8dd", "1484281597", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1218", "0b_0b4b595bbf22984be60e31a154ddfc89", "1484281657", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1219", "0b_1314325daa2f90f0443003f3edb9ff63", "1484281717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1220", "0b_5950aa3a125835e5d0eec76db4acd6b1", "1484281777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1221", "0b_d0a40517c9a7026c90ae5693bb8f5f7c", "1484281837", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1222", "0b_ea748e6f9948316355f6dbb59f602061", "1484281897", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1223", "0b_5202b4ebd8b729c29a757d6524507dca", "1484281957", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1224", "0b_72ca2271950330b751e214410f169c47", "1484282018", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1225", "0b_2b36ccf27cb2b7070f21c86fe51a1be0", "1484282077", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1226", "0b_e475c572356df36606054eac272bcf99", "1484282137", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1227", "0b_5dbde9d8f8507756958c753bc5cee9e2", "1484282197", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1228", "0b_b145bb20750ac53db656bb331ff0d291", "1484282257", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1229", "0b_19afe229810f00f07af1fba5877e9828", "1484282317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1230", "0b_bce55ffea693d8c3d80b017958ae12cb", "1484282377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1231", "0b_d0a40517c9a7026c90ae5693bb8f5f7c", "1484282437", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1232", "0b_ea748e6f9948316355f6dbb59f602061", "1484282498", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1233", "0b_5202b4ebd8b729c29a757d6524507dca", "1484282557", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1234", "0b_72ca2271950330b751e214410f169c47", "1484282617", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1235", "0b_2b36ccf27cb2b7070f21c86fe51a1be0", "1484282677", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1236", "0b_e475c572356df36606054eac272bcf99", "1484282737", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1237", "0b_5dbde9d8f8507756958c753bc5cee9e2", "1484282797", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1238", "0b_b145bb20750ac53db656bb331ff0d291", "1484282858", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1239", "0b_19afe229810f00f07af1fba5877e9828", "1484282917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1240", "0b_bce55ffea693d8c3d80b017958ae12cb", "1484282978", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1241", "0b_d0a40517c9a7026c90ae5693bb8f5f7c", "1484283037", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1242", "0b_ea748e6f9948316355f6dbb59f602061", "1484283097", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1243", "0b_5202b4ebd8b729c29a757d6524507dca", "1484283158", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1244", "0b_72ca2271950330b751e214410f169c47", "1484283217", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1245", "0b_2b36ccf27cb2b7070f21c86fe51a1be0", "1484283277", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1246", "0b_e475c572356df36606054eac272bcf99", "1484283337", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1247", "0b_5dbde9d8f8507756958c753bc5cee9e2", "1484283398", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1248", "0b_b145bb20750ac53db656bb331ff0d291", "1484283457", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1249", "0b_19afe229810f00f07af1fba5877e9828", "1484283517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1250", "0b_bce55ffea693d8c3d80b017958ae12cb", "1484283577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1251", "0b_0b99e7c312ffe1d0f27508d9dfeb9e18", "1484283637", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1252", "0b_e7379d0dacb11e52252d5da27eec733b", "1484283697", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1253", "0b_1fdf54afc59eab70157c378fcc856b46", "1484283757", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1254", "0b_09098b3bc6ba5fcee4a88b3c96d8722e", "1484283818", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1255", "0b_4ed3f4693a7ecaa1a46242a09ef6fb2b", "1484283877", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1256", "0b_5a27880580e9f48099d6dd23c80bc83f", "1484283937", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1257", "0b_209c39f31306dc8b078d8ba784fec078", "1484283997", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1258", "0b_eeedd2b6583a661628f495efed1334c4", "1484284057", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1259", "0b_a04f6b9eabd5f957ac1b33ac01fb3965", "1484284117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1260", "0b_b3efb8d7e2af01981762a84c98df43b1", "1484284177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1261", "0b_0b99e7c312ffe1d0f27508d9dfeb9e18", "1484284237", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1262", "0b_e7379d0dacb11e52252d5da27eec733b", "1484284297", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1263", "0b_1fdf54afc59eab70157c378fcc856b46", "1484284357", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1264", "0b_09098b3bc6ba5fcee4a88b3c96d8722e", "1484284417", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1265", "0b_4ed3f4693a7ecaa1a46242a09ef6fb2b", "1484284478", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1266", "0b_5a27880580e9f48099d6dd23c80bc83f", "1484284537", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1267", "0b_209c39f31306dc8b078d8ba784fec078", "1484284597", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1268", "0b_eeedd2b6583a661628f495efed1334c4", "1484284658", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1269", "0b_a04f6b9eabd5f957ac1b33ac01fb3965", "1484284717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1270", "0b_b3efb8d7e2af01981762a84c98df43b1", "1484284777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1271", "0b_0b99e7c312ffe1d0f27508d9dfeb9e18", "1484284837", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1272", "0b_e7379d0dacb11e52252d5da27eec733b", "1484284897", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1273", "0b_1fdf54afc59eab70157c378fcc856b46", "1484284958", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1274", "0b_09098b3bc6ba5fcee4a88b3c96d8722e", "1484285017", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1275", "0b_4ed3f4693a7ecaa1a46242a09ef6fb2b", "1484285077", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1276", "0b_5a27880580e9f48099d6dd23c80bc83f", "1484285137", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1277", "0b_209c39f31306dc8b078d8ba784fec078", "1484285197", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1278", "0b_eeedd2b6583a661628f495efed1334c4", "1484285257", "109.123.101.103", "s4014.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1279", "0b_a04f6b9eabd5f957ac1b33ac01fb3965", "1484285317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1280", "0b_b3efb8d7e2af01981762a84c98df43b1", "1484285377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1281", "0b_7b07e0661d6016a56273ab98c80faa64", "1484285437", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1282", "0b_78c0154b693201cf5ca1a80b81d1d10c", "1484285497", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1283", "0b_b6a8487673c22e2c3f486820794b14c9", "1484285558", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1284", "0b_90b4bc6250bd29645c0572cb37dc884e", "1484285677", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1285", "0b_f52d21ee9675662b29de6b6581354da6", "1484285737", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1286", "0b_8e3c788535534dc90fc69532a4612241", "1484285798", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1287", "0b_713069aeb63add476a85430507900fe7", "1484285857", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1288", "0b_cf9bc53e584ab0edf0197a76117464b7", "1484285917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1289", "0b_ed747dabea67ffa5cd546caa80620a63", "1484285977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1290", "0b_a9ccc640d86ca3aba7dc106096697bd6", "1484286037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1291", "0b_7b07e0661d6016a56273ab98c80faa64", "1484286098", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1292", "0b_78c0154b693201cf5ca1a80b81d1d10c", "1484286157", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1293", "0b_b6a8487673c22e2c3f486820794b14c9", "1484286217", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1294", "0b_90b4bc6250bd29645c0572cb37dc884e", "1484286277", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1295", "0b_f52d21ee9675662b29de6b6581354da6", "1484286337", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1296", "0b_8e3c788535534dc90fc69532a4612241", "1484286397", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1297", "0b_713069aeb63add476a85430507900fe7", "1484286458", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1298", "0b_cf9bc53e584ab0edf0197a76117464b7", "1484286517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1299", "0b_ed747dabea67ffa5cd546caa80620a63", "1484286577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1300", "0b_a9ccc640d86ca3aba7dc106096697bd6", "1484286637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1301", "0b_7b07e0661d6016a56273ab98c80faa64", "1484286697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1302", "0b_78c0154b693201cf5ca1a80b81d1d10c", "1484286757", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1303", "0b_b6a8487673c22e2c3f486820794b14c9", "1484286817", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1304", "0b_90b4bc6250bd29645c0572cb37dc884e", "1484286877", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1305", "0b_f52d21ee9675662b29de6b6581354da6", "1484286937", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1306", "0b_8e3c788535534dc90fc69532a4612241", "1484286998", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1307", "0b_713069aeb63add476a85430507900fe7", "1484287058", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1308", "0b_cf9bc53e584ab0edf0197a76117464b7", "1484287117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1309", "0b_ed747dabea67ffa5cd546caa80620a63", "1484287177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1310", "0b_f79074b79557c548dd4fd0c85a97343a", "1484287237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1311", "0b_63e83cc7b44aef3c7ea7c4208cb23b09", "1484287297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1312", "0b_abaf695031a247e0e7bcf06c37774ff3", "1484287357", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1313", "0b_ef99a0b2c5a9740e57b9e4d67b91f2ac", "1484287417", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1314", "0b_c4404a30589931d013abaac7b0b2e2ba", "1484287477", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1315", "0b_e8737d917020cc8f560d04bc82760255", "1484287537", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1316", "0b_0ed7f4db521a042ae586d563045ed857", "1484287597", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1317", "0b_2c09295d7624218bfb8a8a8879a930aa", "1484287657", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1318", "0b_1dd58f1ff91429f9daad87769e91f618", "1484287717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1319", "0b_ac524f83a50370a36a813ed1f1edca45", "1484287778", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1320", "0b_f79074b79557c548dd4fd0c85a97343a", "1484287837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1321", "0b_63e83cc7b44aef3c7ea7c4208cb23b09", "1484287897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1322", "0b_abaf695031a247e0e7bcf06c37774ff3", "1484287957", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1323", "0b_ef99a0b2c5a9740e57b9e4d67b91f2ac", "1484288017", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1324", "0b_c4404a30589931d013abaac7b0b2e2ba", "1484288077", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1325", "0b_e8737d917020cc8f560d04bc82760255", "1484288137", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1326", "0b_0ed7f4db521a042ae586d563045ed857", "1484288197", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1327", "0b_2c09295d7624218bfb8a8a8879a930aa", "1484288257", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1328", "0b_1dd58f1ff91429f9daad87769e91f618", "1484288317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1329", "0b_ac524f83a50370a36a813ed1f1edca45", "1484288377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1330", "0b_f79074b79557c548dd4fd0c85a97343a", "1484288438", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1331", "0b_63e83cc7b44aef3c7ea7c4208cb23b09", "1484288497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1332", "0b_abaf695031a247e0e7bcf06c37774ff3", "1484288557", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1333", "0b_ef99a0b2c5a9740e57b9e4d67b91f2ac", "1484288617", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1334", "0b_c4404a30589931d013abaac7b0b2e2ba", "1484288677", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1335", "0b_e8737d917020cc8f560d04bc82760255", "1484288737", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1336", "0b_0ed7f4db521a042ae586d563045ed857", "1484288797", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1337", "0b_2c09295d7624218bfb8a8a8879a930aa", "1484288857", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1338", "0b_1dd58f1ff91429f9daad87769e91f618", "1484288917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1339", "0b_ac524f83a50370a36a813ed1f1edca45", "1484288977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1340", "0b_cb9f3a451b1ee39603f9836f29d10de7", "1484289037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1341", "0b_7f7f0cbf5af9c1af861bf1a981d401e9", "1484289098", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1342", "0b_bfb39b1645f8c09882416962916735c8", "1484289157", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1343", "0b_e1b22ee3eb1a8ba0bef3fc88d1af0161", "1484289218", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1344", "0b_ddc547828f71c4faaf8f76c0cdec25dc", "1484289277", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1345", "0b_7bd57d33609b6acc480155c64a0bfbf6", "1484289337", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1346", "0b_04bba7b0117242a0b250cde2257423c8", "1484289397", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1347", "0b_f3a7c8c6e2ab959d57da8871b19f50b0", "1484289457", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1348", "0b_c7d65e3600cfe19866801aeb78379233", "1484289517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1349", "0b_707ea8a9554101342ee0e9cfcbc30c9e", "1484289577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1350", "0b_cb9f3a451b1ee39603f9836f29d10de7", "1484289637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1351", "0b_7f7f0cbf5af9c1af861bf1a981d401e9", "1484289697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1352", "0b_bfb39b1645f8c09882416962916735c8", "1484289758", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1353", "0b_e1b22ee3eb1a8ba0bef3fc88d1af0161", "1484289817", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1354", "0b_ddc547828f71c4faaf8f76c0cdec25dc", "1484289877", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1355", "0b_7bd57d33609b6acc480155c64a0bfbf6", "1484289937", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1356", "0b_04bba7b0117242a0b250cde2257423c8", "1484289997", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1357", "0b_f3a7c8c6e2ab959d57da8871b19f50b0", "1484290057", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1358", "0b_c7d65e3600cfe19866801aeb78379233", "1484290118", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1359", "0b_707ea8a9554101342ee0e9cfcbc30c9e", "1484290177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1360", "0b_cb9f3a451b1ee39603f9836f29d10de7", "1484290237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1361", "0b_7f7f0cbf5af9c1af861bf1a981d401e9", "1484290297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1362", "0b_bfb39b1645f8c09882416962916735c8", "1484290357", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1363", "0b_e1b22ee3eb1a8ba0bef3fc88d1af0161", "1484290418", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1364", "0b_ddc547828f71c4faaf8f76c0cdec25dc", "1484290477", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1365", "0b_7bd57d33609b6acc480155c64a0bfbf6", "1484290537", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1366", "0b_04bba7b0117242a0b250cde2257423c8", "1484290598", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1367", "0b_f3a7c8c6e2ab959d57da8871b19f50b0", "1484290659", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1368", "0b_c7d65e3600cfe19866801aeb78379233", "1484290717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1369", "0b_707ea8a9554101342ee0e9cfcbc30c9e", "1484290777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1370", "0b_64eb3674a2f2cf05c2c4ba646ec79a21", "1484290837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1371", "0b_b91bea1013a90b4fd1b1f2c578aa38fa", "1484290908", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1372", "0b_70e590c2b3ced2d7c0128c3ad4b86d70", "1484290957", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1373", "0b_5e1f3d1fe4be46a0d08acd44a68a0843", "1484291017", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1374", "0b_e7b7d3804ed5e50c30e3d30850759dbd", "1484291078", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1375", "0b_fc991460cd0fbe5b2ab47633adfe403f", "1484291137", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1376", "0b_6593a0c465c1960c178117ad00ca39bc", "1484291197", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1377", "0b_a6c6c42ae2f2f939788f42e48613be1b", "1484291258", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1378", "0b_09ab42282fb03ecf94a4543ac6e40dce", "1484291317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1379", "0b_23b73b15178249ff8b87d2ed0cb1b24a", "1484291377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1380", "0b_64eb3674a2f2cf05c2c4ba646ec79a21", "1484291437", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1381", "0b_b91bea1013a90b4fd1b1f2c578aa38fa", "1484291497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1382", "0b_70e590c2b3ced2d7c0128c3ad4b86d70", "1484291557", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1383", "0b_5e1f3d1fe4be46a0d08acd44a68a0843", "1484291617", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1384", "0b_e7b7d3804ed5e50c30e3d30850759dbd", "1484291677", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1385", "0b_fc991460cd0fbe5b2ab47633adfe403f", "1484291738", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1386", "0b_6593a0c465c1960c178117ad00ca39bc", "1484291797", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1387", "0b_a6c6c42ae2f2f939788f42e48613be1b", "1484291857", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1388", "0b_09ab42282fb03ecf94a4543ac6e40dce", "1484291917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1389", "0b_23b73b15178249ff8b87d2ed0cb1b24a", "1484291977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1390", "0b_64eb3674a2f2cf05c2c4ba646ec79a21", "1484292037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1391", "0b_b91bea1013a90b4fd1b1f2c578aa38fa", "1484292097", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1392", "0b_70e590c2b3ced2d7c0128c3ad4b86d70", "1484292157", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1393", "0b_5e1f3d1fe4be46a0d08acd44a68a0843", "1484292217", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1394", "0b_e7b7d3804ed5e50c30e3d30850759dbd", "1484292277", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1395", "0b_fc991460cd0fbe5b2ab47633adfe403f", "1484292337", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1396", "0b_6593a0c465c1960c178117ad00ca39bc", "1484292397", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1397", "0b_a6c6c42ae2f2f939788f42e48613be1b", "1484292457", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1398", "0b_09ab42282fb03ecf94a4543ac6e40dce", "1484292517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1399", "0b_23b73b15178249ff8b87d2ed0cb1b24a", "1484292577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1400", "0b_336d5e131388b5294b08656098b43d39", "1484292637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1401", "0b_c86bf1498bdf15e3b7d5590ed0ee7663", "1484292697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1402", "0b_f66de6e9ef0f5f7ab1da0a40b58149bd", "1484292757", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1403", "0b_d9c997cc5dfa63b5d628c7ff965cab28", "1484292818", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1404", "0b_42cede002aeda8feb68ef7ece43647d5", "1484292877", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1405", "0b_d66714591f2d3791cde2a2d5e8454c90", "1484292937", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1406", "0b_2074872554af9e0569f1bd897a788363", "1484292997", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1407", "0b_bc0b2c2af46472ccf098b86a4cc663a6", "1484293058", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1408", "0b_7800483cfd0822c614907203f14650d6", "1484293117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1409", "0b_d7226979fbe2c18a1cb1af78ab3fe8e5", "1484293177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1410", "0b_336d5e131388b5294b08656098b43d39", "1484293237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1411", "0b_c86bf1498bdf15e3b7d5590ed0ee7663", "1484293297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1412", "0b_f66de6e9ef0f5f7ab1da0a40b58149bd", "1484293357", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1413", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293395", "200.192.237.194", "200.192.237.194", "/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1414", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293409", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1415", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293411", "200.192.237.194", "200.192.237.194", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1416", "0b_d9c997cc5dfa63b5d628c7ff965cab28", "1484293417", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1417", "0b_42cede002aeda8feb68ef7ece43647d5", "1484293477", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1418", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293498", "200.192.237.194", "200.192.237.194", "/cartera-de-clientes/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "97", "0");
INSERT INTO `wp_wassup` VALUES("1419", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293500", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/cartera-de-clientes/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1420", "0b_d66714591f2d3791cde2a2d5e8454c90", "1484293538", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1421", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293562", "200.192.237.194", "200.192.237.194", "/contacto/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/cartera-de-clientes/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "66", "0");
INSERT INTO `wp_wassup` VALUES("1422", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293565", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/contacto/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1423", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293566", "200.192.237.194", "200.192.237.194", "/contacto/?_wpcf7_is_ajax_call=1&_wpcf7=5&_wpcf7_request_ver=1484315159376", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/contacto/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1424", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293567", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/contacto/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1425", "0b_2074872554af9e0569f1bd897a788363", "1484293598", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1426", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293612", "200.192.237.194", "200.192.237.194", "/categoria-producto/alarma/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/contacto/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1427", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293614", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/alarma/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1428", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293655", "200.192.237.194", "200.192.237.194", "/categoria-producto/videovigilancia/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/alarma/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1429", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293657", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/videovigilancia/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1430", "0b_bc0b2c2af46472ccf098b86a4cc663a6", "1484293658", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1431", "0b_7800483cfd0822c614907203f14650d6", "1484293717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1432", "0b_d7226979fbe2c18a1cb1af78ab3fe8e5", "1484293778", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1433", "0b_336d5e131388b5294b08656098b43d39", "1484293838", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1434", "0b_c86bf1498bdf15e3b7d5590ed0ee7663", "1484293897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1435", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293951", "200.192.237.194", "200.192.237.194", "/categoria-producto/deteccion-de-incendio/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/videovigilancia/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1436", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293953", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/deteccion-de-incendio/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1437", "0b_f66de6e9ef0f5f7ab1da0a40b58149bd", "1484293957", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1438", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293971", "200.192.237.194", "200.192.237.194", "/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/categoria-producto/deteccion-de-incendio/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1439", "0b_c6a8d11118e31838a282b5260d7d00ae", "1484293973", "200.192.237.194", "200.192.237.194", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "http://csandi.xyz/", "", "0", "Win8 x64", "Firefox 50", "es", "1366 x 768", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1440", "0b_d9c997cc5dfa63b5d628c7ff965cab28", "1484294018", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1441", "0b_42cede002aeda8feb68ef7ece43647d5", "1484294077", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1442", "0b_d66714591f2d3791cde2a2d5e8454c90", "1484294137", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1443", "0b_2074872554af9e0569f1bd897a788363", "1484294198", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1444", "0b_bc0b2c2af46472ccf098b86a4cc663a6", "1484294257", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1445", "0b_7800483cfd0822c614907203f14650d6", "1484294317", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1446", "0b_d7226979fbe2c18a1cb1af78ab3fe8e5", "1484294378", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1447", "0b_46e6ca49d0af6fc8d8919f857e69c8fe", "1484294437", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1448", "0b_23bec54a5db05b63287b87b65d8ccd6d", "1484294497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1449", "0b_9912a2de0a64da0c216584e8906f15d8", "1484294557", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1450", "0b_de75238605206206f5d5a0298cc850ca", "1484294617", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1451", "0b_e1c903773ce56d0613f6a226c6e79dfa", "1484294677", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1452", "0b_087d8e67af5f1c14fdbfd319b53fbd59", "1484294706", "54.213.4.169", "ec2-54-213-4-169.us-west-2.compute.amazonaws.com", "/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.89 Safari/537.36", "", "", "0", "MacOSX", "Chrome 44", "", "", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1453", "0b_96fd070db4573392132d966687d33b3d", "1484294737", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1454", "0b_bfc0f266e3eb3bc93d1ffb5ec0c92103", "1484294797", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1455", "0b_f37a92a73afe4c1231be76a2f9a7c619", "1484294857", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1456", "0b_7d5259d045c4f9e847e21895ea8f51d9", "1484294917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1457", "0b_03f323cccf7bc6ffdcbc92adf0fd77a9", "1484294977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1458", "0b_46e6ca49d0af6fc8d8919f857e69c8fe", "1484295038", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1459", "0b_23bec54a5db05b63287b87b65d8ccd6d", "1484295097", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1460", "0b_9912a2de0a64da0c216584e8906f15d8", "1484295157", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1461", "0b_de75238605206206f5d5a0298cc850ca", "1484295217", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1462", "0b_e1c903773ce56d0613f6a226c6e79dfa", "1484295277", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1463", "0b_96fd070db4573392132d966687d33b3d", "1484295337", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1464", "0b_bfc0f266e3eb3bc93d1ffb5ec0c92103", "1484295397", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1465", "0b_f37a92a73afe4c1231be76a2f9a7c619", "1484295457", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1466", "0b_7d5259d045c4f9e847e21895ea8f51d9", "1484295517", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1467", "0b_03f323cccf7bc6ffdcbc92adf0fd77a9", "1484295577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1468", "0b_46e6ca49d0af6fc8d8919f857e69c8fe", "1484295637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1469", "0b_23bec54a5db05b63287b87b65d8ccd6d", "1484295698", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1470", "0b_9912a2de0a64da0c216584e8906f15d8", "1484295757", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1471", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295801", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/producto/vdmp3/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "https://www.google.com.ar/", "_notprovided_", "1", "Win7", "Chrome 55", "ar", "1920 x 1080", "Google AR AR", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1472", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295807", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/producto/vdmp3/", "", "0", "Win7", "Chrome 55", "ar", "1920 x 1080", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1473", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295809", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/producto/vdmp3/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/producto/vdmp3/", "", "0", "Win7", "Chrome 55", "ar", "1920 x 1080", "", "", "", "", "", "0", "556", "0");
INSERT INTO `wp_wassup` VALUES("1474", "0b_de75238605206206f5d5a0298cc850ca", "1484295817", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1475", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295836", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/contacto/", "", "0", "Win7", "Chrome 55", "ar", "1920 x 1080", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1476", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295837", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/contacto/?_wpcf7_is_ajax_call=1&_wpcf7=5&_wpcf7_request_ver=1484317491058", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/contacto/", "", "0", "Win7", "Chrome 55", "ar", "1920 x 1080", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1477", "0b_0aa674004ab862689c0ff090a8d02a3b", "1484295856", "186.183.76.3", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/producto/vdmp3/", "", "0", "Win7", "Chrome 55", "ar", "1920 x 1080", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1478", "0b_e1c903773ce56d0613f6a226c6e79dfa", "1484295877", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1479", "0b_96fd070db4573392132d966687d33b3d", "1484295937", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1480", "0b_bfc0f266e3eb3bc93d1ffb5ec0c92103", "1484295997", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1481", "0b_f37a92a73afe4c1231be76a2f9a7c619", "1484296057", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1482", "0b_7d5259d045c4f9e847e21895ea8f51d9", "1484296117", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1483", "0b_03f323cccf7bc6ffdcbc92adf0fd77a9", "1484296177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1484", "0b_0df42866536604b50af59412ec741f83", "1484296237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1485", "0b_0f29c28b7faf4789468b128580c381fa", "1484296297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1486", "0b_69048e64e8f132b1803ed1c50fb223ed", "1484296357", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1487", "0b_fd7f2ed4cb2341ad055e6070cb47bc5c", "1484296418", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1488", "0b_2cb91011f1f292c435ef64a713552121", "1484296477", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1489", "0b_a55aff3ce134158dd31d1c47bdecfc13", "1484296537", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1490", "0b_0c3cdaf6b91de589f750b7007b759141", "1484296599", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1491", "0b_4996134b117a661ecf96b629115e4d00", "1484296657", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1492", "0b_0df13d8bee88b22249a52e522e885f73", "1484296717", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1493", "0b_cbd98df42fe42910dfa1401004bab4f3", "1484296777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1494", "0b_0df42866536604b50af59412ec741f83", "1484296837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1495", "0b_0f29c28b7faf4789468b128580c381fa", "1484296897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1496", "0b_69048e64e8f132b1803ed1c50fb223ed", "1484296957", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1497", "0b_fd7f2ed4cb2341ad055e6070cb47bc5c", "1484297018", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1498", "0b_2cb91011f1f292c435ef64a713552121", "1484297077", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1499", "0b_a55aff3ce134158dd31d1c47bdecfc13", "1484297137", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1500", "0b_0c3cdaf6b91de589f750b7007b759141", "1484297197", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1501", "0b_4996134b117a661ecf96b629115e4d00", "1484297257", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1502", "0b_0df13d8bee88b22249a52e522e885f73", "1484297326", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1503", "0b_cbd98df42fe42910dfa1401004bab4f3", "1484297377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1504", "0b_0df42866536604b50af59412ec741f83", "1484297438", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1505", "0b_0f29c28b7faf4789468b128580c381fa", "1484297497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1506", "0b_69048e64e8f132b1803ed1c50fb223ed", "1484297557", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1507", "0b_fd7f2ed4cb2341ad055e6070cb47bc5c", "1484297617", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1508", "0b_2cb91011f1f292c435ef64a713552121", "1484297678", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1509", "0b_a55aff3ce134158dd31d1c47bdecfc13", "1484297737", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1510", "0b_0c3cdaf6b91de589f750b7007b759141", "1484297798", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1511", "0b_4996134b117a661ecf96b629115e4d00", "1484297857", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1512", "0b_0df13d8bee88b22249a52e522e885f73", "1484297917", "96.31.66.245", "s415.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1513", "0b_cbd98df42fe42910dfa1401004bab4f3", "1484297977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1514", "0b_c54f57574934000607e725fa88295aef", "1484298037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1515", "0b_f2937cd0b97d8b3c8e49b498cf6180a7", "1484298097", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1516", "0b_5f513097b82bc7546e0c66bd5829124d", "1484298157", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1517", "0b_68063dac7db6e3ff844d5ced262972bb", "1484298217", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1518", "0b_743d5d1f5e8d8d5ab6d2ed6762a3ec18", "1484298277", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1519", "0b_12db9c77851e249c8417096ec57e9cb2", "1484298338", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1520", "0b_a646c2cd0c0b3dd41b0fd0909e864223", "1484298397", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1521", "0b_aceeff876dd1bb4feed637a2d2120971", "1484298457", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1522", "0b_57223cee01f9d31bbcefeae87f65a42d", "1484298577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1523", "0b_c54f57574934000607e725fa88295aef", "1484298637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1524", "0b_f2937cd0b97d8b3c8e49b498cf6180a7", "1484298697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1525", "0b_e806910583a8547bc60accad225a284c", "1484298757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1526", "0b_5f513097b82bc7546e0c66bd5829124d", "1484298817", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1527", "0b_68063dac7db6e3ff844d5ced262972bb", "1484298877", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1528", "0b_743d5d1f5e8d8d5ab6d2ed6762a3ec18", "1484298937", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1529", "0b_12db9c77851e249c8417096ec57e9cb2", "1484298998", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1530", "0b_a646c2cd0c0b3dd41b0fd0909e864223", "1484299057", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1531", "0b_aceeff876dd1bb4feed637a2d2120971", "1484299117", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1532", "0b_57223cee01f9d31bbcefeae87f65a42d", "1484299177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1533", "0b_c54f57574934000607e725fa88295aef", "1484299237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1534", "0b_f2937cd0b97d8b3c8e49b498cf6180a7", "1484299297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1535", "0b_e806910583a8547bc60accad225a284c", "1484299357", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1536", "0b_5f513097b82bc7546e0c66bd5829124d", "1484299417", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1537", "0b_68063dac7db6e3ff844d5ced262972bb", "1484299477", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1538", "0b_743d5d1f5e8d8d5ab6d2ed6762a3ec18", "1484299537", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1539", "0b_12db9c77851e249c8417096ec57e9cb2", "1484299597", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1540", "0b_a646c2cd0c0b3dd41b0fd0909e864223", "1484299657", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1541", "0b_aceeff876dd1bb4feed637a2d2120971", "1484299717", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1542", "0b_57223cee01f9d31bbcefeae87f65a42d", "1484299777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1543", "0b_2156b9628da055b6846a017b316c615d", "1484299837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1544", "0b_fb76eba6665a9eab3448a44d74f8a588", "1484299897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1545", "0b_73afb457e1ef1d3778592a240903c27d", "1484299958", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1546", "0b_d9a4323abf8f0cc03e03962fabf0dfca", "1484300018", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1547", "0b_fa87fb1b027d70c5f6e614675f46d4b6", "1484300077", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1548", "0b_769360d6181815681ad9171edd7f225b", "1484300137", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1549", "0b_8b0b76c833da23f3dc1ecc29b2d929e3", "1484300197", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1550", "0b_54e728db73b230a6d9c62fc2d9f5403e", "1484300257", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1551", "0b_885159f5a2c3da81692166e24ba05dc9", "1484300318", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1552", "0b_3587f485d5d5df1de9bc155b29a1bb5a", "1484300377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1553", "0b_2156b9628da055b6846a017b316c615d", "1484300437", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1554", "0b_fb76eba6665a9eab3448a44d74f8a588", "1484300497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1555", "0b_73afb457e1ef1d3778592a240903c27d", "1484300557", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1556", "0b_d9a4323abf8f0cc03e03962fabf0dfca", "1484300617", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1557", "0b_fa87fb1b027d70c5f6e614675f46d4b6", "1484300677", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1558", "0b_769360d6181815681ad9171edd7f225b", "1484300737", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1559", "0b_8b0b76c833da23f3dc1ecc29b2d929e3", "1484300797", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1560", "0b_54e728db73b230a6d9c62fc2d9f5403e", "1484300857", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1561", "0b_885159f5a2c3da81692166e24ba05dc9", "1484300918", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1562", "0b_3587f485d5d5df1de9bc155b29a1bb5a", "1484300977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1563", "0b_2156b9628da055b6846a017b316c615d", "1484301037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1564", "0b_fb76eba6665a9eab3448a44d74f8a588", "1484301098", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1565", "0b_87b9b0a92926a24bd8a20eed29d9ed3a", "1484301119", "5.255.250.15", "spider-5-255-250-15.yandex.com", "/", "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)", "", "", "0", "", "", "ru", "", "", "YandexBot", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1566", "0b_73afb457e1ef1d3778592a240903c27d", "1484301157", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1567", "0b_d9a4323abf8f0cc03e03962fabf0dfca", "1484301217", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1568", "0b_fa87fb1b027d70c5f6e614675f46d4b6", "1484301277", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1569", "0b_769360d6181815681ad9171edd7f225b", "1484301337", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1570", "0b_8b0b76c833da23f3dc1ecc29b2d929e3", "1484301398", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1571", "0b_54e728db73b230a6d9c62fc2d9f5403e", "1484301458", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1572", "0b_885159f5a2c3da81692166e24ba05dc9", "1484301517", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1573", "0b_3587f485d5d5df1de9bc155b29a1bb5a", "1484301577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1574", "0b_e5b0c09fe21cf48bd276110a6b0f38c7", "1484301638", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1575", "0b_5d213ef7ede73f93b7f9c9e0affe70d1", "1484301644", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1576", "0b_c32bb302e9b07e8c5dd55cc170ec3787", "1484301698", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1577", "0b_2a87f91c7fd82d9d156d38d6329aa316", "1484301758", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1578", "0b_d8981b0d9c5e4c0656d65c5c745beda7", "1484301817", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1579", "0b_8af4880adbde6ee1416650a5a612a760", "1484301877", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1580", "0b_326217ba312b909d8fcc2bbaa062116e", "1484301937", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1581", "0b_a9c94982f990fe5d828e7d6c5d417b83", "1484301998", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1582", "0b_5d213ef7ede73f93b7f9c9e0affe70d1", "1484302058", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1583", "0b_9232f204e1401e78b8ec78af10b15045", "1484302118", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1584", "0b_ce957218784e8bfc07ad087658307419", "1484302178", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1585", "0b_e5b0c09fe21cf48bd276110a6b0f38c7", "1484302248", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1586", "0b_c32bb302e9b07e8c5dd55cc170ec3787", "1484302298", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1587", "0b_2a87f91c7fd82d9d156d38d6329aa316", "1484302357", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1588", "0b_d8981b0d9c5e4c0656d65c5c745beda7", "1484302417", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1589", "0b_8af4880adbde6ee1416650a5a612a760", "1484302477", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1590", "0b_326217ba312b909d8fcc2bbaa062116e", "1484302537", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1591", "0b_a9c94982f990fe5d828e7d6c5d417b83", "1484302597", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1592", "0b_5d213ef7ede73f93b7f9c9e0affe70d1", "1484302657", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1593", "0b_9232f204e1401e78b8ec78af10b15045", "1484302717", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1594", "0b_ce957218784e8bfc07ad087658307419", "1484302777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1595", "0b_e5b0c09fe21cf48bd276110a6b0f38c7", "1484302837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1596", "0b_c32bb302e9b07e8c5dd55cc170ec3787", "1484302897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1597", "0b_2a87f91c7fd82d9d156d38d6329aa316", "1484302958", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1598", "0b_0596169d9165f51edf65ca97a2387566", "1484302979", "201.200.147.81", "201.200.147.81", "/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1599", "0b_d8981b0d9c5e4c0656d65c5c745beda7", "1484303017", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1600", "0b_0596169d9165f51edf65ca97a2387566", "1484303029", "201.200.147.81", "201.200.147.81", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1601", "0b_0596169d9165f51edf65ca97a2387566", "1484303044", "201.200.147.81", "201.200.147.81", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1602", "0b_8cc2b6874e97f462e4cd6acf962b833f", "1484303045", "173.252.90.98", "173.252.90.98", "[404] /images/img/bannerPATRONS.png", "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)", "", "", "0", "", "", "", "", "", "facebookexternalhit", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1603", "0b_82c36938b2c1cbf6c99391d36a561bb6", "1484303046", "173.252.90.110", "173.252.90.110", "[404] /images/img/bannerPATRONS.png", "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)", "", "", "0", "", "", "", "", "", "facebookexternalhit", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1604", "0b_0596169d9165f51edf65ca97a2387566", "1484303057", "201.200.147.81", "201.200.147.81", "/?wc-ajax=mad_action_login_popup", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1605", "0b_0596169d9165f51edf65ca97a2387566", "1484303073", "201.200.147.81", "201.200.147.81", "/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "sandi", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1606", "0b_8af4880adbde6ee1416650a5a612a760", "1484303078", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1607", "0b_326217ba312b909d8fcc2bbaa062116e", "1484303137", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1608", "0b_a9c94982f990fe5d828e7d6c5d417b83", "1484303197", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1609", "0b_5d213ef7ede73f93b7f9c9e0affe70d1", "1484303257", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1610", "0b_9232f204e1401e78b8ec78af10b15045", "1484303317", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1611", "0b_ce957218784e8bfc07ad087658307419", "1484303377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1612", "0b_71e0538de7c067e5d76279a161652033", "1484303437", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1613", "0b_92f088b350c3735c2026c715fa6ad1ec", "1484303497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1614", "0b_35e983216755c6742b560bb353c06cc3", "1484303557", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1615", "0b_98424cd86b153929cd70bde4cf7561ce", "1484303618", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1616", "0b_d0b64634f5a93394baa848b6f2825614", "1484303677", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1617", "0b_1893fb7f8ebccad74f7c5b6cd060897c", "1484303737", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1618", "0b_a5e5935c3129cca251e4b7dfa84552cf", "1484303798", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1619", "0b_d16d9a05750779c3f14c866d40be0da1", "1484303857", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1620", "0b_4cf2715b4f685c54be0cec9acdfa011e", "1484303918", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1621", "0b_002fd14d0c9799e89e6646894dc55728", "1484303977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1622", "0b_71e0538de7c067e5d76279a161652033", "1484304037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1623", "0b_92f088b350c3735c2026c715fa6ad1ec", "1484304097", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1624", "0b_35e983216755c6742b560bb353c06cc3", "1484304157", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1625", "0b_98424cd86b153929cd70bde4cf7561ce", "1484304217", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1626", "0b_d0b64634f5a93394baa848b6f2825614", "1484304278", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1627", "0b_1893fb7f8ebccad74f7c5b6cd060897c", "1484304337", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1628", "0b_a5e5935c3129cca251e4b7dfa84552cf", "1484304397", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1629", "0b_d16d9a05750779c3f14c866d40be0da1", "1484304461", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1630", "0b_4cf2715b4f685c54be0cec9acdfa011e", "1484304517", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1631", "0b_002fd14d0c9799e89e6646894dc55728", "1484304577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1632", "0b_71e0538de7c067e5d76279a161652033", "1484304637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1633", "0b_92f088b350c3735c2026c715fa6ad1ec", "1484304697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1634", "0b_35e983216755c6742b560bb353c06cc3", "1484304757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1635", "0b_98424cd86b153929cd70bde4cf7561ce", "1484304817", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1636", "0b_d0b64634f5a93394baa848b6f2825614", "1484304877", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1637", "0b_1893fb7f8ebccad74f7c5b6cd060897c", "1484304941", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1638", "0b_a5e5935c3129cca251e4b7dfa84552cf", "1484304997", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1639", "0b_d16d9a05750779c3f14c866d40be0da1", "1484305057", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1640", "0b_4cf2715b4f685c54be0cec9acdfa011e", "1484305117", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1641", "0b_0596169d9165f51edf65ca97a2387566", "1484305171", "201.200.147.81", "201.200.147.81", "/producto/vdmp3/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/wp-admin/admin.php?page=wassup&last=1&type=everything&pp=2", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "sandi", "", "0", "556", "0");
INSERT INTO `wp_wassup` VALUES("1642", "0b_002fd14d0c9799e89e6646894dc55728", "1484305182", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1643", "0b_34371b525fdf734e225900f67879515c", "1484305237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1644", "0b_f151d3c8dab7f0ab0d0922a4cea5db5a", "1484305297", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1645", "0b_48c7a765b39cb7d4f92ae40201d421f9", "1484305358", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1646", "0b_c7965f1c3ca9688294bb18bd4f48db94", "1484305417", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1647", "0b_3bd29fecf08a437f9be896be2979d976", "1484305478", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1648", "0b_842dd97daf09caf3ae6c041fc2672052", "1484305538", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1649", "0b_9b5016da1f2b9d95a6a0ef6ba3b175fe", "1484305597", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1650", "0b_b1b88bd11950c78383989ff106735a81", "1484305657", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1651", "0b_4e4009805bd7c4ccf76f1b1873a0e6d9", "1484305718", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1652", "0b_c889651ecc022795b0e60cd8326f5cc1", "1484305777", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1653", "0b_34371b525fdf734e225900f67879515c", "1484305837", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1654", "0b_f151d3c8dab7f0ab0d0922a4cea5db5a", "1484305897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1655", "0b_48c7a765b39cb7d4f92ae40201d421f9", "1484305957", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1656", "0b_c7965f1c3ca9688294bb18bd4f48db94", "1484306018", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1657", "0b_3bd29fecf08a437f9be896be2979d976", "1484306077", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1658", "0b_842dd97daf09caf3ae6c041fc2672052", "1484306138", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1659", "0b_9b5016da1f2b9d95a6a0ef6ba3b175fe", "1484306198", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1660", "0b_b1b88bd11950c78383989ff106735a81", "1484306257", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1661", "0b_4e4009805bd7c4ccf76f1b1873a0e6d9", "1484306317", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1662", "0b_c889651ecc022795b0e60cd8326f5cc1", "1484306377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1663", "0b_34371b525fdf734e225900f67879515c", "1484306440", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1664", "0b_f151d3c8dab7f0ab0d0922a4cea5db5a", "1484306497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1665", "0b_b691026b1f53772755ddc4cb22825277", "1484306498", "209.58.131.213", "s488.pingdom.com", "/", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "", "0", "Linux", "Chrome 39", "us", "1280 x 1024", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1666", "0b_b691026b1f53772755ddc4cb22825277", "1484306501", "209.58.131.213", "s488.pingdom.com", "/wp-admin/admin-ajax.php", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "http://csandi.xyz/", "", "0", "Linux", "Chrome 39", "us", "1280 x 1024", "", "", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1667", "0b_b691026b1f53772755ddc4cb22825277", "1484306504", "209.58.131.213", "s488.pingdom.com", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "http://csandi.xyz/", "", "0", "Linux", "Chrome 39", "us", "1280 x 1024", "", "", "", "", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1668", "0b_48c7a765b39cb7d4f92ae40201d421f9", "1484306557", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1669", "0b_c7965f1c3ca9688294bb18bd4f48db94", "1484306617", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1670", "0b_3bd29fecf08a437f9be896be2979d976", "1484306678", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1671", "0b_c889651ecc022795b0e60cd8326f5cc1", "1484306977", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1672", "0b_859469ce196068c633e1e5bf108457f4", "1484307037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1673", "0b_9520737e893c8adc962a34364a023a50", "1484307098", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1674", "0b_9927e5a1e7e613433a64616fa918357f", "1484307158", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1675", "0b_d7e64c234e123616227acc50b387d3c2", "1484307219", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1676", "0b_6a379ff4266b4a9f6c7d1a8e1b66fda4", "1484307277", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1677", "0b_fdf23b849642cb1dad1736cd8516aad5", "1484307337", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1678", "0b_d987d0d8202f15cc0bd9ec38c9228f1f", "1484307397", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1679", "0b_7c7087147e3fed33e976f15e72853fcf", "1484307457", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1680", "0b_17008268e07a2e0f22b840835e2c485a", "1484307518", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1681", "0b_779053cc9f6db5be07a409b42f51baad", "1484307577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1682", "0b_859469ce196068c633e1e5bf108457f4", "1484307637", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1683", "0b_9520737e893c8adc962a34364a023a50", "1484307697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1684", "0b_9927e5a1e7e613433a64616fa918357f", "1484307757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1685", "0b_d7e64c234e123616227acc50b387d3c2", "1484307817", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1686", "0b_6a379ff4266b4a9f6c7d1a8e1b66fda4", "1484307877", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1687", "0b_fdf23b849642cb1dad1736cd8516aad5", "1484307938", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1688", "0b_d987d0d8202f15cc0bd9ec38c9228f1f", "1484307997", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1689", "0b_7c7087147e3fed33e976f15e72853fcf", "1484308058", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1690", "0b_17008268e07a2e0f22b840835e2c485a", "1484308118", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1691", "0b_779053cc9f6db5be07a409b42f51baad", "1484308177", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1692", "0b_859469ce196068c633e1e5bf108457f4", "1484308237", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1693", "0b_9520737e893c8adc962a34364a023a50", "1484308298", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1694", "0b_9927e5a1e7e613433a64616fa918357f", "1484308359", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1695", "0b_d7e64c234e123616227acc50b387d3c2", "1484308418", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1696", "0b_6a379ff4266b4a9f6c7d1a8e1b66fda4", "1484308478", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1697", "0b_fdf23b849642cb1dad1736cd8516aad5", "1484308539", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1698", "0b_d987d0d8202f15cc0bd9ec38c9228f1f", "1484308597", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1699", "0b_7c7087147e3fed33e976f15e72853fcf", "1484308657", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1700", "0b_17008268e07a2e0f22b840835e2c485a", "1484308719", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1701", "0b_779053cc9f6db5be07a409b42f51baad", "1484308778", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1702", "0b_553923513c2c6b4ad4dc549443949ceb", "1484308838", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1703", "0b_2174c6bc91e42992951a363e80386626", "1484308897", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1704", "0b_025550b02989ec72cb47764005a61f79", "1484308930", "201.200.147.81", "201.200.147.81", "/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "sandi", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1705", "0b_025550b02989ec72cb47764005a61f79", "1484308932", "201.200.147.81", "201.200.147.81", "/?wc-ajax=get_refreshed_fragments", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/", "", "0", "Win10", "Google Chrome", "us", "1280 x 800", "", "", "", "sandi", "", "0", "38", "0");
INSERT INTO `wp_wassup` VALUES("1706", "0b_9e46654ebfc028a469a4ae1e7f16d17a", "1484308957", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1707", "0b_746285c033d7b9004f92c97b55c0a454", "1484309017", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1708", "0b_e99afe1bf6591f800d7e7b2614bcfc60", "1484309077", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1709", "0b_610d7ac261c0a354d125166b1ce69f69", "1484309137", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1710", "0b_6d36acdde6bcc0dd058e4f072f3c2326", "1484309197", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1711", "0b_32b49e7b0022ed0aa2d5744aa1bdb184", "1484309257", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1712", "0b_6cb659fc2342e4954e28f4171a912b84", "1484309317", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1713", "0b_73449f8dfbbd25257c8c7fe980465f43", "1484309377", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1714", "0b_553923513c2c6b4ad4dc549443949ceb", "1484309437", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1715", "0b_2174c6bc91e42992951a363e80386626", "1484309497", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1716", "0b_9e46654ebfc028a469a4ae1e7f16d17a", "1484309557", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1717", "0b_746285c033d7b9004f92c97b55c0a454", "1484309617", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1718", "0b_e99afe1bf6591f800d7e7b2614bcfc60", "1484309677", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1719", "0b_610d7ac261c0a354d125166b1ce69f69", "1484309737", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1720", "0b_6d36acdde6bcc0dd058e4f072f3c2326", "1484309797", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1721", "0b_32b49e7b0022ed0aa2d5744aa1bdb184", "1484309858", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1722", "0b_6cb659fc2342e4954e28f4171a912b84", "1484309917", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1723", "0b_73449f8dfbbd25257c8c7fe980465f43", "1484309978", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1724", "0b_553923513c2c6b4ad4dc549443949ceb", "1484310037", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1725", "0b_2174c6bc91e42992951a363e80386626", "1484310100", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1726", "0b_9e46654ebfc028a469a4ae1e7f16d17a", "1484310159", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1727", "0b_746285c033d7b9004f92c97b55c0a454", "1484310217", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1728", "0b_e99afe1bf6591f800d7e7b2614bcfc60", "1484310277", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1729", "0b_610d7ac261c0a354d125166b1ce69f69", "1484310337", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1730", "0b_6d36acdde6bcc0dd058e4f072f3c2326", "1484310397", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1731", "0b_32b49e7b0022ed0aa2d5744aa1bdb184", "1484310457", "209.126.117.87", "s4007.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1732", "0b_6cb659fc2342e4954e28f4171a912b84", "1484310517", "85.93.93.123", "s4011.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1733", "0b_73449f8dfbbd25257c8c7fe980465f43", "1484310577", "82.103.139.165", "s4006.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1734", "0b_405a6b4b7be3db563c0265c61133a0c3", "1484310638", "76.72.167.90", "s443.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1735", "0b_8b58800b8eea387dd68b8a870cc2b878", "1484310697", "208.43.68.59", "s418.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1736", "0b_d89b8d5b4a8044e5148cbeb3609954a7", "1484310757", "199.87.228.66", "s444.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1737", "0b_36cfbcce5e88ba2f19c96171f279c7c6", "1484310817", "208.64.28.194", "s450.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1738", "0b_0cf55189e4a7d0e6da3d6f5540bb8a4e", "1484310878", "184.75.208.210", "s447.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1739", "0b_92b3d288fd1ec66420e32e20ac07a370", "1484310937", "108.62.115.226", "s435.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup` VALUES("1740", "0b_99dfbd006202f70976ae091f89a6b0a9", "1484310997", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");

/* INSERT TABLE DATA: wp_wassup_meta */
INSERT INTO `wp_wassup_meta` VALUES("9", "185.39.146.215", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484338597");
INSERT INTO `wp_wassup_meta` VALUES("10", "185.39.146.215", "hostname", "s4001.pingdom.com", "1484466278");
INSERT INTO `wp_wassup_meta` VALUES("67", "31.220.20.100", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484337164");
INSERT INTO `wp_wassup_meta` VALUES("68", "184.75.208.210", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484338477");
INSERT INTO `wp_wassup_meta` VALUES("69", "184.75.208.210", "hostname", "s447.pingdom.com", "1484466349");
INSERT INTO `wp_wassup_meta` VALUES("70", "85.93.93.123", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484338717");
INSERT INTO `wp_wassup_meta` VALUES("71", "85.93.93.123", "hostname", "s4011.pingdom.com", "1484466397");
INSERT INTO `wp_wassup_meta` VALUES("97", "54.213.4.169", "hostname", "ec2-54-213-4-169.us-west-2.compute.amazonaws.com", "1484489106");
INSERT INTO `wp_wassup_meta` VALUES("73", "109.123.101.103", "hostname", "s4014.pingdom.com", "1484466457");
INSERT INTO `wp_wassup_meta` VALUES("75", "96.31.66.245", "hostname", "s415.pingdom.com", "1484466517");
INSERT INTO `wp_wassup_meta` VALUES("76", "82.103.139.165", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484332177");
INSERT INTO `wp_wassup_meta` VALUES("77", "82.103.139.165", "hostname", "s4006.pingdom.com", "1484466577");
INSERT INTO `wp_wassup_meta` VALUES("78", "208.43.68.59", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484339497");
INSERT INTO `wp_wassup_meta` VALUES("79", "208.43.68.59", "hostname", "s418.pingdom.com", "1484466638");
INSERT INTO `wp_wassup_meta` VALUES("80", "208.64.28.194", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484339017");
INSERT INTO `wp_wassup_meta` VALUES("81", "208.64.28.194", "hostname", "s450.pingdom.com", "1484466700");
INSERT INTO `wp_wassup_meta` VALUES("82", "108.62.115.226", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484339137");
INSERT INTO `wp_wassup_meta` VALUES("83", "108.62.115.226", "hostname", "s435.pingdom.com", "1484466817");
INSERT INTO `wp_wassup_meta` VALUES("84", "209.126.117.87", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484339257");
INSERT INTO `wp_wassup_meta` VALUES("85", "209.126.117.87", "hostname", "s4007.pingdom.com", "1484466937");
INSERT INTO `wp_wassup_meta` VALUES("102", "wp_wassup", "_table_status", "O:8:\"stdClass\":18:{s:4:\"Name\";s:9:\"wp_wassup\";s:6:\"Engine\";s:6:\"MyISAM\";s:7:\"Version\";s:2:\"10\";s:10:\"Row_format\";s:7:\"Dynamic\";s:4:\"Rows\";s:4:\"1709\";s:14:\"Avg_row_length\";s:3:\"173\";s:11:\"Data_length\";s:6:\"297052\";s:15:\"Max_data_length\";s:15:\"281474976710655\";s:12:\"Index_length\";s:5:\"82944\";s:9:\"Data_free\";s:1:\"0\";s:14:\"Auto_increment\";s:4:\"1710\";s:11:\"Create_time\";s:19:\"2017-01-13 07:43:45\";s:11:\"Update_time\";s:19:\"2017-01-13 18:05:19\";s:10:\"Check_time\";s:19:\"2017-01-13 07:44:40\";s:9:\"Collation\";s:22:\"utf8mb4_unicode_520_ci\";s:8:\"Checksum\";N;s:14:\"Create_options\";s:0:\"\";s:7:\"Comment\";s:0:\"\";}", "1484334339");
INSERT INTO `wp_wassup_meta` VALUES("88", "66.249.64.186", "hostname", "crawl-66-249-64-186.googlebot.com", "1484474159");
INSERT INTO `wp_wassup_meta` VALUES("90", "66.249.64.182", "hostname", "crawl-66-249-64-182.googlebot.com", "1484474161");
INSERT INTO `wp_wassup_meta` VALUES("92", "66.249.64.178", "hostname", "crawl-66-249-64-178.googlebot.com", "1484475973");
INSERT INTO `wp_wassup_meta` VALUES("93", "76.72.167.90", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484338237");
INSERT INTO `wp_wassup_meta` VALUES("94", "76.72.167.90", "hostname", "s443.pingdom.com", "1484480437");
INSERT INTO `wp_wassup_meta` VALUES("99", "186.183.76.3", "hostname", "pub-cust-3.76.183.186.bf.directvnet.com.ar", "1484490202");
INSERT INTO `wp_wassup_meta` VALUES("100", "199.87.228.66", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484335357");
INSERT INTO `wp_wassup_meta` VALUES("101", "199.87.228.66", "hostname", "s444.pingdom.com", "1484493157");
INSERT INTO `wp_wassup_meta` VALUES("103", "5.255.250.15", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484329919");
INSERT INTO `wp_wassup_meta` VALUES("104", "5.255.250.15", "hostname", "spider-5-255-250-15.yandex.com", "1484495519");
INSERT INTO `wp_wassup_meta` VALUES("105", "201.200.147.81", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484331779");
INSERT INTO `wp_wassup_meta` VALUES("106", "173.252.90.98", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484331845");
INSERT INTO `wp_wassup_meta` VALUES("107", "173.252.90.110", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484331846");
INSERT INTO `wp_wassup_meta` VALUES("112", "209.58.131.213", "_sessionhash", "8874a0bbd0fb14f60cff69479f306c9a", "1484335298");
INSERT INTO `wp_wassup_meta` VALUES("113", "209.58.131.213", "hostname", "s488.pingdom.com", "1484500898");

/* INSERT TABLE DATA: wp_wassup_tmp */
INSERT INTO `wp_wassup_tmp` VALUES("1758", "0b_99dfbd006202f70976ae091f89a6b0a9", "1484310997", "185.39.146.215", "s4001.pingdom.com", "/", "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)", "", "", "0", "", "", "", "", "", "Pingdom", "", "", "", "0", "0", "0");
INSERT INTO `wp_wassup_tmp` VALUES("1750", "0b_025550b02989ec72cb47764005a61f79", "1484310571", "201.200.147.81", "201.200.147.81", "/wp-admin/admin.php?page=duplicator&action=detail&tab=detail&id=1&wc-hide-notice=install&_wc_notice_nonce=74a18b1263", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "http://csandi.xyz/wp-admin/admin.php?page=duplicator&action=detail&tab=detail&id=1", "", "0", "", "", "us", "1280 x 800", "", "", "", "sandi", "", "0", "0", "0");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2017-01-13 18:37:28*/
/* DUPLICATOR_MYSQLDUMP_EOF */
