-- MySQL dump 10.13  Distrib 5.7.29, for Win64 (x86_64)
--
-- Host: localhost    Database: chicagolandremodeling_wp
-- ------------------------------------------------------
-- Server version	5.7.29-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `ts_redirects`
--

DROP TABLE IF EXISTS `ts_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ts_redirects` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` text,
  `section` text,
  `new_link` text,
  `old_link` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ts_redirects`
--

LOCK TABLES `ts_redirects` WRITE;
/*!40000 ALTER TABLE `ts_redirects` DISABLE KEYS */;
INSERT INTO `ts_redirects` VALUES (86,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/chimney'),(87,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/gutters-downspouts/‎'),(88,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/remodeling-painting/'),(89,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/patios/‎'),(90,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/roofing/'),(91,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/additional-roofing/‎'),(92,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/shingles/'),(93,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/stairs/‎'),(94,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/gutters-downspouts/‎'),(95,'','','https://chicagolandremodeling.com/','https://chicagolandremodeling.com/decks-porches/'),(96,'','','https://chicagolandremodeling.com','https://chicagolandremodeling.com/siding-windows/'),(97,'','','https://chicagolandremodeling.com/home-remodeling-contractors-schaumburg-il','https://chicagolandremodeling.com/chicagoland-remodeling-home-remodeling-contractors-schaumburg-il/'),(98,'','','https://chicagolandremodeling.com','https://chicagolandremodeling.com/content');
/*!40000 ALTER TABLE `ts_redirects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_album`
--

DROP TABLE IF EXISTS `wp_bwg_album`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_album` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` mediumtext NOT NULL,
  `preview_image` mediumtext NOT NULL,
  `random_preview_image` mediumtext NOT NULL,
  `order` bigint(20) NOT NULL,
  `author` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `modified_date` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_album`
--

LOCK TABLES `wp_bwg_album` WRITE;
/*!40000 ALTER TABLE `wp_bwg_album` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_album` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_album_gallery`
--

DROP TABLE IF EXISTS `wp_bwg_album_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_album_gallery` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `album_id` bigint(20) NOT NULL,
  `is_album` tinyint(1) NOT NULL,
  `alb_gal_id` bigint(20) NOT NULL,
  `order` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_album_gallery`
--

LOCK TABLES `wp_bwg_album_gallery` WRITE;
/*!40000 ALTER TABLE `wp_bwg_album_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_album_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_file_paths`
--

DROP TABLE IF EXISTS `wp_bwg_file_paths`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_file_paths` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `is_dir` tinyint(1) DEFAULT '0',
  `path` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `type` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `filename` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `alt` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `thumb` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `size` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `resolution` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `credit` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `aperture` int(10) DEFAULT NULL,
  `camera` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `caption` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `iso` int(10) DEFAULT NULL,
  `orientation` int(10) DEFAULT NULL,
  `copyright` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `tags` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `date_modified` datetime DEFAULT NULL,
  `resolution_thumb` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_file_paths`
--

LOCK TABLES `wp_bwg_file_paths` WRITE;
/*!40000 ALTER TABLE `wp_bwg_file_paths` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_file_paths` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_gallery`
--

DROP TABLE IF EXISTS `wp_bwg_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_gallery` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` mediumtext NOT NULL,
  `page_link` mediumtext NOT NULL,
  `preview_image` mediumtext NOT NULL,
  `random_preview_image` mediumtext NOT NULL,
  `order` bigint(20) NOT NULL,
  `author` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `gallery_type` varchar(32) NOT NULL,
  `gallery_source` varchar(256) NOT NULL,
  `autogallery_image_number` int(4) NOT NULL,
  `update_flag` varchar(32) NOT NULL,
  `modified_date` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_gallery`
--

LOCK TABLES `wp_bwg_gallery` WRITE;
/*!40000 ALTER TABLE `wp_bwg_gallery` DISABLE KEYS */;
INSERT INTO `wp_bwg_gallery` VALUES (1,'gallery','gallery','','','','/thumb/16003157_743584465818383_4763847683830547546_n.jpg',1,1,1,'','',12,'',0),(2,'bathroom','bathroom','','','','/thumb/12645163_570050346505130_1277753494491836901_n (1).jpg',2,1,1,'','',12,'',0),(3,'kitchen','kitchen','','','','/thumb/15940835_743657709144392_3143129532398314477_n (1).jpg',3,1,1,'','',12,'',0),(4,'living room','living-room','','','','/thumb/12592180_570501169793381_2154810404736987256_n (1).jpg',4,1,1,'','',12,'',0);
/*!40000 ALTER TABLE `wp_bwg_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_image`
--

DROP TABLE IF EXISTS `wp_bwg_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_image` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `gallery_id` bigint(20) NOT NULL,
  `slug` longtext NOT NULL,
  `filename` varchar(255) NOT NULL,
  `image_url` mediumtext NOT NULL,
  `thumb_url` mediumtext NOT NULL,
  `description` mediumtext NOT NULL,
  `alt` mediumtext NOT NULL,
  `date` varchar(128) NOT NULL,
  `size` varchar(128) NOT NULL,
  `filetype` varchar(128) NOT NULL,
  `resolution` varchar(128) NOT NULL,
  `author` bigint(20) NOT NULL,
  `order` bigint(20) NOT NULL,
  `published` tinyint(1) NOT NULL,
  `comment_count` bigint(20) NOT NULL,
  `avg_rating` float NOT NULL,
  `rate_count` bigint(20) NOT NULL,
  `hit_count` bigint(20) NOT NULL,
  `redirect_url` varchar(255) NOT NULL,
  `pricelist_id` bigint(20) NOT NULL,
  `modified_date` int(10) NOT NULL DEFAULT '0',
  `resolution_thumb` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=262 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_image`
--

LOCK TABLES `wp_bwg_image` WRITE;
/*!40000 ALTER TABLE `wp_bwg_image` DISABLE KEYS */;
INSERT INTO `wp_bwg_image` VALUES (20,1,'','13521897 637469933096504 8353105607795108762 n','/13521897_637469933096504_8353105607795108762_n.jpg','/thumb/13521897_637469933096504_8353105607795108762_n.jpg','','','2017-01-19 20:18:00','52 KB','JPG','720 x 960 px',1,110,1,0,0,0,9,'',0,0,NULL),(21,1,'','12645163 570050346505130 1277753494491836901 n','/12645163_570050346505130_1277753494491836901_n.jpg','/thumb/12645163_570050346505130_1277753494491836901_n.jpg','','','2017-01-19 20:18:00','171 KB','JPG','945 x 945 px',1,109,1,0,0,0,1,'',0,0,NULL),(22,1,'','12644796 570011393175692 7713018613882527701 n','/12644796_570011393175692_7713018613882527701_n.jpg','/thumb/12644796_570011393175692_7713018613882527701_n.jpg','','','2017-01-19 20:18:00','47 KB','JPG','960 x 720 px',1,108,1,0,0,0,1,'',0,0,NULL),(23,1,'','12642708 570501099793388 6052336799551530073 n','/12642708_570501099793388_6052336799551530073_n.jpg','/thumb/12642708_570501099793388_6052336799551530073_n.jpg','','','2017-01-19 20:18:00','82 KB','JPG','717 x 960 px',1,107,1,0,0,0,4,'',0,0,NULL),(24,1,'','12646978 570019546508210 614149855798770420 n','/12646978_570019546508210_614149855798770420_n.jpg','/thumb/12646978_570019546508210_614149855798770420_n.jpg','','','2017-01-19 20:18:00','48 KB','JPG','633 x 960 px',1,106,1,0,0,0,1,'',0,0,NULL),(25,1,'','12646978 570019546508210 614149855798770420 n (1)','/12646978_570019546508210_614149855798770420_n_(1).jpg','/thumb/12646978_570019546508210_614149855798770420_n_(1).jpg','','','2017-01-19 20:18:00','48 KB','JPG','633 x 960 px',1,105,1,0,0,0,1,'',0,0,NULL),(26,1,'','12651166 570011219842376 4848520979023787312 n','/12651166_570011219842376_4848520979023787312_n.jpg','/thumb/12651166_570011219842376_4848520979023787312_n.jpg','','','2017-01-19 20:18:00','43 KB','JPG','960 x 471 px',1,104,1,0,0,0,1,'',0,0,NULL),(27,1,'','12650932 570050303171801 1433943770704312665 n','/12650932_570050303171801_1433943770704312665_n.jpg','/thumb/12650932_570050303171801_1433943770704312665_n.jpg','','','2017-01-19 20:18:00','67 KB','JPG','720 x 720 px',1,103,1,0,0,0,29,'',0,0,NULL),(28,1,'','12647274 570050366505128 8733642293761913628 n','/12647274_570050366505128_8733642293761913628_n.jpg','/thumb/12647274_570050366505128_8733642293761913628_n.jpg','','','2017-01-19 20:18:00','68 KB','JPG','960 x 640 px',1,102,1,0,0,0,1,'',0,0,NULL),(29,1,'','12592180 570501169793381 2154810404736987256 n','/12592180_570501169793381_2154810404736987256_n.jpg','/thumb/12592180_570501169793381_2154810404736987256_n.jpg','','','2017-01-19 20:18:00','94 KB','JPG','960 x 720 px',1,101,1,0,0,0,2,'',0,0,NULL),(30,1,'','12573956 570050329838465 5370931413428546023 n','/12573956_570050329838465_5370931413428546023_n.jpg','/thumb/12573956_570050329838465_5370931413428546023_n.jpg','','','2017-01-19 20:18:00','120 KB','JPG','924 x 800 px',1,100,1,0,0,0,1,'',0,0,NULL),(31,1,'','12615756 570019556508209 8703234015212932049 o','/12615756_570019556508209_8703234015212932049_o.jpg','/thumb/12615756_570019556508209_8703234015212932049_o.jpg','','','2017-01-19 20:18:00','46 KB','JPG','636 x 960 px',1,99,1,0,0,0,1,'',0,0,NULL),(32,1,'','12592397 570050509838447 1439038136012486472 n','/12592397_570050509838447_1439038136012486472_n.jpg','/thumb/12592397_570050509838447_1439038136012486472_n.jpg','','','2017-01-19 20:18:00','58 KB','JPG','409 x 576 px',1,98,1,0,0,0,1,'',0,0,NULL),(33,1,'','12642524 570050336505131 3450900142641245501 n','/12642524_570050336505131_3450900142641245501_n.jpg','/thumb/12642524_570050336505131_3450900142641245501_n.jpg','','','2017-01-19 20:18:00','67 KB','JPG','500 x 752 px',1,97,1,0,0,0,1,'',0,0,NULL),(34,1,'','12631370 570501129793385 2427550458042026263 n','/12631370_570501129793385_2427550458042026263_n.jpg','/thumb/12631370_570501129793385_2427550458042026263_n.jpg','','','2017-01-19 20:18:00','54 KB','JPG','717 x 960 px',1,96,1,0,0,0,1,'',0,0,NULL),(35,1,'','12615756 570019556508209 8703234015212932049 o (1)','/12615756_570019556508209_8703234015212932049_o_(1).jpg','/thumb/12615756_570019556508209_8703234015212932049_o_(1).jpg','','','2017-01-19 20:18:00','46 KB','JPG','636 x 960 px',1,95,1,0,0,0,132,'',0,0,NULL),(36,1,'','12347820 549506605226171 7051485239278761937 n','/12347820_549506605226171_7051485239278761937_n.jpg','/thumb/12347820_549506605226171_7051485239278761937_n.jpg','','','2017-01-19 20:18:00','85 KB','JPG','600 x 956 px',1,94,1,0,0,0,2,'',0,0,NULL),(37,1,'','12347744 549506041892894 6299806903903345975 n','/12347744_549506041892894_6299806903903345975_n.jpg','/thumb/12347744_549506041892894_6299806903903345975_n.jpg','','','2017-01-19 20:18:00','57 KB','JPG','720 x 960 px',1,93,1,0,0,0,1,'',0,0,NULL),(38,1,'','12524053 570011389842359 4142021874562684539 n','/12524053_570011389842359_4142021874562684539_n.jpg','/thumb/12524053_570011389842359_4142021874562684539_n.jpg','','','2017-01-19 20:18:00','55 KB','JPG','960 x 720 px',1,92,1,0,0,0,1,'',0,0,NULL),(39,1,'','12494973 570050506505114 1987627642840572854 n','/12494973_570050506505114_1987627642840572854_n.jpg','/thumb/12494973_570050506505114_1987627642840572854_n.jpg','','','2017-01-19 20:18:00','49 KB','JPG','500 x 766 px',1,91,1,0,0,0,89,'',0,0,NULL),(40,1,'','12573035 570019559841542 6928788627569452043 n','/12573035_570019559841542_6928788627569452043_n.jpg','/thumb/12573035_570019559841542_6928788627569452043_n.jpg','','','2017-01-19 20:18:00','55 KB','JPG','960 x 797 px',1,90,1,0,0,0,1,'',0,0,NULL),(41,1,'','12573072 570050293171802 5486466788712804657 n','/12573072_570050293171802_5486466788712804657_n.jpg','/thumb/12573072_570050293171802_5486466788712804657_n.jpg','','','2017-01-19 20:18:00','28 KB','JPG','600 x 400 px',1,89,1,0,0,0,4,'',0,0,NULL),(42,1,'','12573069 570050299838468 1448187570967420751 n','/12573069_570050299838468_1448187570967420751_n.jpg','/thumb/12573069_570050299838468_1448187570967420751_n.jpg','','','2017-01-19 20:18:00','57 KB','JPG','844 x 448 px',1,88,1,0,0,0,3,'',0,0,NULL),(43,1,'','12573225 570011416509023 3383754738851414769 n','/12573225_570011416509023_3383754738851414769_n.jpg','/thumb/12573225_570011416509023_3383754738851414769_n.jpg','','','2017-01-19 20:18:00','63 KB','JPG','960 x 720 px',1,87,1,0,0,0,2,'',0,0,NULL),(44,1,'','12301644 549506625226169 8022614526486176571 n','/12301644_549506625226169_8022614526486176571_n.jpg','/thumb/12301644_549506625226169_8022614526486176571_n.jpg','','','2017-01-19 20:18:00','62 KB','JPG','638 x 960 px',1,86,1,0,0,0,2,'',0,0,NULL),(45,1,'','12141783 535457479964417 1950597214023181125 n','/12141783_535457479964417_1950597214023181125_n.jpg','/thumb/12141783_535457479964417_1950597214023181125_n.jpg','','','2017-01-19 20:18:00','60 KB','JPG','720 x 960 px',1,85,1,0,0,0,2,'',0,0,NULL),(46,1,'','12342633 549506038559561 3871454445919471078 n','/12342633_549506038559561_3871454445919471078_n.jpg','/thumb/12342633_549506038559561_3871454445919471078_n.jpg','','','2017-01-19 20:18:00','43 KB','JPG','960 x 720 px',1,84,1,0,0,0,2,'',0,0,NULL),(47,1,'','12115843 535458363297662 4725632183906717294 n','/12115843_535458363297662_4725632183906717294_n.jpg','/thumb/12115843_535458363297662_4725632183906717294_n.jpg','','','2017-01-19 20:18:00','65 KB','JPG','960 x 720 px',1,83,1,0,0,0,3,'',0,0,NULL),(48,1,'','12341132 549506595226172 7218943193500889829 n','/12341132_549506595226172_7218943193500889829_n.jpg','/thumb/12341132_549506595226172_7218943193500889829_n.jpg','','','2017-01-19 20:18:00','28 KB','JPG','474 x 389 px',1,82,1,0,0,0,34,'',0,0,NULL),(49,1,'','12341061 549506628559502 2366480494257592281 n','/12341061_549506628559502_2366480494257592281_n.jpg','/thumb/12341061_549506628559502_2366480494257592281_n.jpg','','','2017-01-19 20:18:00','87 KB','JPG','640 x 602 px',1,81,1,0,0,0,3,'',0,0,NULL),(50,1,'','12314043 549506598559505 5110677711540340295 n','/12314043_549506598559505_5110677711540340295_n.jpg','/thumb/12314043_549506598559505_5110677711540340295_n.jpg','','','2017-01-19 20:18:00','63 KB','JPG','736 x 597 px',1,80,1,0,0,0,3,'',0,0,NULL),(51,1,'','12108898 535489539961211 5414139450149147209 n','/12108898_535489539961211_5414139450149147209_n.jpg','/thumb/12108898_535489539961211_5414139450149147209_n.jpg','','','2017-01-19 20:18:00','110 KB','JPG','720 x 960 px',1,79,1,0,0,0,3,'',0,0,NULL),(52,1,'','12107227 535478976628934 4549332577627786452 n','/12107227_535478976628934_4549332577627786452_n.jpg','/thumb/12107227_535478976628934_4549332577627786452_n.jpg','','','2017-01-19 20:18:00','45 KB','JPG','720 x 960 px',1,78,1,0,0,0,3,'',0,0,NULL),(53,1,'','12108986 535490596627772 3059550426701439617 n','/12108986_535490596627772_3059550426701439617_n.jpg','/thumb/12108986_535490596627772_3059550426701439617_n.jpg','','','2017-01-19 20:18:00','69 KB','JPG','720 x 960 px',1,77,1,0,0,0,6,'',0,0,NULL),(54,1,'','12109204 535490579961107 8614764699116049561 n','/12109204_535490579961107_8614764699116049561_n.jpg','/thumb/12109204_535490579961107_8614764699116049561_n.jpg','','','2017-01-19 20:18:00','81 KB','JPG','960 x 960 px',1,76,1,0,0,0,4,'',0,0,NULL),(55,1,'','12140568 535479019962263 5697872215390796670 n','/12140568_535479019962263_5697872215390796670_n.jpg','/thumb/12140568_535479019962263_5697872215390796670_n.jpg','','','2017-01-19 20:18:00','69 KB','JPG','960 x 720 px',1,75,1,0,0,0,5,'',0,0,NULL),(56,1,'','12107186 570050316505133 1477980368221770425 n','/12107186_570050316505133_1477980368221770425_n.jpg','/thumb/12107186_570050316505133_1477980368221770425_n.jpg','','','2017-01-19 20:18:00','35 KB','JPG','547 x 600 px',1,74,1,0,0,0,6,'',0,0,NULL),(57,1,'','12112206 535479026628929 8206034421439967868 n','/12112206_535479026628929_8206034421439967868_n.jpg','/thumb/12112206_535479026628929_8206034421439967868_n.jpg','','','2017-01-19 20:18:00','58 KB','JPG','960 x 720 px',1,73,1,0,0,0,5,'',0,0,NULL),(58,1,'','11034168 438225193020980 1450865006179507433 n','/11034168_438225193020980_1450865006179507433_n.jpg','/thumb/11034168_438225193020980_1450865006179507433_n.jpg','','','2017-01-19 20:18:00','54 KB','JPG','720 x 960 px',1,72,1,0,0,0,11,'',0,0,NULL),(59,1,'','11041632 438225409687625 583213116448687362 n','/11041632_438225409687625_583213116448687362_n.jpg','/thumb/11041632_438225409687625_583213116448687362_n.jpg','','','2017-01-19 20:18:00','57 KB','JPG','720 x 960 px',1,71,1,0,0,0,4,'',0,0,NULL),(60,1,'','11034422 438227839687382 3536804226667634800 o','/11034422_438227839687382_3536804226667634800_o.jpg','/thumb/11034422_438227839687382_3536804226667634800_o.jpg','','','2017-01-19 20:18:00','119 KB','JPG','717 x 960 px',1,70,1,0,0,0,10,'',0,0,NULL),(61,1,'','12105770 535457476631084 4002854987161378148 n','/12105770_535457476631084_4002854987161378148_n.jpg','/thumb/12105770_535457476631084_4002854987161378148_n.jpg','','','2017-01-19 20:18:00','53 KB','JPG','960 x 720 px',1,69,1,0,0,0,4,'',0,0,NULL),(62,1,'','11043120 438236329686533 6237945620142762719 o','/11043120_438236329686533_6237945620142762719_o.jpg','/thumb/11043120_438236329686533_6237945620142762719_o.jpg','','','2017-01-19 20:18:00','77 KB','JPG','717 x 960 px',1,68,1,0,0,0,5,'',0,0,NULL),(63,1,'','11044945 438228606353972 7546555337041129714 n','/11044945_438228606353972_7546555337041129714_n.jpg','/thumb/11044945_438228606353972_7546555337041129714_n.jpg','','','2017-01-19 20:18:00','70 KB','JPG','960 x 717 px',1,67,1,0,0,0,4,'',0,0,NULL),(64,1,'','11214151 535478966628935 5225915069066191388 n','/11214151_535478966628935_5225915069066191388_n.jpg','/thumb/11214151_535478966628935_5225915069066191388_n.jpg','','','2017-01-19 20:18:00','62 KB','JPG','960 x 720 px',1,66,1,0,0,0,5,'',0,0,NULL),(65,1,'','11021514 436896823153817 5832307778724865252 o','/11021514_436896823153817_5832307778724865252_o.jpg','/thumb/11021514_436896823153817_5832307778724865252_o.jpg','','','2017-01-19 20:18:00','94 KB','JPG','717 x 960 px',1,65,1,0,0,0,5,'',0,0,NULL),(66,1,'','10996082 438237719686394 6890279653051768314 n','/10996082_438237719686394_6890279653051768314_n.jpg','/thumb/10996082_438237719686394_6890279653051768314_n.jpg','','','2017-01-19 20:18:00','135 KB','JPG','960 x 717 px',1,64,1,0,0,0,4,'',0,0,NULL),(67,1,'','11018986 438236249686541 7769720613216341986 o','/11018986_438236249686541_7769720613216341986_o.jpg','/thumb/11018986_438236249686541_7769720613216341986_o.jpg','','','2017-01-19 20:18:00','79 KB','JPG','717 x 960 px',1,63,1,0,0,0,4,'',0,0,NULL),(68,1,'','11025823 438237716353061 8171251320096505730 n','/11025823_438237716353061_8171251320096505730_n.jpg','/thumb/11025823_438237716353061_8171251320096505730_n.jpg','','','2017-01-19 20:18:00','120 KB','JPG','960 x 717 px',1,62,1,0,0,0,4,'',0,0,NULL),(69,1,'','11033156 438228609687305 2219495818012011715 n','/11033156_438228609687305_2219495818012011715_n.jpg','/thumb/11033156_438228609687305_2219495818012011715_n.jpg','','','2017-01-19 20:18:00','46 KB','JPG','960 x 717 px',1,61,1,0,0,0,33,'',0,0,NULL),(70,1,'','11019464 438228603020639 61212216432602678 n','/11019464_438228603020639_61212216432602678_n.jpg','/thumb/11019464_438228603020639_61212216432602678_n.jpg','','','2017-01-19 20:18:00','52 KB','JPG','717 x 960 px',1,60,1,0,0,0,4,'',0,0,NULL),(71,1,'','11022544 438227826354050 8923670901817279643 o','/11022544_438227826354050_8923670901817279643_o.jpg','/thumb/11022544_438227826354050_8923670901817279643_o.jpg','','','2017-01-19 20:18:00','91 KB','JPG','717 x 960 px',1,59,1,0,0,0,4,'',0,0,NULL),(72,1,'','10923260 438225189687647 4050575526091580693 n','/10923260_438225189687647_4050575526091580693_n.jpg','/thumb/10923260_438225189687647_4050575526091580693_n.jpg','','','2017-01-19 20:18:00','46 KB','JPG','720 x 960 px',1,58,1,0,0,0,8,'',0,0,NULL),(73,1,'','10842108 438236293019870 6689291092595391815 o','/10842108_438236293019870_6689291092595391815_o.jpg','/thumb/10842108_438236293019870_6689291092595391815_o.jpg','','','2017-01-19 20:18:00','88 KB','JPG','717 x 960 px',1,57,1,0,0,0,10,'',0,0,NULL),(74,1,'','10989098 438231229687043 7187656089181486111 n','/10989098_438231229687043_7187656089181486111_n.jpg','/thumb/10989098_438231229687043_7187656089181486111_n.jpg','','','2017-01-19 20:18:00','47 KB','JPG','960 x 717 px',1,56,1,0,0,0,4,'',0,0,NULL),(75,1,'','11006467 438231256353707 7030215638843729929 n','/11006467_438231256353707_7030215638843729929_n.jpg','/thumb/11006467_438231256353707_7030215638843729929_n.jpg','','','2017-01-19 20:18:00','62 KB','JPG','717 x 960 px',1,55,1,0,0,0,26,'',0,0,NULL),(76,1,'','10997610 438231249687041 8985810256654604275 n','/10997610_438231249687041_8985810256654604275_n.jpg','/thumb/10997610_438231249687041_8985810256654604275_n.jpg','','','2017-01-19 20:18:00','51 KB','JPG','960 x 717 px',1,54,1,0,0,0,37,'',0,0,NULL),(77,1,'','11016085 438241139686052 6607147946269238720 n','/11016085_438241139686052_6607147946269238720_n.jpg','/thumb/11016085_438241139686052_6607147946269238720_n.jpg','','','2017-01-19 20:18:00','69 KB','JPG','960 x 717 px',1,53,1,0,0,0,10,'',0,0,NULL),(78,1,'','10665813 438227429687423 541027406052090851 n','/10665813_438227429687423_541027406052090851_n.jpg','/thumb/10665813_438227429687423_541027406052090851_n.jpg','','','2017-01-19 20:18:00','97 KB','JPG','720 x 960 px',1,52,1,0,0,0,4,'',0,0,NULL),(79,1,'','10665229 359881167522050 733360702084813515 n','/10665229_359881167522050_733360702084813515_n.jpg','/thumb/10665229_359881167522050_733360702084813515_n.jpg','','','2017-01-19 20:18:00','46 KB','JPG','717 x 960 px',1,51,1,0,0,0,5,'',0,0,NULL),(80,1,'','10635844 359881174188716 4966612776008191960 n','/10635844_359881174188716_4966612776008191960_n.jpg','/thumb/10635844_359881174188716_4966612776008191960_n.jpg','','','2017-01-19 20:18:00','42 KB','JPG','720 x 960 px',1,50,1,0,0,0,3,'',0,0,NULL),(81,1,'','10702199 359881054188728 6420709972246120830 n','/10702199_359881054188728_6420709972246120830_n.jpg','/thumb/10702199_359881054188728_6420709972246120830_n.jpg','','','2017-01-19 20:18:00','50 KB','JPG','717 x 960 px',1,49,1,0,0,0,4,'',0,0,NULL),(82,1,'','10923226 438227449687421 3813741787616278247 n','/10923226_438227449687421_3813741787616278247_n.jpg','/thumb/10923226_438227449687421_3813741787616278247_n.jpg','','','2017-01-19 20:18:00','55 KB','JPG','720 x 960 px',1,48,1,0,0,0,146,'',0,0,NULL),(83,1,'','10710771 359878854188948 6474092473851829581 n','/10710771_359878854188948_6474092473851829581_n.jpg','/thumb/10710771_359878854188948_6474092473851829581_n.jpg','','','2017-01-19 20:18:00','104 KB','JPG','720 x 960 px',1,47,1,0,0,0,4,'',0,0,NULL),(84,1,'','10830643 438241209686045 4558477466658253042 o','/10830643_438241209686045_4558477466658253042_o.jpg','/thumb/10830643_438241209686045_4558477466658253042_o.jpg','','','2017-01-19 20:18:00','82 KB','JPG','717 x 960 px',1,46,1,0,0,0,4,'',0,0,NULL),(85,1,'','10540905 359881090855391 7223712240248111470 n','/10540905_359881090855391_7223712240248111470_n.jpg','/thumb/10540905_359881090855391_7223712240248111470_n.jpg','','','2017-01-19 20:18:00','82 KB','JPG','960 x 717 px',1,45,1,0,0,0,4,'',0,0,NULL),(86,1,'','10568924 359878837522283 721014791342477095 n','/10568924_359878837522283_721014791342477095_n.jpg','/thumb/10568924_359878837522283_721014791342477095_n.jpg','','','2017-01-19 20:18:00','173 KB','JPG','720 x 960 px',1,44,1,0,0,0,7,'',0,0,NULL),(87,1,'','10473371 356334724543361 8963262890077568292 n','/10473371_356334724543361_8963262890077568292_n.jpg','/thumb/10473371_356334724543361_8963262890077568292_n.jpg','','','2017-01-19 20:18:00','71 KB','JPG','720 x 960 px',1,43,1,0,0,0,6,'',0,0,NULL),(88,1,'','10583783 359878850855615 424309361168159593 n','/10583783_359878850855615_424309361168159593_n.jpg','/thumb/10583783_359878850855615_424309361168159593_n.jpg','','','2017-01-19 20:18:00','87 KB','JPG','720 x 960 px',1,42,1,0,0,0,6,'',0,0,NULL),(89,1,'','10653784 359881170855383 5505190117031591700 n','/10653784_359881170855383_5505190117031591700_n.jpg','/thumb/10653784_359881170855383_5505190117031591700_n.jpg','','','2017-01-19 20:18:00','58 KB','JPG','717 x 960 px',1,41,1,0,0,0,7,'',0,0,NULL),(90,1,'','10610753 570050493171782 5331393222762331629 n','/10610753_570050493171782_5331393222762331629_n.jpg','/thumb/10610753_570050493171782_5331393222762331629_n.jpg','','','2017-01-19 20:18:00','47 KB','JPG','486 x 658 px',1,40,1,0,0,0,53,'',0,0,NULL),(91,1,'','10394856 389971271179706 6503830863839198953 n','/10394856_389971271179706_6503830863839198953_n.jpg','/thumb/10394856_389971271179706_6503830863839198953_n.jpg','','','2017-01-19 20:18:00','97 KB','JPG','720 x 960 px',1,39,1,0,0,0,115,'',0,0,NULL),(92,1,'','10340147 438231253020374 5727635649646503003 n','/10340147_438231253020374_5727635649646503003_n.jpg','/thumb/10340147_438231253020374_5727635649646503003_n.jpg','','','2017-01-19 20:18:00','48 KB','JPG','717 x 960 px',1,38,1,0,0,0,7,'',0,0,NULL),(93,1,'','10423797 438241153019384 32059627112630958 n','/10423797_438241153019384_32059627112630958_n.jpg','/thumb/10423797_438241153019384_32059627112630958_n.jpg','','','2017-01-19 20:18:00','77 KB','JPG','960 x 717 px',1,37,1,0,0,0,7,'',0,0,NULL),(94,1,'','10362360 438241346352698 7593930794979941511 n','/10362360_438241346352698_7593930794979941511_n.jpg','/thumb/10362360_438241346352698_7593930794979941511_n.jpg','','','2017-01-19 20:18:00','32 KB','JPG','550 x 365 px',1,36,1,0,0,0,6,'',0,0,NULL),(95,1,'','10450837 438227426354090 7986525728672058950 n','/10450837_438227426354090_7986525728672058950_n.jpg','/thumb/10450837_438227426354090_7986525728672058950_n.jpg','','','2017-01-19 20:18:00','77 KB','JPG','720 x 960 px',1,35,1,0,0,0,6,'',0,0,NULL),(96,1,'','10455713 359881044188729 682552935319832734 n','/10455713_359881044188729_682552935319832734_n.jpg','/thumb/10455713_359881044188729_682552935319832734_n.jpg','','','2017-01-19 20:18:00','42 KB','JPG','720 x 960 px',1,34,1,0,0,0,6,'',0,0,NULL),(97,1,'','10461934 438230953020404 4929953793392124382 n','/10461934_438230953020404_4929953793392124382_n.jpg','/thumb/10461934_438230953020404_4929953793392124382_n.jpg','','','2017-01-19 20:18:00','34 KB','JPG','960 x 720 px',1,33,1,0,0,0,6,'',0,0,NULL),(98,1,'','10455713 359881044188729 682552935319832734 n (1)','/10455713_359881044188729_682552935319832734_n_(1).jpg','/thumb/10455713_359881044188729_682552935319832734_n_(1).jpg','','','2017-01-19 20:18:00','42 KB','JPG','720 x 960 px',1,32,1,0,0,0,7,'',0,0,NULL),(99,1,'','1538951 456298741213625 694027964628820755 n','/1538951_456298741213625_694027964628820755_n.jpg','/thumb/1538951_456298741213625_694027964628820755_n.jpg','','','2017-01-19 20:18:00','114 KB','JPG','960 x 960 px',1,31,1,0,0,0,7,'',0,0,NULL),(100,1,'','1932452 438228213020678 6297315525490385996 n','/1932452_438228213020678_6297315525490385996_n.jpg','/thumb/1932452_438228213020678_6297315525490385996_n.jpg','','','2017-01-19 20:18:00','73 KB','JPG','717 x 960 px',1,30,1,0,0,0,267,'',0,0,NULL),(101,1,'','1908330 436896769820489 8349744890692565307 n','/1908330_436896769820489_8349744890692565307_n.jpg','/thumb/1908330_436896769820489_8349744890692565307_n.jpg','','','2017-01-19 20:18:00','96 KB','JPG','960 x 717 px',1,29,1,0,0,0,33,'',0,0,NULL),(102,1,'','1509668 438227419687424 8329694114524191341 n','/1509668_438227419687424_8329694114524191341_n.jpg','/thumb/1509668_438227419687424_8329694114524191341_n.jpg','','','2017-01-19 20:18:00','60 KB','JPG','720 x 960 px',1,28,1,0,0,0,8,'',0,0,NULL),(103,1,'','10264869 438230946353738 7183182988011009761 n','/10264869_438230946353738_7183182988011009761_n.jpg','/thumb/10264869_438230946353738_7183182988011009761_n.jpg','','','2017-01-19 20:18:00','53 KB','JPG','717 x 960 px',1,27,1,0,0,0,135,'',0,0,NULL),(104,1,'','10151218 570011403175691 3141328941077438414 n','/10151218_570011403175691_3141328941077438414_n.jpg','/thumb/10151218_570011403175691_3141328941077438414_n.jpg','','','2017-01-19 20:18:00','45 KB','JPG','960 x 720 px',1,26,1,0,0,0,20,'',0,0,NULL),(105,1,'','936076 330267737150060 5213271137163673621 n','/936076_330267737150060_5213271137163673621_n.jpg','/thumb/936076_330267737150060_5213271137163673621_n.jpg','','','2017-01-19 20:18:00','44 KB','JPG','600 x 821 px',1,25,1,0,0,0,10,'',0,0,NULL),(106,1,'','1452592 389972774512889 2261257964616152499 n','/1452592_389972774512889_2261257964616152499_n.jpg','/thumb/1452592_389972774512889_2261257964616152499_n.jpg','','','2017-01-19 20:18:00','71 KB','JPG','720 x 960 px',1,24,1,0,0,0,14,'',0,0,NULL),(107,1,'','19103 456298731213626 3497178247170612538 n','/19103_456298731213626_3497178247170612538_n.jpg','/thumb/19103_456298731213626_3497178247170612538_n.jpg','','','2017-01-19 20:18:00','102 KB','JPG','960 x 960 px',1,23,1,0,0,0,9,'',0,0,NULL),(108,1,'','1510869 438235603019939 8588551347730393179 n','/1510869_438235603019939_8588551347730393179_n.jpg','/thumb/1510869_438235603019939_8588551347730393179_n.jpg','','','2017-01-19 20:18:00','62 KB','JPG','717 x 960 px',1,22,1,0,0,0,9,'',0,0,NULL),(109,1,'','200144 438235626353270 3215371615046737086 n','/200144_438235626353270_3215371615046737086_n.jpg','/thumb/200144_438235626353270_3215371615046737086_n.jpg','','','2017-01-19 20:18:00','87 KB','JPG','960 x 717 px',1,21,1,0,0,0,8,'',0,0,NULL),(110,1,'','995440 330262907150543 1478337651650292628 n','/995440_330262907150543_1478337651650292628_n.jpg','/thumb/995440_330262907150543_1478337651650292628_n.jpg','','','2017-01-19 20:18:00','123 KB','JPG','960 x 720 px',1,20,1,0,0,0,14,'',0,0,NULL),(111,1,'','16105959 743586285818201 6884562517440664882 n','/16105959_743586285818201_6884562517440664882_n.jpg','/thumb/16105959_743586285818201_6884562517440664882_n.jpg','','','2017-01-18 19:29:00','66 KB','JPG','720 x 960 px',1,19,1,0,0,0,19,'',0,0,NULL),(112,1,'','16003157 743584465818383 4763847683830547546 n','/16003157_743584465818383_4763847683830547546_n.jpg','/thumb/16003157_743584465818383_4763847683830547546_n.jpg','','','2017-01-18 19:29:00','63 KB','JPG','720 x 960 px',1,18,1,0,0,0,72,'',0,0,NULL),(113,1,'','16114236 743584469151716 802262235528264536 n','/16114236_743584469151716_802262235528264536_n.jpg','/thumb/16114236_743584469151716_802262235528264536_n.jpg','','','2017-01-18 19:29:00','68 KB','JPG','720 x 960 px',1,17,1,0,0,0,191,'',0,0,NULL),(114,1,'','16114249 743661752477321 4086981046307411058 n','/16114249_743661752477321_4086981046307411058_n.jpg','/thumb/16114249_743661752477321_4086981046307411058_n.jpg','','','2017-01-18 19:29:00','100 KB','JPG','960 x 717 px',1,16,1,0,0,0,62,'',0,0,NULL),(115,1,'','16003132 743585155818314 3822196828551371045 n','/16003132_743585155818314_3822196828551371045_n.jpg','/thumb/16003132_743585155818314_3822196828551371045_n.jpg','','','2017-01-18 19:29:00','56 KB','JPG','720 x 960 px',1,15,1,0,0,0,102,'',0,0,NULL),(116,1,'','16002876 743657695811060 1088598114143402555 n','/16002876_743657695811060_1088598114143402555_n.jpg','/thumb/16002876_743657695811060_1088598114143402555_n.jpg','','','2017-01-18 19:29:00','55 KB','JPG','540 x 720 px',1,14,1,0,0,0,5,'',0,0,NULL),(117,1,'','15965452 743661745810655 1619974556729707528 n','/15965452_743661745810655_1619974556729707528_n.jpg','/thumb/15965452_743661745810655_1619974556729707528_n.jpg','','','2017-01-18 19:29:00','86 KB','JPG','717 x 960 px',1,13,1,0,0,0,5,'',0,0,NULL),(118,1,'','15977564 743657715811058 552330083269663813 n','/15977564_743657715811058_552330083269663813_n.jpg','/thumb/15977564_743657715811058_552330083269663813_n.jpg','','','2017-01-18 19:29:00','127 KB','JPG','720 x 960 px',1,12,1,0,0,0,6,'',0,0,NULL),(119,1,'','15109472 709756492534514 9084744110390881431 n','/15109472_709756492534514_9084744110390881431_n.jpg','/thumb/15109472_709756492534514_9084744110390881431_n.jpg','','','2017-01-18 19:29:00','54 KB','JPG','960 x 720 px',1,11,1,0,0,0,7,'',0,0,NULL),(120,1,'','15940381 743578252485671 3790552740689288398 n','/15940381_743578252485671_3790552740689288398_n.jpg','/thumb/15940381_743578252485671_3790552740689288398_n.jpg','','','2017-01-18 19:29:00','97 KB','JPG','960 x 540 px',1,10,1,0,0,0,46,'',0,0,NULL),(121,1,'','15940835 743657709144392 3143129532398314477 n','/15940835_743657709144392_3143129532398314477_n.jpg','/thumb/15940835_743657709144392_3143129532398314477_n.jpg','','','2017-01-18 19:29:00','104 KB','JPG','720 x 960 px',1,9,1,0,0,0,39,'',0,0,NULL),(122,1,'','15055633 709756389201191 4259776154113771962 n','/15055633_709756389201191_4259776154113771962_n.jpg','/thumb/15055633_709756389201191_4259776154113771962_n.jpg','','','2017-01-18 19:29:00','48 KB','JPG','541 x 960 px',1,8,1,0,0,0,10,'',0,0,NULL),(123,1,'','15032134 709756405867856 4061707255261005082 n','/15032134_709756405867856_4061707255261005082_n.jpg','/thumb/15032134_709756405867856_4061707255261005082_n.jpg','','','2017-01-18 19:29:00','67 KB','JPG','960 x 720 px',1,7,1,0,0,0,10,'',0,0,NULL),(124,1,'','15032134 709756405867856 4061707255261005082 n (1)','/15032134_709756405867856_4061707255261005082_n_(1).jpg','/thumb/15032134_709756405867856_4061707255261005082_n_(1).jpg','','','2017-01-18 19:29:00','67 KB','JPG','960 x 720 px',1,6,1,0,0,0,10,'',0,0,NULL),(125,1,'','15078651 709756532534510 3340440437288080653 n','/15078651_709756532534510_3340440437288080653_n.jpg','/thumb/15078651_709756532534510_3340440437288080653_n.jpg','','','2017-01-18 19:29:00','71 KB','JPG','960 x 960 px',1,5,1,0,0,0,13,'',0,0,NULL),(126,1,'','15027457 709756345867862 4871319676468787832 n','/15027457_709756345867862_4871319676468787832_n.jpg','/thumb/15027457_709756345867862_4871319676468787832_n.jpg','','','2017-01-18 19:29:00','63 KB','JPG','960 x 720 px',1,4,1,0,0,0,19,'',0,0,NULL),(127,1,'','15027571 709756445867852 1174746755824534041 n','/15027571_709756445867852_1174746755824534041_n.jpg','/thumb/15027571_709756445867852_1174746755824534041_n.jpg','','','2017-01-18 19:29:00','57 KB','JPG','960 x 720 px',1,3,1,0,0,0,10,'',0,0,NULL),(128,1,'','15109420 709756352534528 8927628996292000683 n','/15109420_709756352534528_8927628996292000683_n.jpg','/thumb/15109420_709756352534528_8927628996292000683_n.jpg','','','2017-01-18 19:29:00','73 KB','JPG','960 x 720 px',1,2,1,0,0,0,165,'',0,0,NULL),(129,1,'','15078873 709756342534529 436621417903759865 n','/15078873_709756342534529_436621417903759865_n.jpg','/thumb/15078873_709756342534529_436621417903759865_n.jpg','','','2017-01-18 19:29:00','65 KB','JPG','960 x 960 px',1,1,1,0,0,0,2314,'',0,0,NULL),(130,2,'12645163 570050346505130 1277753494491836901 n (1)','12645163 570050346505130 1277753494491836901 n (1)','/12645163_570050346505130_1277753494491836901_n (1).jpg','/thumb/12645163_570050346505130_1277753494491836901_n (1).jpg','','12645163 570050346505130 1277753494491836901 n (1)','2017-02-09 13:36:00','171 KB','JPG','945 x 945 px',1,89,1,0,0,0,4,'',0,0,NULL),(131,2,'16114236 743584469151716 802262235528264536 n (1)','16114236 743584469151716 802262235528264536 n (1)','/16114236_743584469151716_802262235528264536_n (1).jpg','/thumb/16114236_743584469151716_802262235528264536_n (1).jpg','','16114236 743584469151716 802262235528264536 n (1)','2017-02-09 13:36:00','68 KB','JPG','720 x 960 px',1,88,1,0,0,0,10,'',0,0,NULL),(132,2,'12650932 570050303171801 1433943770704312665 n (1)','12650932 570050303171801 1433943770704312665 n (1)','/12650932_570050303171801_1433943770704312665_n (1).jpg','/thumb/12650932_570050303171801_1433943770704312665_n (1).jpg','','12650932 570050303171801 1433943770704312665 n (1)','2017-02-09 13:36:00','67 KB','JPG','720 x 720 px',1,87,1,0,0,0,0,'',0,0,NULL),(133,2,'12646978 570019546508210 614149855798770420 n (1) (1)','12646978 570019546508210 614149855798770420 n (1) (1)','/12646978_570019546508210_614149855798770420_n_(1) (1).jpg','/thumb/12646978_570019546508210_614149855798770420_n_(1) (1).jpg','','12646978 570019546508210 614149855798770420 n (1) (1)','2017-02-09 13:36:00','48 KB','JPG','633 x 960 px',1,86,1,0,0,0,0,'',0,0,NULL),(134,2,'12651166 570011219842376 4848520979023787312 n (1)','12651166 570011219842376 4848520979023787312 n (1)','/12651166_570011219842376_4848520979023787312_n (1).jpg','/thumb/12651166_570011219842376_4848520979023787312_n (1).jpg','','12651166 570011219842376 4848520979023787312 n (1)','2017-02-09 13:36:00','43 KB','JPG','960 x 471 px',1,85,1,0,0,0,13,'',0,0,NULL),(135,2,'16003132 743585155818314 3822196828551371045 n (1)','16003132 743585155818314 3822196828551371045 n (1)','/16003132_743585155818314_3822196828551371045_n (1).jpg','/thumb/16003132_743585155818314_3822196828551371045_n (1).jpg','','16003132 743585155818314 3822196828551371045 n (1)','2017-02-09 13:36:00','56 KB','JPG','720 x 960 px',1,84,1,0,0,0,0,'',0,0,NULL),(136,2,'16105959 743586285818201 6884562517440664882 n (1)','16105959 743586285818201 6884562517440664882 n (1)','/16105959_743586285818201_6884562517440664882_n (1).jpg','/thumb/16105959_743586285818201_6884562517440664882_n (1).jpg','','16105959 743586285818201 6884562517440664882 n (1)','2017-02-09 13:36:00','66 KB','JPG','720 x 960 px',1,83,1,0,0,0,0,'',0,0,NULL),(137,2,'13521897 637469933096504 8353105607795108762 n (1)','13521897 637469933096504 8353105607795108762 n (1)','/13521897_637469933096504_8353105607795108762_n (1).jpg','/thumb/13521897_637469933096504_8353105607795108762_n (1).jpg','','13521897 637469933096504 8353105607795108762 n (1)','2017-02-09 13:36:00','52 KB','JPG','720 x 960 px',1,82,1,0,0,0,0,'',0,0,NULL),(138,2,'16003157 743584465818383 4763847683830547546 n (1)','16003157 743584465818383 4763847683830547546 n (1)','/16003157_743584465818383_4763847683830547546_n (1).jpg','/thumb/16003157_743584465818383_4763847683830547546_n (1).jpg','','16003157 743584465818383 4763847683830547546 n (1)','2017-02-09 13:36:00','63 KB','JPG','720 x 960 px',1,81,1,0,0,0,10,'',0,0,NULL),(139,2,'12615756 570019556508209 8703234015212932049 o (1) (1)','12615756 570019556508209 8703234015212932049 o (1) (1)','/12615756_570019556508209_8703234015212932049_o_(1) (1).jpg','/thumb/12615756_570019556508209_8703234015212932049_o_(1) (1).jpg','','12615756 570019556508209 8703234015212932049 o (1) (1)','2017-02-09 13:36:00','46 KB','JPG','636 x 960 px',1,80,1,0,0,0,0,'',0,0,NULL),(140,2,'12642524 570050336505131 3450900142641245501 n (1)','12642524 570050336505131 3450900142641245501 n (1)','/12642524_570050336505131_3450900142641245501_n (1).jpg','/thumb/12642524_570050336505131_3450900142641245501_n (1).jpg','','12642524 570050336505131 3450900142641245501 n (1)','2017-02-09 13:36:00','67 KB','JPG','500 x 752 px',1,79,1,0,0,0,0,'',0,0,NULL),(141,2,'12592397 570050509838447 1439038136012486472 n (1)','12592397 570050509838447 1439038136012486472 n (1)','/12592397_570050509838447_1439038136012486472_n (1).jpg','/thumb/12592397_570050509838447_1439038136012486472_n (1).jpg','','12592397 570050509838447 1439038136012486472 n (1)','2017-02-09 13:36:00','58 KB','JPG','409 x 576 px',1,78,1,0,0,0,1,'',0,0,NULL),(142,2,'12644796 570011393175692 7713018613882527701 n (1)','12644796 570011393175692 7713018613882527701 n (1)','/12644796_570011393175692_7713018613882527701_n (1).jpg','/thumb/12644796_570011393175692_7713018613882527701_n (1).jpg','','12644796 570011393175692 7713018613882527701 n (1)','2017-02-09 13:36:00','47 KB','JPG','960 x 720 px',1,77,1,0,0,0,1,'',0,0,NULL),(143,2,'12647274 570050366505128 8733642293761913628 n (1)','12647274 570050366505128 8733642293761913628 n (1)','/12647274_570050366505128_8733642293761913628_n (1).jpg','/thumb/12647274_570050366505128_8733642293761913628_n (1).jpg','','12647274 570050366505128 8733642293761913628 n (1)','2017-02-09 13:36:00','68 KB','JPG','960 x 640 px',1,76,1,0,0,0,1,'',0,0,NULL),(144,2,'12524053 570011389842359 4142021874562684539 n (1)','12524053 570011389842359 4142021874562684539 n (1)','/12524053_570011389842359_4142021874562684539_n (1).jpg','/thumb/12524053_570011389842359_4142021874562684539_n (1).jpg','','12524053 570011389842359 4142021874562684539 n (1)','2017-02-09 13:36:00','55 KB','JPG','960 x 720 px',1,75,1,0,0,0,1,'',0,0,NULL),(145,2,'12347820 549506605226171 7051485239278761937 n (1)','12347820 549506605226171 7051485239278761937 n (1)','/12347820_549506605226171_7051485239278761937_n (1).jpg','/thumb/12347820_549506605226171_7051485239278761937_n (1).jpg','','12347820 549506605226171 7051485239278761937 n (1)','2017-02-09 13:36:00','85 KB','JPG','600 x 956 px',1,74,1,0,0,0,1,'',0,0,NULL),(146,2,'12573035 570019559841542 6928788627569452043 n (1)','12573035 570019559841542 6928788627569452043 n (1)','/12573035_570019559841542_6928788627569452043_n (1).jpg','/thumb/12573035_570019559841542_6928788627569452043_n (1).jpg','','12573035 570019559841542 6928788627569452043 n (1)','2017-02-09 13:36:00','55 KB','JPG','960 x 797 px',1,73,1,0,0,0,18,'',0,0,NULL),(147,2,'12494973 570050506505114 1987627642840572854 n (1)','12494973 570050506505114 1987627642840572854 n (1)','/12494973_570050506505114_1987627642840572854_n (1).jpg','/thumb/12494973_570050506505114_1987627642840572854_n (1).jpg','','12494973 570050506505114 1987627642840572854 n (1)','2017-02-09 13:36:00','49 KB','JPG','500 x 766 px',1,72,1,0,0,0,3,'',0,0,NULL),(148,2,'12573069 570050299838468 1448187570967420751 n (1)','12573069 570050299838468 1448187570967420751 n (1)','/12573069_570050299838468_1448187570967420751_n (1).jpg','/thumb/12573069_570050299838468_1448187570967420751_n (1).jpg','','12573069 570050299838468 1448187570967420751 n (1)','2017-02-09 13:36:00','57 KB','JPG','844 x 448 px',1,71,1,0,0,0,3,'',0,0,NULL),(149,2,'12573225 570011416509023 3383754738851414769 n (1)','12573225 570011416509023 3383754738851414769 n (1)','/12573225_570011416509023_3383754738851414769_n (1).jpg','/thumb/12573225_570011416509023_3383754738851414769_n (1).jpg','','12573225 570011416509023 3383754738851414769 n (1)','2017-02-09 13:36:00','63 KB','JPG','960 x 720 px',1,70,1,0,0,0,3,'',0,0,NULL),(150,2,'12573956 570050329838465 5370931413428546023 n (1)','12573956 570050329838465 5370931413428546023 n (1)','/12573956_570050329838465_5370931413428546023_n (1).jpg','/thumb/12573956_570050329838465_5370931413428546023_n (1).jpg','','12573956 570050329838465 5370931413428546023 n (1)','2017-02-09 13:36:00','120 KB','JPG','924 x 800 px',1,69,1,0,0,0,3,'',0,0,NULL),(151,2,'12573072 570050293171802 5486466788712804657 n (1)','12573072 570050293171802 5486466788712804657 n (1)','/12573072_570050293171802_5486466788712804657_n (1).jpg','/thumb/12573072_570050293171802_5486466788712804657_n (1).jpg','','12573072 570050293171802 5486466788712804657 n (1)','2017-02-09 13:36:00','28 KB','JPG','600 x 400 px',1,68,1,0,0,0,5,'',0,0,NULL),(152,2,'12301644 549506625226169 8022614526486176571 n (1)','12301644 549506625226169 8022614526486176571 n (1)','/12301644_549506625226169_8022614526486176571_n (1).jpg','/thumb/12301644_549506625226169_8022614526486176571_n (1).jpg','','12301644 549506625226169 8022614526486176571 n (1)','2017-02-09 13:36:00','62 KB','JPG','638 x 960 px',1,67,1,0,0,0,5,'',0,0,NULL),(153,2,'12140568 535479019962263 5697872215390796670 n (1)','12140568 535479019962263 5697872215390796670 n (1)','/12140568_535479019962263_5697872215390796670_n (1).jpg','/thumb/12140568_535479019962263_5697872215390796670_n (1).jpg','','12140568 535479019962263 5697872215390796670 n (1)','2017-02-09 13:36:00','69 KB','JPG','960 x 720 px',1,66,1,0,0,0,5,'',0,0,NULL),(154,2,'12314043 549506598559505 5110677711540340295 n (1)','12314043 549506598559505 5110677711540340295 n (1)','/12314043_549506598559505_5110677711540340295_n (1).jpg','/thumb/12314043_549506598559505_5110677711540340295_n (1).jpg','','12314043 549506598559505 5110677711540340295 n (1)','2017-02-09 13:36:00','63 KB','JPG','736 x 597 px',1,65,1,0,0,0,5,'',0,0,NULL),(155,2,'12108898 535489539961211 5414139450149147209 n (1)','12108898 535489539961211 5414139450149147209 n (1)','/12108898_535489539961211_5414139450149147209_n (1).jpg','/thumb/12108898_535489539961211_5414139450149147209_n (1).jpg','','12108898 535489539961211 5414139450149147209 n (1)','2017-02-09 13:36:00','110 KB','JPG','720 x 960 px',1,64,1,0,0,0,82,'',0,0,NULL),(156,2,'12342633 549506038559561 3871454445919471078 n (1)','12342633 549506038559561 3871454445919471078 n (1)','/12342633_549506038559561_3871454445919471078_n (1).jpg','/thumb/12342633_549506038559561_3871454445919471078_n (1).jpg','','12342633 549506038559561 3871454445919471078 n (1)','2017-02-09 13:36:00','43 KB','JPG','960 x 720 px',1,63,1,0,0,0,8,'',0,0,NULL),(157,2,'12347744 549506041892894 6299806903903345975 n (1)','12347744 549506041892894 6299806903903345975 n (1)','/12347744_549506041892894_6299806903903345975_n (1).jpg','/thumb/12347744_549506041892894_6299806903903345975_n (1).jpg','','12347744 549506041892894 6299806903903345975 n (1)','2017-02-09 13:36:00','57 KB','JPG','720 x 960 px',1,62,1,0,0,0,3,'',0,0,NULL),(158,2,'12107186 570050316505133 1477980368221770425 n (1)','12107186 570050316505133 1477980368221770425 n (1)','/12107186_570050316505133_1477980368221770425_n (1).jpg','/thumb/12107186_570050316505133_1477980368221770425_n (1).jpg','','12107186 570050316505133 1477980368221770425 n (1)','2017-02-09 13:36:00','35 KB','JPG','547 x 600 px',1,61,1,0,0,0,3,'',0,0,NULL),(159,2,'12341061 549506628559502 2366480494257592281 n (1)','12341061 549506628559502 2366480494257592281 n (1)','/12341061_549506628559502_2366480494257592281_n (1).jpg','/thumb/12341061_549506628559502_2366480494257592281_n (1).jpg','','12341061 549506628559502 2366480494257592281 n (1)','2017-02-09 13:36:00','87 KB','JPG','640 x 602 px',1,60,1,0,0,0,3,'',0,0,NULL),(160,2,'12341132 549506595226172 7218943193500889829 n (1)','12341132 549506595226172 7218943193500889829 n (1)','/12341132_549506595226172_7218943193500889829_n (1).jpg','/thumb/12341132_549506595226172_7218943193500889829_n (1).jpg','','12341132 549506595226172 7218943193500889829 n (1)','2017-02-09 13:36:00','28 KB','JPG','474 x 389 px',1,59,1,0,0,0,10,'',0,0,NULL),(161,2,'11033156 438228609687305 2219495818012011715 n (1)','11033156 438228609687305 2219495818012011715 n (1)','/11033156_438228609687305_2219495818012011715_n (1).jpg','/thumb/11033156_438228609687305_2219495818012011715_n (1).jpg','','11033156 438228609687305 2219495818012011715 n (1)','2017-02-09 13:36:00','46 KB','JPG','960 x 717 px',1,58,1,0,0,0,3,'',0,0,NULL),(162,2,'11022544 438227826354050 8923670901817279643 o (1)','11022544 438227826354050 8923670901817279643 o (1)','/11022544_438227826354050_8923670901817279643_o (1).jpg','/thumb/11022544_438227826354050_8923670901817279643_o (1).jpg','','11022544 438227826354050 8923670901817279643 o (1)','2017-02-09 13:36:00','91 KB','JPG','717 x 960 px',1,57,1,0,0,0,3,'',0,0,NULL),(163,2,'11034422 438227839687382 3536804226667634800 o (1)','11034422 438227839687382 3536804226667634800 o (1)','/11034422_438227839687382_3536804226667634800_o (1).jpg','/thumb/11034422_438227839687382_3536804226667634800_o (1).jpg','','11034422 438227839687382 3536804226667634800 o (1)','2017-02-09 13:36:00','119 KB','JPG','717 x 960 px',1,56,1,0,0,0,3,'',0,0,NULL),(164,2,'11043120 438236329686533 6237945620142762719 o (1)','11043120 438236329686533 6237945620142762719 o (1)','/11043120_438236329686533_6237945620142762719_o (1).jpg','/thumb/11043120_438236329686533_6237945620142762719_o (1).jpg','','11043120 438236329686533 6237945620142762719 o (1)','2017-02-09 13:36:00','77 KB','JPG','717 x 960 px',1,55,1,0,0,0,3,'',0,0,NULL),(165,2,'11044945 438228606353972 7546555337041129714 n (1)','11044945 438228606353972 7546555337041129714 n (1)','/11044945_438228606353972_7546555337041129714_n (1).jpg','/thumb/11044945_438228606353972_7546555337041129714_n (1).jpg','','11044945 438228606353972 7546555337041129714 n (1)','2017-02-09 13:36:00','70 KB','JPG','960 x 717 px',1,54,1,0,0,0,3,'',0,0,NULL),(166,2,'12105770 535457476631084 4002854987161378148 n (1)','12105770 535457476631084 4002854987161378148 n (1)','/12105770_535457476631084_4002854987161378148_n (1).jpg','/thumb/12105770_535457476631084_4002854987161378148_n (1).jpg','','12105770 535457476631084 4002854987161378148 n (1)','2017-02-09 13:36:00','53 KB','JPG','960 x 720 px',1,53,1,0,0,0,3,'',0,0,NULL),(167,2,'11018986 438236249686541 7769720613216341986 o (1)','11018986 438236249686541 7769720613216341986 o (1)','/11018986_438236249686541_7769720613216341986_o (1).jpg','/thumb/11018986_438236249686541_7769720613216341986_o (1).jpg','','11018986 438236249686541 7769720613216341986 o (1)','2017-02-09 13:36:00','79 KB','JPG','717 x 960 px',1,52,1,0,0,0,6,'',0,0,NULL),(168,2,'10923226 438227449687421 3813741787616278247 n (1)','10923226 438227449687421 3813741787616278247 n (1)','/10923226_438227449687421_3813741787616278247_n (1).jpg','/thumb/10923226_438227449687421_3813741787616278247_n (1).jpg','','10923226 438227449687421 3813741787616278247 n (1)','2017-02-09 13:36:00','55 KB','JPG','720 x 960 px',1,51,1,0,0,0,3,'',0,0,NULL),(169,2,'10665813 438227429687423 541027406052090851 n (1)','10665813 438227429687423 541027406052090851 n (1)','/10665813_438227429687423_541027406052090851_n (1).jpg','/thumb/10665813_438227429687423_541027406052090851_n (1).jpg','','10665813 438227429687423 541027406052090851 n (1)','2017-02-09 13:36:00','97 KB','JPG','720 x 960 px',1,50,1,0,0,0,3,'',0,0,NULL),(170,2,'10473371 356334724543361 8963262890077568292 n (1)','10473371 356334724543361 8963262890077568292 n (1)','/10473371_356334724543361_8963262890077568292_n (1).jpg','/thumb/10473371_356334724543361_8963262890077568292_n (1).jpg','','10473371 356334724543361 8963262890077568292 n (1)','2017-02-09 13:36:00','71 KB','JPG','720 x 960 px',1,49,1,0,0,0,3,'',0,0,NULL),(171,2,'10842108 438236293019870 6689291092595391815 o (1)','10842108 438236293019870 6689291092595391815 o (1)','/10842108_438236293019870_6689291092595391815_o (1).jpg','/thumb/10842108_438236293019870_6689291092595391815_o (1).jpg','','10842108 438236293019870 6689291092595391815 o (1)','2017-02-09 13:36:00','88 KB','JPG','717 x 960 px',1,48,1,0,0,0,7,'',0,0,NULL),(172,2,'10702199 359881054188728 6420709972246120830 n (1)','10702199 359881054188728 6420709972246120830 n (1)','/10702199_359881054188728_6420709972246120830_n (1).jpg','/thumb/10702199_359881054188728_6420709972246120830_n (1).jpg','','10702199 359881054188728 6420709972246120830 n (1)','2017-02-09 13:36:00','50 KB','JPG','717 x 960 px',1,47,1,0,0,0,3,'',0,0,NULL),(173,2,'11019464 438228603020639 61212216432602678 n (1)','11019464 438228603020639 61212216432602678 n (1)','/11019464_438228603020639_61212216432602678_n (1).jpg','/thumb/11019464_438228603020639_61212216432602678_n (1).jpg','','11019464 438228603020639 61212216432602678 n (1)','2017-02-09 13:36:00','52 KB','JPG','717 x 960 px',1,46,1,0,0,0,3,'',0,0,NULL),(174,2,'10923260 438225189687647 4050575526091580693 n (1)','10923260 438225189687647 4050575526091580693 n (1)','/10923260_438225189687647_4050575526091580693_n (1).jpg','/thumb/10923260_438225189687647_4050575526091580693_n (1).jpg','','10923260 438225189687647 4050575526091580693 n (1)','2017-02-09 13:36:00','46 KB','JPG','720 x 960 px',1,45,1,0,0,0,3,'',0,0,NULL),(175,2,'10540905 359881090855391 7223712240248111470 n (1)','10540905 359881090855391 7223712240248111470 n (1)','/10540905_359881090855391_7223712240248111470_n (1).jpg','/thumb/10540905_359881090855391_7223712240248111470_n (1).jpg','','10540905 359881090855391 7223712240248111470 n (1)','2017-02-09 13:36:00','82 KB','JPG','960 x 717 px',1,44,1,0,0,0,3,'',0,0,NULL),(176,2,'10610753 570050493171782 5331393222762331629 n (1)','10610753 570050493171782 5331393222762331629 n (1)','/10610753_570050493171782_5331393222762331629_n (1).jpg','/thumb/10610753_570050493171782_5331393222762331629_n (1).jpg','','10610753 570050493171782 5331393222762331629 n (1)','2017-02-09 13:36:00','47 KB','JPG','486 x 658 px',1,43,1,0,0,0,4,'',0,0,NULL),(177,2,'10455713 359881044188729 682552935319832734 n (1) (1)','10455713 359881044188729 682552935319832734 n (1) (1)','/10455713_359881044188729_682552935319832734_n_(1) (1).jpg','/thumb/10455713_359881044188729_682552935319832734_n_(1) (1).jpg','','10455713 359881044188729 682552935319832734 n (1) (1)','2017-02-09 13:36:00','42 KB','JPG','720 x 960 px',1,42,1,0,0,0,3,'',0,0,NULL),(178,2,'10461934 438230953020404 4929953793392124382 n (1)','10461934 438230953020404 4929953793392124382 n (1)','/10461934_438230953020404_4929953793392124382_n (1).jpg','/thumb/10461934_438230953020404_4929953793392124382_n (1).jpg','','10461934 438230953020404 4929953793392124382 n (1)','2017-02-09 13:36:00','34 KB','JPG','960 x 720 px',1,41,1,0,0,0,3,'',0,0,NULL),(179,2,'10665229 359881167522050 733360702084813515 n (1)','10665229 359881167522050 733360702084813515 n (1)','/10665229_359881167522050_733360702084813515_n (1).jpg','/thumb/10665229_359881167522050_733360702084813515_n (1).jpg','','10665229 359881167522050 733360702084813515 n (1)','2017-02-09 13:36:00','46 KB','JPG','717 x 960 px',1,40,1,0,0,0,4,'',0,0,NULL),(180,2,'10653784 359881170855383 5505190117031591700 n (1)','10653784 359881170855383 5505190117031591700 n (1)','/10653784_359881170855383_5505190117031591700_n (1).jpg','/thumb/10653784_359881170855383_5505190117031591700_n (1).jpg','','10653784 359881170855383 5505190117031591700 n (1)','2017-02-09 13:36:00','58 KB','JPG','717 x 960 px',1,39,1,0,0,0,3,'',0,0,NULL),(181,2,'10635844 359881174188716 4966612776008191960 n (1)','10635844 359881174188716 4966612776008191960 n (1)','/10635844_359881174188716_4966612776008191960_n (1).jpg','/thumb/10635844_359881174188716_4966612776008191960_n (1).jpg','','10635844 359881174188716 4966612776008191960 n (1)','2017-02-09 13:36:00','42 KB','JPG','720 x 960 px',1,38,1,0,0,0,8,'',0,0,NULL),(182,2,'1538951 456298741213625 694027964628820755 n (1)','1538951 456298741213625 694027964628820755 n (1)','/1538951_456298741213625_694027964628820755_n (1).jpg','/thumb/1538951_456298741213625_694027964628820755_n (1).jpg','','1538951 456298741213625 694027964628820755 n (1)','2017-02-09 13:36:00','114 KB','JPG','960 x 960 px',1,37,1,0,0,0,4,'',0,0,NULL),(183,2,'10264869 438230946353738 7183182988011009761 n (1)','10264869 438230946353738 7183182988011009761 n (1)','/10264869_438230946353738_7183182988011009761_n (1).jpg','/thumb/10264869_438230946353738_7183182988011009761_n (1).jpg','','10264869 438230946353738 7183182988011009761 n (1)','2017-02-09 13:36:00','53 KB','JPG','717 x 960 px',1,36,1,0,0,0,51,'',0,0,NULL),(184,2,'10455713 359881044188729 682552935319832734 n (1)','10455713 359881044188729 682552935319832734 n (1)','/10455713_359881044188729_682552935319832734_n (1).jpg','/thumb/10455713_359881044188729_682552935319832734_n (1).jpg','','10455713 359881044188729 682552935319832734 n (1)','2017-02-09 13:36:00','42 KB','JPG','720 x 960 px',1,35,1,0,0,0,36,'',0,0,NULL),(185,2,'10151218 570011403175691 3141328941077438414 n (1)','10151218 570011403175691 3141328941077438414 n (1)','/10151218_570011403175691_3141328941077438414_n (1).jpg','/thumb/10151218_570011403175691_3141328941077438414_n (1).jpg','','10151218 570011403175691 3141328941077438414 n (1)','2017-02-09 13:36:00','45 KB','JPG','960 x 720 px',1,34,1,0,0,0,3,'',0,0,NULL),(186,2,'1510869 438235603019939 8588551347730393179 n (1)','1510869 438235603019939 8588551347730393179 n (1)','/1510869_438235603019939_8588551347730393179_n (1).jpg','/thumb/1510869_438235603019939_8588551347730393179_n (1).jpg','','1510869 438235603019939 8588551347730393179 n (1)','2017-02-09 13:36:00','62 KB','JPG','717 x 960 px',1,33,1,0,0,0,4,'',0,0,NULL),(187,2,'1932452 438228213020678 6297315525490385996 n (1)','1932452 438228213020678 6297315525490385996 n (1)','/1932452_438228213020678_6297315525490385996_n (1).jpg','/thumb/1932452_438228213020678_6297315525490385996_n (1).jpg','','1932452 438228213020678 6297315525490385996 n (1)','2017-02-09 13:36:00','73 KB','JPG','717 x 960 px',1,32,1,0,0,0,3,'',0,0,NULL),(188,2,'10450837 438227426354090 7986525728672058950 n (1)','10450837 438227426354090 7986525728672058950 n (1)','/10450837_438227426354090_7986525728672058950_n (1).jpg','/thumb/10450837_438227426354090_7986525728672058950_n (1).jpg','','10450837 438227426354090 7986525728672058950 n (1)','2017-02-09 13:36:00','77 KB','JPG','720 x 960 px',1,31,1,0,0,0,9,'',0,0,NULL),(189,2,'1509668 438227419687424 8329694114524191341 n (1)','1509668 438227419687424 8329694114524191341 n (1)','/1509668_438227419687424_8329694114524191341_n (1).jpg','/thumb/1509668_438227419687424_8329694114524191341_n (1).jpg','','1509668 438227419687424 8329694114524191341 n (1)','2017-02-09 13:36:00','60 KB','JPG','720 x 960 px',1,30,1,0,0,0,21,'',0,0,NULL),(190,2,'19103 456298731213626 3497178247170612538 n (1)','19103 456298731213626 3497178247170612538 n (1)','/19103_456298731213626_3497178247170612538_n (1).jpg','/thumb/19103_456298731213626_3497178247170612538_n (1).jpg','','19103 456298731213626 3497178247170612538 n (1)','2017-02-09 13:36:00','102 KB','JPG','960 x 960 px',1,29,1,0,0,0,5,'',0,0,NULL),(191,2,'936076 330267737150060 5213271137163673621 n (1)','936076 330267737150060 5213271137163673621 n (1)','/936076_330267737150060_5213271137163673621_n (1).jpg','/thumb/936076_330267737150060_5213271137163673621_n (1).jpg','','936076 330267737150060 5213271137163673621 n (1)','2017-02-09 13:36:00','44 KB','JPG','600 x 821 px',1,28,1,0,0,0,5,'',0,0,NULL),(192,2,'1452592 389972774512889 2261257964616152499 n (1)','1452592 389972774512889 2261257964616152499 n (1)','/1452592_389972774512889_2261257964616152499_n (1).jpg','/thumb/1452592_389972774512889_2261257964616152499_n (1).jpg','','1452592 389972774512889 2261257964616152499 n (1)','2017-02-09 13:36:00','71 KB','JPG','720 x 960 px',1,27,1,0,0,0,24,'',0,0,NULL),(193,2,'995440 330262907150543 1478337651650292628 n (1)','995440 330262907150543 1478337651650292628 n (1)','/995440_330262907150543_1478337651650292628_n (1).jpg','/thumb/995440_330262907150543_1478337651650292628_n (1).jpg','','995440 330262907150543 1478337651650292628 n (1)','2017-02-09 13:36:00','123 KB','JPG','960 x 720 px',1,26,1,0,0,0,6,'',0,0,NULL),(194,2,'200144 438235626353270 3215371615046737086 n (1)','200144 438235626353270 3215371615046737086 n (1)','/200144_438235626353270_3215371615046737086_n (1).jpg','/thumb/200144_438235626353270_3215371615046737086_n (1).jpg','','200144 438235626353270 3215371615046737086 n (1)','2017-02-09 13:36:00','87 KB','JPG','960 x 717 px',1,25,1,0,0,0,13,'',0,0,NULL),(195,2,'13521897 637469933096504 8353105607795108762 n','13521897 637469933096504 8353105607795108762 n','/13521897_637469933096504_8353105607795108762_n.jpg','/thumb/13521897_637469933096504_8353105607795108762_n.jpg','','13521897 637469933096504 8353105607795108762 n','2017-01-19 20:18:00','52 KB','JPG','720 x 960 px',1,24,1,0,0,0,5,'',0,0,NULL),(196,2,'12645163 570050346505130 1277753494491836901 n','12645163 570050346505130 1277753494491836901 n','/12645163_570050346505130_1277753494491836901_n.jpg','/thumb/12645163_570050346505130_1277753494491836901_n.jpg','','12645163 570050346505130 1277753494491836901 n','2017-01-19 20:18:00','171 KB','JPG','945 x 945 px',1,23,1,0,0,0,85,'',0,0,NULL),(197,2,'12646978 570019546508210 614149855798770420 n (1)','12646978 570019546508210 614149855798770420 n (1)','/12646978_570019546508210_614149855798770420_n_(1).jpg','/thumb/12646978_570019546508210_614149855798770420_n_(1).jpg','','12646978 570019546508210 614149855798770420 n (1)','2017-01-19 20:18:00','48 KB','JPG','633 x 960 px',1,22,1,0,0,0,6,'',0,0,NULL),(198,2,'12647274 570050366505128 8733642293761913628 n','12647274 570050366505128 8733642293761913628 n','/12647274_570050366505128_8733642293761913628_n.jpg','/thumb/12647274_570050366505128_8733642293761913628_n.jpg','','12647274 570050366505128 8733642293761913628 n','2017-01-19 20:18:00','68 KB','JPG','960 x 640 px',1,21,1,0,0,0,29,'',0,0,NULL),(199,2,'12650932 570050303171801 1433943770704312665 n','12650932 570050303171801 1433943770704312665 n','/12650932_570050303171801_1433943770704312665_n.jpg','/thumb/12650932_570050303171801_1433943770704312665_n.jpg','','12650932 570050303171801 1433943770704312665 n','2017-01-19 20:18:00','67 KB','JPG','720 x 720 px',1,20,1,0,0,0,88,'',0,0,NULL),(200,2,'12651166 570011219842376 4848520979023787312 n','12651166 570011219842376 4848520979023787312 n','/12651166_570011219842376_4848520979023787312_n.jpg','/thumb/12651166_570011219842376_4848520979023787312_n.jpg','','12651166 570011219842376 4848520979023787312 n','2017-01-19 20:18:00','43 KB','JPG','960 x 471 px',1,19,1,0,0,0,73,'',0,0,NULL),(201,2,'12644796 570011393175692 7713018613882527701 n','12644796 570011393175692 7713018613882527701 n','/12644796_570011393175692_7713018613882527701_n.jpg','/thumb/12644796_570011393175692_7713018613882527701_n.jpg','','12644796 570011393175692 7713018613882527701 n','2017-01-19 20:18:00','47 KB','JPG','960 x 720 px',1,18,1,0,0,0,8,'',0,0,NULL),(202,2,'12646978 570019546508210 614149855798770420 n','12646978 570019546508210 614149855798770420 n','/12646978_570019546508210_614149855798770420_n.jpg','/thumb/12646978_570019546508210_614149855798770420_n.jpg','','12646978 570019546508210 614149855798770420 n','2017-01-19 20:18:00','48 KB','JPG','633 x 960 px',1,17,1,0,0,0,8,'',0,0,NULL),(203,2,'12642708 570501099793388 6052336799551530073 n','12642708 570501099793388 6052336799551530073 n','/12642708_570501099793388_6052336799551530073_n.jpg','/thumb/12642708_570501099793388_6052336799551530073_n.jpg','','12642708 570501099793388 6052336799551530073 n','2017-01-19 20:18:00','82 KB','JPG','717 x 960 px',1,16,1,0,0,0,14,'',0,0,NULL),(204,2,'12592180 570501169793381 2154810404736987256 n','12592180 570501169793381 2154810404736987256 n','/12592180_570501169793381_2154810404736987256_n.jpg','/thumb/12592180_570501169793381_2154810404736987256_n.jpg','','12592180 570501169793381 2154810404736987256 n','2017-01-19 20:18:00','94 KB','JPG','960 x 720 px',1,15,1,0,0,0,7,'',0,0,NULL),(205,2,'12615756 570019556508209 8703234015212932049 o (1)','12615756 570019556508209 8703234015212932049 o (1)','/12615756_570019556508209_8703234015212932049_o_(1).jpg','/thumb/12615756_570019556508209_8703234015212932049_o_(1).jpg','','12615756 570019556508209 8703234015212932049 o (1)','2017-01-19 20:18:00','46 KB','JPG','636 x 960 px',1,14,1,0,0,0,67,'',0,0,NULL),(206,2,'12642524 570050336505131 3450900142641245501 n','12642524 570050336505131 3450900142641245501 n','/12642524_570050336505131_3450900142641245501_n.jpg','/thumb/12642524_570050336505131_3450900142641245501_n.jpg','','12642524 570050336505131 3450900142641245501 n','2017-01-19 20:18:00','67 KB','JPG','500 x 752 px',1,13,1,0,0,0,22,'',0,0,NULL),(207,2,'12615756 570019556508209 8703234015212932049 o','12615756 570019556508209 8703234015212932049 o','/12615756_570019556508209_8703234015212932049_o.jpg','/thumb/12615756_570019556508209_8703234015212932049_o.jpg','','12615756 570019556508209 8703234015212932049 o','2017-01-19 20:18:00','46 KB','JPG','636 x 960 px',1,12,1,0,0,0,19,'',0,0,NULL),(208,2,'12592397 570050509838447 1439038136012486472 n','12592397 570050509838447 1439038136012486472 n','/12592397_570050509838447_1439038136012486472_n.jpg','/thumb/12592397_570050509838447_1439038136012486472_n.jpg','','12592397 570050509838447 1439038136012486472 n','2017-01-19 20:18:00','58 KB','JPG','409 x 576 px',1,11,1,0,0,0,26,'',0,0,NULL),(209,2,'12631370 570501129793385 2427550458042026263 n','12631370 570501129793385 2427550458042026263 n','/12631370_570501129793385_2427550458042026263_n.jpg','/thumb/12631370_570501129793385_2427550458042026263_n.jpg','','12631370 570501129793385 2427550458042026263 n','2017-01-19 20:18:00','54 KB','JPG','717 x 960 px',1,10,1,0,0,0,8,'',0,0,NULL),(210,2,'12573956 570050329838465 5370931413428546023 n','12573956 570050329838465 5370931413428546023 n','/12573956_570050329838465_5370931413428546023_n.jpg','/thumb/12573956_570050329838465_5370931413428546023_n.jpg','','12573956 570050329838465 5370931413428546023 n','2017-01-19 20:18:00','120 KB','JPG','924 x 800 px',1,9,1,0,0,0,18,'',0,0,NULL),(211,2,'12347820 549506605226171 7051485239278761937 n','12347820 549506605226171 7051485239278761937 n','/12347820_549506605226171_7051485239278761937_n.jpg','/thumb/12347820_549506605226171_7051485239278761937_n.jpg','','12347820 549506605226171 7051485239278761937 n','2017-01-19 20:18:00','85 KB','JPG','600 x 956 px',1,8,1,0,0,0,18,'',0,0,NULL),(212,2,'12347744 549506041892894 6299806903903345975 n','12347744 549506041892894 6299806903903345975 n','/12347744_549506041892894_6299806903903345975_n.jpg','/thumb/12347744_549506041892894_6299806903903345975_n.jpg','','12347744 549506041892894 6299806903903345975 n','2017-01-19 20:18:00','57 KB','JPG','720 x 960 px',1,7,1,0,0,0,8,'',0,0,NULL),(213,2,'12494973 570050506505114 1987627642840572854 n','12494973 570050506505114 1987627642840572854 n','/12494973_570050506505114_1987627642840572854_n.jpg','/thumb/12494973_570050506505114_1987627642840572854_n.jpg','','12494973 570050506505114 1987627642840572854 n','2017-01-19 20:18:00','49 KB','JPG','500 x 766 px',1,6,1,0,0,0,8,'',0,0,NULL),(214,2,'12573035 570019559841542 6928788627569452043 n','12573035 570019559841542 6928788627569452043 n','/12573035_570019559841542_6928788627569452043_n.jpg','/thumb/12573035_570019559841542_6928788627569452043_n.jpg','','12573035 570019559841542 6928788627569452043 n','2017-01-19 20:18:00','55 KB','JPG','960 x 797 px',1,5,1,0,0,0,285,'',0,0,NULL),(215,2,'12573225 570011416509023 3383754738851414769 n','12573225 570011416509023 3383754738851414769 n','/12573225_570011416509023_3383754738851414769_n.jpg','/thumb/12573225_570011416509023_3383754738851414769_n.jpg','','12573225 570011416509023 3383754738851414769 n','2017-01-19 20:18:00','63 KB','JPG','960 x 720 px',1,4,1,0,0,0,74,'',0,0,NULL),(216,2,'12573069 570050299838468 1448187570967420751 n','12573069 570050299838468 1448187570967420751 n','/12573069_570050299838468_1448187570967420751_n.jpg','/thumb/12573069_570050299838468_1448187570967420751_n.jpg','','12573069 570050299838468 1448187570967420751 n','2017-01-19 20:18:00','57 KB','JPG','844 x 448 px',1,3,1,0,0,0,74,'',0,0,NULL),(217,2,'12524053 570011389842359 4142021874562684539 n','12524053 570011389842359 4142021874562684539 n','/12524053_570011389842359_4142021874562684539_n.jpg','/thumb/12524053_570011389842359_4142021874562684539_n.jpg','','12524053 570011389842359 4142021874562684539 n','2017-01-19 20:18:00','55 KB','JPG','960 x 720 px',1,2,1,0,0,0,205,'',0,0,NULL),(218,2,'12573072 570050293171802 5486466788712804657 n','12573072 570050293171802 5486466788712804657 n','/12573072_570050293171802_5486466788712804657_n.jpg','/thumb/12573072_570050293171802_5486466788712804657_n.jpg','','12573072 570050293171802 5486466788712804657 n','2017-01-19 20:18:00','28 KB','JPG','600 x 400 px',1,1,1,0,0,0,2119,'',0,0,NULL),(219,3,'15940835 743657709144392 3143129532398314477 n (1)','15940835 743657709144392 3143129532398314477 n (1)','/15940835_743657709144392_3143129532398314477_n (1).jpg','/thumb/15940835_743657709144392_3143129532398314477_n (1).jpg','','15940835 743657709144392 3143129532398314477 n (1)','2017-02-09 13:38:00','104 KB','JPG','720 x 960 px',1,31,1,0,0,0,16,'',0,0,NULL),(220,3,'16114249 743661752477321 4086981046307411058 n (1)','16114249 743661752477321 4086981046307411058 n (1)','/16114249_743661752477321_4086981046307411058_n (1).jpg','/thumb/16114249_743661752477321_4086981046307411058_n (1).jpg','','16114249 743661752477321 4086981046307411058 n (1)','2017-02-09 13:38:00','100 KB','JPG','960 x 717 px',1,30,1,0,0,0,134,'',0,0,NULL),(221,3,'16002876 743657695811060 1088598114143402555 n (1)','16002876 743657695811060 1088598114143402555 n (1)','/16002876_743657695811060_1088598114143402555_n (1).jpg','/thumb/16002876_743657695811060_1088598114143402555_n (1).jpg','','16002876 743657695811060 1088598114143402555 n (1)','2017-02-09 13:38:00','55 KB','JPG','540 x 720 px',1,29,1,0,0,0,8,'',0,0,NULL),(222,3,'15977564 743657715811058 552330083269663813 n (1)','15977564 743657715811058 552330083269663813 n (1)','/15977564_743657715811058_552330083269663813_n (1).jpg','/thumb/15977564_743657715811058_552330083269663813_n (1).jpg','','15977564 743657715811058 552330083269663813 n (1)','2017-02-09 13:38:00','127 KB','JPG','720 x 960 px',1,28,1,0,0,0,10,'',0,0,NULL),(223,3,'15965452 743661745810655 1619974556729707528 n (1)','15965452 743661745810655 1619974556729707528 n (1)','/15965452_743661745810655_1619974556729707528_n (1).jpg','/thumb/15965452_743661745810655_1619974556729707528_n (1).jpg','','15965452 743661745810655 1619974556729707528 n (1)','2017-02-09 13:38:00','86 KB','JPG','717 x 960 px',1,27,1,0,0,0,10,'',0,0,NULL),(224,3,'15078873 709756342534529 436621417903759865 n (1)','15078873 709756342534529 436621417903759865 n (1)','/15078873_709756342534529_436621417903759865_n (1).jpg','/thumb/15078873_709756342534529_436621417903759865_n (1).jpg','','15078873 709756342534529 436621417903759865 n (1)','2017-02-09 13:38:00','65 KB','JPG','960 x 960 px',1,26,1,0,0,0,11,'',0,0,NULL),(226,3,'15027571 709756445867852 1174746755824534041 n (1)','15027571 709756445867852 1174746755824534041 n (1)','/15027571_709756445867852_1174746755824534041_n (1).jpg','/thumb/15027571_709756445867852_1174746755824534041_n (1).jpg','','15027571 709756445867852 1174746755824534041 n (1)','2017-02-09 13:38:00','57 KB','JPG','960 x 720 px',1,25,1,0,0,0,19,'',0,0,NULL),(227,3,'15078651 709756532534510 3340440437288080653 n (1)','15078651 709756532534510 3340440437288080653 n (1)','/15078651_709756532534510_3340440437288080653_n (1).jpg','/thumb/15078651_709756532534510_3340440437288080653_n (1).jpg','','15078651 709756532534510 3340440437288080653 n (1)','2017-02-09 13:38:00','71 KB','JPG','960 x 960 px',1,24,1,0,0,0,11,'',0,0,NULL),(228,3,'15109420 709756352534528 8927628996292000683 n (1)','15109420 709756352534528 8927628996292000683 n (1)','/15109420_709756352534528_8927628996292000683_n (1).jpg','/thumb/15109420_709756352534528_8927628996292000683_n (1).jpg','','15109420 709756352534528 8927628996292000683 n (1)','2017-02-09 13:38:00','73 KB','JPG','960 x 720 px',1,23,1,0,0,0,11,'',0,0,NULL),(229,3,'15940381 743578252485671 3790552740689288398 n (1)','15940381 743578252485671 3790552740689288398 n (1)','/15940381_743578252485671_3790552740689288398_n (1).jpg','/thumb/15940381_743578252485671_3790552740689288398_n (1).jpg','','15940381 743578252485671 3790552740689288398 n (1)','2017-02-09 13:38:00','97 KB','JPG','960 x 540 px',1,22,1,0,0,0,149,'',0,0,NULL),(230,3,'15055633 709756389201191 4259776154113771962 n (1)','15055633 709756389201191 4259776154113771962 n (1)','/15055633_709756389201191_4259776154113771962_n (1).jpg','/thumb/15055633_709756389201191_4259776154113771962_n (1).jpg','','15055633 709756389201191 4259776154113771962 n (1)','2017-02-09 13:38:00','48 KB','JPG','541 x 960 px',1,21,1,0,0,0,10,'',0,0,NULL),(231,3,'15027457 709756345867862 4871319676468787832 n (1)','15027457 709756345867862 4871319676468787832 n (1)','/15027457_709756345867862_4871319676468787832_n (1).jpg','/thumb/15027457_709756345867862_4871319676468787832_n (1).jpg','','15027457 709756345867862 4871319676468787832 n (1)','2017-02-09 13:38:00','63 KB','JPG','960 x 720 px',1,20,1,0,0,0,12,'',0,0,NULL),(232,3,'15032134 709756405867856 4061707255261005082 n (1) (1)','15032134 709756405867856 4061707255261005082 n (1) (1)','/15032134_709756405867856_4061707255261005082_n_(1) (1).jpg','/thumb/15032134_709756405867856_4061707255261005082_n_(1) (1).jpg','','15032134 709756405867856 4061707255261005082 n (1) (1)','2017-02-09 13:38:00','67 KB','JPG','960 x 720 px',1,19,1,0,0,0,70,'',0,0,NULL),(233,3,'11041632 438225409687625 583213116448687362 n (1)','11041632 438225409687625 583213116448687362 n (1)','/11041632_438225409687625_583213116448687362_n (1).jpg','/thumb/11041632_438225409687625_583213116448687362_n (1).jpg','','11041632 438225409687625 583213116448687362 n (1)','2017-02-09 13:38:00','57 KB','JPG','720 x 960 px',1,18,1,0,0,0,12,'',0,0,NULL),(234,3,'12141783 535457479964417 1950597214023181125 n (1)','12141783 535457479964417 1950597214023181125 n (1)','/12141783_535457479964417_1950597214023181125_n (1).jpg','/thumb/12141783_535457479964417_1950597214023181125_n (1).jpg','','12141783 535457479964417 1950597214023181125 n (1)','2017-02-09 13:38:00','60 KB','JPG','720 x 960 px',1,17,1,0,0,0,21,'',0,0,NULL),(235,3,'12115843 535458363297662 4725632183906717294 n (1)','12115843 535458363297662 4725632183906717294 n (1)','/12115843_535458363297662_4725632183906717294_n (1).jpg','/thumb/12115843_535458363297662_4725632183906717294_n (1).jpg','','12115843 535458363297662 4725632183906717294 n (1)','2017-02-09 13:38:00','65 KB','JPG','960 x 720 px',1,16,1,0,0,0,71,'',0,0,NULL),(236,3,'12112206 535479026628929 8206034421439967868 n (1)','12112206 535479026628929 8206034421439967868 n (1)','/12112206_535479026628929_8206034421439967868_n (1).jpg','/thumb/12112206_535479026628929_8206034421439967868_n (1).jpg','','12112206 535479026628929 8206034421439967868 n (1)','2017-02-09 13:38:00','58 KB','JPG','960 x 720 px',1,15,1,0,0,0,60,'',0,0,NULL),(237,3,'12109204 535490579961107 8614764699116049561 n (1)','12109204 535490579961107 8614764699116049561 n (1)','/12109204_535490579961107_8614764699116049561_n (1).jpg','/thumb/12109204_535490579961107_8614764699116049561_n (1).jpg','','12109204 535490579961107 8614764699116049561 n (1)','2017-02-09 13:38:00','81 KB','JPG','960 x 960 px',1,14,1,0,0,0,30,'',0,0,NULL),(238,3,'12108986 535490596627772 3059550426701439617 n (1)','12108986 535490596627772 3059550426701439617 n (1)','/12108986_535490596627772_3059550426701439617_n (1).jpg','/thumb/12108986_535490596627772_3059550426701439617_n (1).jpg','','12108986 535490596627772 3059550426701439617 n (1)','2017-02-09 13:38:00','69 KB','JPG','720 x 960 px',1,13,1,0,0,0,107,'',0,0,NULL),(239,3,'11016085 438241139686052 6607147946269238720 n (1)','11016085 438241139686052 6607147946269238720 n (1)','/11016085_438241139686052_6607147946269238720_n (1).jpg','/thumb/11016085_438241139686052_6607147946269238720_n (1).jpg','','11016085 438241139686052 6607147946269238720 n (1)','2017-02-09 13:38:00','69 KB','JPG','960 x 717 px',1,12,1,0,0,0,55,'',0,0,NULL),(240,3,'11214151 535478966628935 5225915069066191388 n (1)','11214151 535478966628935 5225915069066191388 n (1)','/11214151_535478966628935_5225915069066191388_n (1).jpg','/thumb/11214151_535478966628935_5225915069066191388_n (1).jpg','','11214151 535478966628935 5225915069066191388 n (1)','2017-02-09 13:38:00','62 KB','JPG','960 x 720 px',1,11,1,0,0,0,13,'',0,0,NULL),(241,3,'12107227 535478976628934 4549332577627786452 n (1)','12107227 535478976628934 4549332577627786452 n (1)','/12107227_535478976628934_4549332577627786452_n (1).jpg','/thumb/12107227_535478976628934_4549332577627786452_n (1).jpg','','12107227 535478976628934 4549332577627786452 n (1)','2017-02-09 13:38:00','45 KB','JPG','720 x 960 px',1,10,1,0,0,0,14,'',0,0,NULL),(242,3,'11034168 438225193020980 1450865006179507433 n (1)','11034168 438225193020980 1450865006179507433 n (1)','/11034168_438225193020980_1450865006179507433_n (1).jpg','/thumb/11034168_438225193020980_1450865006179507433_n (1).jpg','','11034168 438225193020980 1450865006179507433 n (1)','2017-02-09 13:38:00','54 KB','JPG','720 x 960 px',1,9,1,0,0,0,24,'',0,0,NULL),(243,3,'11006467 438231256353707 7030215638843729929 n (1)','11006467 438231256353707 7030215638843729929 n (1)','/11006467_438231256353707_7030215638843729929_n (1).jpg','/thumb/11006467_438231256353707_7030215638843729929_n (1).jpg','','11006467 438231256353707 7030215638843729929 n (1)','2017-02-09 13:38:00','62 KB','JPG','717 x 960 px',1,8,1,0,0,0,28,'',0,0,NULL),(244,3,'10997610 438231249687041 8985810256654604275 n (1)','10997610 438231249687041 8985810256654604275 n (1)','/10997610_438231249687041_8985810256654604275_n (1).jpg','/thumb/10997610_438231249687041_8985810256654604275_n (1).jpg','','10997610 438231249687041 8985810256654604275 n (1)','2017-02-09 13:38:00','51 KB','JPG','960 x 717 px',1,7,1,0,0,0,25,'',0,0,NULL),(245,3,'10989098 438231229687043 7187656089181486111 n (1)','10989098 438231229687043 7187656089181486111 n (1)','/10989098_438231229687043_7187656089181486111_n (1).jpg','/thumb/10989098_438231229687043_7187656089181486111_n (1).jpg','','10989098 438231229687043 7187656089181486111 n (1)','2017-02-09 13:38:00','47 KB','JPG','960 x 717 px',1,6,1,0,0,0,96,'',0,0,NULL),(246,3,'11021514 436896823153817 5832307778724865252 o (1)','11021514 436896823153817 5832307778724865252 o (1)','/11021514_436896823153817_5832307778724865252_o (1).jpg','/thumb/11021514_436896823153817_5832307778724865252_o (1).jpg','','11021514 436896823153817 5832307778724865252 o (1)','2017-02-09 13:38:00','94 KB','JPG','717 x 960 px',1,5,1,0,0,0,83,'',0,0,NULL),(247,3,'1908330 436896769820489 8349744890692565307 n (1)','1908330 436896769820489 8349744890692565307 n (1)','/1908330_436896769820489_8349744890692565307_n (1).jpg','/thumb/1908330_436896769820489_8349744890692565307_n (1).jpg','','1908330 436896769820489 8349744890692565307 n (1)','2017-02-09 13:38:00','96 KB','JPG','960 x 717 px',1,4,1,0,0,0,15,'',0,0,NULL),(248,3,'10923260 438225189687647 4050575526091580693 n (1)','10923260 438225189687647 4050575526091580693 n (1)','/10923260_438225189687647_4050575526091580693_n_(1).jpg','/thumb/10923260_438225189687647_4050575526091580693_n_(1).jpg','','10923260 438225189687647 4050575526091580693 n (1)','2017-02-09 13:38:00','46 KB','JPG','720 x 960 px',1,3,1,0,0,0,21,'',0,0,NULL),(249,3,'10830643 438241209686045 4558477466658253042 o (1)','10830643 438241209686045 4558477466658253042 o (1)','/10830643_438241209686045_4558477466658253042_o (1).jpg','/thumb/10830643_438241209686045_4558477466658253042_o (1).jpg','','10830643 438241209686045 4558477466658253042 o (1)','2017-02-09 13:38:00','82 KB','JPG','717 x 960 px',1,2,1,0,0,0,229,'',0,0,NULL),(250,3,'10340147 438231253020374 5727635649646503003 n (1)','10340147 438231253020374 5727635649646503003 n (1)','/10340147_438231253020374_5727635649646503003_n (1).jpg','/thumb/10340147_438231253020374_5727635649646503003_n (1).jpg','','10340147 438231253020374 5727635649646503003 n (1)','2017-02-09 13:38:00','48 KB','JPG','717 x 960 px',1,1,1,0,0,0,1727,'',0,0,NULL),(251,4,'12592180 570501169793381 2154810404736987256 n (1)','12592180 570501169793381 2154810404736987256 n (1)','/12592180_570501169793381_2154810404736987256_n (1).jpg','/thumb/12592180_570501169793381_2154810404736987256_n (1).jpg','','12592180 570501169793381 2154810404736987256 n (1)','2017-02-09 13:39:00','94 KB','JPG','960 x 720 px',1,11,1,0,0,0,14,'',0,0,NULL),(252,4,'10710771 359878854188948 6474092473851829581 n (1)','10710771 359878854188948 6474092473851829581 n (1)','/10710771_359878854188948_6474092473851829581_n (1).jpg','/thumb/10710771_359878854188948_6474092473851829581_n (1).jpg','','10710771 359878854188948 6474092473851829581 n (1)','2017-02-09 13:39:00','104 KB','JPG','720 x 960 px',1,10,1,0,0,0,3,'',0,0,NULL),(253,4,'11025823 438237716353061 8171251320096505730 n (1)','11025823 438237716353061 8171251320096505730 n (1)','/11025823_438237716353061_8171251320096505730_n (1).jpg','/thumb/11025823_438237716353061_8171251320096505730_n (1).jpg','','11025823 438237716353061 8171251320096505730 n (1)','2017-02-09 13:39:00','120 KB','JPG','960 x 717 px',1,9,1,0,0,0,5,'',0,0,NULL),(254,4,'12642708 570501099793388 6052336799551530073 n (1)','12642708 570501099793388 6052336799551530073 n (1)','/12642708_570501099793388_6052336799551530073_n (1).jpg','/thumb/12642708_570501099793388_6052336799551530073_n (1).jpg','','12642708 570501099793388 6052336799551530073 n (1)','2017-02-09 13:39:00','82 KB','JPG','717 x 960 px',1,8,1,0,0,0,15,'',0,0,NULL),(255,4,'12631370 570501129793385 2427550458042026263 n (1)','12631370 570501129793385 2427550458042026263 n (1)','/12631370_570501129793385_2427550458042026263_n (1).jpg','/thumb/12631370_570501129793385_2427550458042026263_n (1).jpg','','12631370 570501129793385 2427550458042026263 n (1)','2017-02-09 13:39:00','54 KB','JPG','717 x 960 px',1,7,1,0,0,0,5,'',0,0,NULL),(256,4,'10583783 359878850855615 424309361168159593 n (1)','10583783 359878850855615 424309361168159593 n (1)','/10583783_359878850855615_424309361168159593_n (1).jpg','/thumb/10583783_359878850855615_424309361168159593_n (1).jpg','','10583783 359878850855615 424309361168159593 n (1)','2017-02-09 13:39:00','87 KB','JPG','720 x 960 px',1,6,1,0,0,0,11,'',0,0,NULL),(257,4,'10568924 359878837522283 721014791342477095 n (1)','10568924 359878837522283 721014791342477095 n (1)','/10568924_359878837522283_721014791342477095_n (1).jpg','/thumb/10568924_359878837522283_721014791342477095_n (1).jpg','','10568924 359878837522283 721014791342477095 n (1)','2017-02-09 13:39:00','173 KB','JPG','720 x 960 px',1,5,1,0,0,0,19,'',0,0,NULL),(258,4,'10996082 438237719686394 6890279653051768314 n (1)','10996082 438237719686394 6890279653051768314 n (1)','/10996082_438237719686394_6890279653051768314_n (1).jpg','/thumb/10996082_438237719686394_6890279653051768314_n (1).jpg','','10996082 438237719686394 6890279653051768314 n (1)','2017-02-09 13:39:00','135 KB','JPG','960 x 717 px',1,4,1,0,0,0,14,'',0,0,NULL),(259,4,'10423797 438241153019384 32059627112630958 n (1)','10423797 438241153019384 32059627112630958 n (1)','/10423797_438241153019384_32059627112630958_n (1).jpg','/thumb/10423797_438241153019384_32059627112630958_n (1).jpg','','10423797 438241153019384 32059627112630958 n (1)','2017-02-09 13:39:00','77 KB','JPG','960 x 717 px',1,3,1,0,0,0,13,'',0,0,NULL),(260,4,'10362360 438241346352698 7593930794979941511 n (1)','10362360 438241346352698 7593930794979941511 n (1)','/10362360_438241346352698_7593930794979941511_n (1).jpg','/thumb/10362360_438241346352698_7593930794979941511_n (1).jpg','','10362360 438241346352698 7593930794979941511 n (1)','2017-02-09 13:39:00','32 KB','JPG','550 x 365 px',1,2,1,0,0,0,43,'',0,0,NULL),(261,4,'10394856 389971271179706 6503830863839198953 n (1)','10394856 389971271179706 6503830863839198953 n (1)','/10394856_389971271179706_6503830863839198953_n (1).jpg','/thumb/10394856_389971271179706_6503830863839198953_n (1).jpg','','10394856 389971271179706 6503830863839198953 n (1)','2017-02-09 13:39:00','97 KB','JPG','720 x 960 px',1,1,1,0,0,0,106,'',0,0,NULL);
/*!40000 ALTER TABLE `wp_bwg_image` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_image_comment`
--

DROP TABLE IF EXISTS `wp_bwg_image_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_image_comment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `image_id` bigint(20) NOT NULL,
  `name` varchar(255) NOT NULL,
  `date` varchar(64) NOT NULL,
  `comment` mediumtext NOT NULL,
  `url` mediumtext NOT NULL,
  `mail` mediumtext NOT NULL,
  `published` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_image_comment`
--

LOCK TABLES `wp_bwg_image_comment` WRITE;
/*!40000 ALTER TABLE `wp_bwg_image_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_image_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_image_rate`
--

DROP TABLE IF EXISTS `wp_bwg_image_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_image_rate` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `image_id` bigint(20) NOT NULL,
  `rate` float NOT NULL,
  `ip` varchar(64) NOT NULL,
  `date` varchar(64) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_image_rate`
--

LOCK TABLES `wp_bwg_image_rate` WRITE;
/*!40000 ALTER TABLE `wp_bwg_image_rate` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_image_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_image_tag`
--

DROP TABLE IF EXISTS `wp_bwg_image_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_image_tag` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tag_id` bigint(20) NOT NULL,
  `image_id` bigint(20) NOT NULL,
  `gallery_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_image_tag`
--

LOCK TABLES `wp_bwg_image_tag` WRITE;
/*!40000 ALTER TABLE `wp_bwg_image_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_bwg_image_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_option`
--

DROP TABLE IF EXISTS `wp_bwg_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_option` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `images_directory` mediumtext NOT NULL,
  `masonry` varchar(255) NOT NULL,
  `mosaic` varchar(255) NOT NULL,
  `resizable_mosaic` tinyint(1) NOT NULL,
  `mosaic_total_width` int(4) NOT NULL,
  `image_column_number` int(4) NOT NULL,
  `images_per_page` int(4) NOT NULL,
  `thumb_width` int(4) NOT NULL,
  `thumb_height` int(4) NOT NULL,
  `upload_thumb_width` int(4) NOT NULL,
  `upload_thumb_height` int(4) NOT NULL,
  `image_enable_page` tinyint(1) NOT NULL,
  `image_title_show_hover` varchar(20) NOT NULL,
  `ecommerce_icon_show_hover` varchar(20) NOT NULL,
  `album_column_number` int(4) NOT NULL,
  `albums_per_page` int(4) NOT NULL,
  `album_title_show_hover` varchar(8) NOT NULL,
  `album_thumb_width` int(4) NOT NULL,
  `album_thumb_height` int(4) NOT NULL,
  `album_enable_page` tinyint(1) NOT NULL,
  `extended_album_height` int(4) NOT NULL,
  `extended_album_description_enable` tinyint(1) NOT NULL,
  `image_browser_width` int(4) NOT NULL,
  `image_browser_title_enable` tinyint(1) NOT NULL,
  `image_browser_description_enable` tinyint(1) NOT NULL,
  `blog_style_width` int(4) NOT NULL,
  `blog_style_title_enable` tinyint(1) NOT NULL,
  `blog_style_images_per_page` int(4) NOT NULL,
  `blog_style_enable_page` tinyint(1) NOT NULL,
  `slideshow_type` varchar(16) NOT NULL,
  `slideshow_interval` int(4) NOT NULL,
  `slideshow_width` int(4) NOT NULL,
  `slideshow_height` int(4) NOT NULL,
  `slideshow_enable_autoplay` tinyint(1) NOT NULL,
  `slideshow_enable_shuffle` tinyint(1) NOT NULL,
  `slideshow_enable_ctrl` tinyint(1) NOT NULL,
  `slideshow_enable_filmstrip` tinyint(1) NOT NULL,
  `slideshow_filmstrip_height` int(4) NOT NULL,
  `slideshow_enable_title` tinyint(1) NOT NULL,
  `slideshow_title_position` varchar(16) NOT NULL,
  `slideshow_enable_description` tinyint(1) NOT NULL,
  `slideshow_description_position` varchar(16) NOT NULL,
  `slideshow_enable_music` tinyint(1) NOT NULL,
  `slideshow_audio_url` varchar(255) NOT NULL,
  `slideshow_effect_duration` int(4) NOT NULL,
  `popup_width` int(4) NOT NULL,
  `popup_height` int(4) NOT NULL,
  `popup_type` varchar(16) NOT NULL,
  `popup_interval` int(4) NOT NULL,
  `popup_enable_filmstrip` tinyint(1) NOT NULL,
  `popup_filmstrip_height` int(4) NOT NULL,
  `popup_enable_ctrl_btn` tinyint(1) NOT NULL,
  `popup_enable_fullscreen` tinyint(1) NOT NULL,
  `popup_enable_info` tinyint(1) NOT NULL,
  `popup_info_always_show` tinyint(1) NOT NULL,
  `popup_enable_rate` tinyint(1) NOT NULL,
  `popup_enable_comment` tinyint(1) NOT NULL,
  `popup_enable_email` tinyint(1) NOT NULL,
  `popup_enable_captcha` tinyint(1) NOT NULL,
  `popup_enable_download` tinyint(1) NOT NULL,
  `popup_enable_fullsize_image` tinyint(1) NOT NULL,
  `popup_enable_facebook` tinyint(1) NOT NULL,
  `popup_enable_twitter` tinyint(1) NOT NULL,
  `popup_enable_google` tinyint(1) NOT NULL,
  `popup_enable_ecommerce` tinyint(1) NOT NULL,
  `popup_effect_duration` int(4) NOT NULL,
  `watermark_type` varchar(8) NOT NULL,
  `watermark_position` varchar(16) NOT NULL,
  `watermark_width` int(4) NOT NULL,
  `watermark_height` int(4) NOT NULL,
  `watermark_url` mediumtext NOT NULL,
  `watermark_text` mediumtext NOT NULL,
  `watermark_link` mediumtext NOT NULL,
  `watermark_font_size` int(4) NOT NULL,
  `watermark_font` varchar(16) NOT NULL,
  `watermark_color` varchar(8) NOT NULL,
  `watermark_opacity` int(4) NOT NULL,
  `built_in_watermark_type` varchar(16) NOT NULL,
  `built_in_watermark_position` varchar(16) NOT NULL,
  `built_in_watermark_size` int(4) NOT NULL,
  `built_in_watermark_url` mediumtext NOT NULL,
  `built_in_watermark_text` mediumtext NOT NULL,
  `built_in_watermark_font_size` int(4) NOT NULL,
  `built_in_watermark_font` varchar(16) NOT NULL,
  `built_in_watermark_color` varchar(8) NOT NULL,
  `built_in_watermark_opacity` int(4) NOT NULL,
  `image_right_click` tinyint(1) NOT NULL,
  `popup_fullscreen` tinyint(1) NOT NULL,
  `gallery_role` tinyint(1) NOT NULL,
  `album_role` tinyint(1) NOT NULL,
  `image_role` tinyint(1) NOT NULL,
  `popup_autoplay` tinyint(1) NOT NULL,
  `album_view_type` varchar(16) NOT NULL,
  `popup_enable_pinterest` tinyint(1) NOT NULL,
  `popup_enable_tumblr` tinyint(1) NOT NULL,
  `show_search_box` tinyint(1) NOT NULL,
  `search_box_width` int(4) NOT NULL,
  `preload_images` tinyint(1) NOT NULL,
  `preload_images_count` int(4) NOT NULL,
  `thumb_click_action` varchar(16) NOT NULL,
  `thumb_link_target` tinyint(1) NOT NULL,
  `comment_moderation` tinyint(1) NOT NULL,
  `popup_hit_counter` tinyint(1) NOT NULL,
  `enable_ML_import` tinyint(1) NOT NULL,
  `showthumbs_name` tinyint(1) NOT NULL,
  `show_album_name` tinyint(1) NOT NULL,
  `show_image_counts` tinyint(1) NOT NULL,
  `upload_img_width` int(4) NOT NULL,
  `upload_img_height` int(4) NOT NULL,
  `play_icon` tinyint(1) NOT NULL,
  `show_masonry_thumb_description` tinyint(1) NOT NULL,
  `slideshow_title_full_width` tinyint(1) NOT NULL,
  `popup_info_full_width` tinyint(1) NOT NULL,
  `show_sort_images` tinyint(1) NOT NULL,
  `autoupdate_interval` int(4) NOT NULL,
  `instagram_access_token` varchar(128) NOT NULL,
  `description_tb` tinyint(1) NOT NULL,
  `enable_seo` tinyint(1) NOT NULL,
  `autohide_lightbox_navigation` tinyint(1) NOT NULL,
  `autohide_slideshow_navigation` tinyint(1) NOT NULL,
  `read_metadata` tinyint(1) NOT NULL,
  `enable_loop` tinyint(1) NOT NULL,
  `enable_addthis` tinyint(1) NOT NULL,
  `addthis_profile_id` varchar(66) NOT NULL,
  `carousel_interval` int(4) NOT NULL,
  `carousel_width` int(4) NOT NULL,
  `carousel_height` int(4) NOT NULL,
  `carousel_image_column_number` int(4) NOT NULL,
  `carousel_image_par` varchar(32) NOT NULL,
  `carousel_enable_title` tinyint(1) NOT NULL,
  `carousel_enable_autoplay` tinyint(1) NOT NULL,
  `carousel_r_width` int(4) NOT NULL,
  `carousel_fit_containerWidth` tinyint(1) NOT NULL,
  `carousel_prev_next_butt` tinyint(1) NOT NULL,
  `carousel_play_pause_butt` tinyint(1) NOT NULL,
  `permissions` varchar(20) NOT NULL,
  `facebook_app_id` varchar(64) NOT NULL,
  `facebook_app_secret` varchar(64) NOT NULL,
  `show_tag_box` tinyint(1) NOT NULL,
  `show_hide_custom_post` tinyint(1) NOT NULL,
  `show_hide_post_meta` tinyint(1) NOT NULL,
  `use_inline_stiles_and_scripts` tinyint(1) NOT NULL,
  `placeholder` varchar(32) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_option`
--

LOCK TABLES `wp_bwg_option` WRITE;
/*!40000 ALTER TABLE `wp_bwg_option` DISABLE KEYS */;
INSERT INTO `wp_bwg_option` VALUES (1,'wp-content/uploads','vertical','vertical',0,100,5,30,180,90,300,300,1,'none','',5,30,'hover',120,90,1,150,1,800,1,1,800,1,5,1,'fade',5,800,500,0,0,1,1,90,0,'top-right',0,'bottom-right',0,'',1,800,500,'fade',5,1,70,1,1,1,0,0,1,0,0,0,0,1,1,1,0,1,'none','bottom-left',90,90,'https://chicagolandremodeling.com/wp-content/plugins/photo-gallery/images/watermark.png','web-dorado.com','https://web-dorado.com',20,'segoe ui','FFFFFF',30,'none','middle-center',15,'https://chicagolandremodeling.com/wp-content/plugins/photo-gallery/images/watermark.png','web-dorado.com',20,'arial','FFFFFF',30,0,0,0,0,0,0,'thumbnail',0,0,0,180,0,10,'open_lightbox',1,0,0,0,0,0,0,1200,1200,1,0,0,0,0,30,'',0,1,1,1,1,1,0,'',5,300,300,5,'0.75',0,0,800,1,1,1,'manage_options','','',0,0,0,0,'');
/*!40000 ALTER TABLE `wp_bwg_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_shortcode`
--

DROP TABLE IF EXISTS `wp_bwg_shortcode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_shortcode` (
  `id` bigint(20) NOT NULL,
  `tagtext` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_shortcode`
--

LOCK TABLES `wp_bwg_shortcode` WRITE;
/*!40000 ALTER TABLE `wp_bwg_shortcode` DISABLE KEYS */;
INSERT INTO `wp_bwg_shortcode` VALUES (1,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"1\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(2,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(3,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"4\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(4,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"0\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(5,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"3\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(6,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(7,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"540\" thumb_height=\"270\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(8,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"360\" thumb_height=\"180\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(9,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"4\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"360\" thumb_height=\"180\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"1\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(10,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"270\" thumb_height=\"135\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"1\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(11,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"280\" thumb_height=\"140\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(12,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"300\" thumb_height=\"150\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"1\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(13,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"290\" thumb_height=\"145\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(14,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"1\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"292\" thumb_height=\"146\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(15,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"1\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"292\" thumb_height=\"146\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(16,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"294\" thumb_height=\"147\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(17,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"296\" thumb_height=\"148\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(18,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"3\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"295\" thumb_height=\"147\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(19,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"2\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"294\" thumb_height=\"147\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(20,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"3\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"294\" thumb_height=\"147\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(21,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"4\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"294\" thumb_height=\"147\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(22,' gallery_type=\"thumbnails\" theme_id=\"1\" gallery_id=\"0\" sort_by=\"order\" order_by=\"asc\" show_search_box=\"0\" show_sort_images=\"0\" search_box_width=\"180\" image_column_number=\"5\" images_per_page=\"30\" image_title=\"none\" image_enable_page=\"1\" thumb_width=\"180\" thumb_height=\"90\" load_more_image_count=\"30\" show_tag_box=\"0\" tag=\"0\" show_gallery_description=\"0\" showthumbs_name=\"0\" thumb_click_action=\"open_lightbox\" thumb_link_target=\"1\" popup_fullscreen=\"0\" popup_autoplay=\"0\" popup_width=\"800\" popup_height=\"500\" popup_effect=\"fade\" popup_interval=\"5\" popup_enable_filmstrip=\"1\" popup_filmstrip_height=\"70\" popup_enable_ctrl_btn=\"1\" popup_enable_fullscreen=\"1\" popup_enable_info=\"1\" popup_info_always_show=\"0\" popup_info_full_width=\"0\" popup_enable_rate=\"0\" popup_enable_comment=\"1\" popup_hit_counter=\"0\" popup_enable_facebook=\"1\" popup_enable_twitter=\"1\" popup_enable_google=\"1\" popup_enable_pinterest=\"0\" popup_enable_tumblr=\"0\" show_tag_box=\"0\" popup_effect_duration=\"1\" watermark_type=\"none\" watermark_link=\"https://web-dorado.com\"'),(23,' use_option_defaults=\"1\" type=\"gallery\" theme_id=\"1\" gallery_id=\"1\" tag=\"0\" gallery_type=\"thumbnails\"'),(24,' use_option_defaults=\"1\" type=\"gallery\" theme_id=\"1\" gallery_id=\"2\" tag=\"0\" gallery_type=\"thumbnails\"'),(25,' use_option_defaults=\"1\" type=\"gallery\" theme_id=\"1\" gallery_id=\"3\" tag=\"0\" gallery_type=\"thumbnails\"'),(26,' use_option_defaults=\"1\" type=\"gallery\" theme_id=\"1\" gallery_id=\"4\" tag=\"0\" gallery_type=\"thumbnails\"');
/*!40000 ALTER TABLE `wp_bwg_shortcode` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bwg_theme`
--

DROP TABLE IF EXISTS `wp_bwg_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bwg_theme` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `options` longtext NOT NULL,
  `default_theme` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bwg_theme`
--

LOCK TABLES `wp_bwg_theme` WRITE;
/*!40000 ALTER TABLE `wp_bwg_theme` DISABLE KEYS */;
INSERT INTO `wp_bwg_theme` VALUES (1,'Theme 1','{\"thumb_margin\":4,\"thumb_padding\":0,\"thumb_border_radius\":\"0\",\"thumb_border_width\":0,\"thumb_border_style\":\"none\",\"thumb_border_color\":\"CCCCCC\",\"thumb_bg_color\":\"FFFFFF\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":0,\"thumb_box_shadow\":\"0px 0px 0px #888888\",\"thumb_transparent\":100,\"thumb_align\":\"center\",\"thumb_hover_effect\":\"scale\",\"thumb_hover_effect_value\":\"1.1\",\"thumb_transition\":1,\"thumb_title_font_color\":\"CCCCCC\",\"thumb_title_font_style\":\"segoe ui\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":16,\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"2px\",\"thumb_title_shadow\":\"0px 0px 0px #888888\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":0,\"page_nav_font_size\":12,\"page_nav_font_style\":\"segoe ui\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":1,\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":100,\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":1,\"page_nav_button_text\":0,\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":70,\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_transparent\":100,\"lightbox_ctrl_btn_color\":\"FFFFFF\",\"lightbox_toggle_btn_height\":14,\"lightbox_toggle_btn_width\":100,\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":65,\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_close_btn_transparent\":100,\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":2,\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"FFFFFF\",\"lightbox_close_btn_size\":10,\"lightbox_close_btn_width\":20,\"lightbox_close_btn_height\":20,\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"FFFFFF\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":0,\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"FFFFFF\",\"lightbox_rl_btn_height\":40,\"lightbox_rl_btn_width\":40,\"lightbox_rl_btn_size\":20,\"lightbox_close_rl_btn_hover_color\":\"CCCCCC\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_width\":400,\"lightbox_comment_bg_color\":\"000000\",\"lightbox_comment_font_color\":\"CCCCCC\",\"lightbox_comment_font_style\":\"segoe ui\",\"lightbox_comment_font_size\":12,\"lightbox_comment_button_bg_color\":\"616161\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_radius\":\"3px\",\"lightbox_comment_button_padding\":\"3px 10px\",\"lightbox_comment_input_bg_color\":\"333333\",\"lightbox_comment_input_border_color\":\"666666\",\"lightbox_comment_input_border_width\":1,\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_radius\":\"0\",\"lightbox_comment_input_padding\":\"2px\",\"lightbox_comment_separator_width\":1,\"lightbox_comment_separator_style\":\"solid\",\"lightbox_comment_separator_color\":\"383838\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_date_font_size\":10,\"lightbox_comment_body_font_size\":12,\"lightbox_comment_share_button_color\":\"CCCCCC\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_rl_btn_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"fa-chevron\",\"lightbox_rl_btn_transparent\":80,\"lightbox_bg_transparent\":100,\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"segoe ui\",\"album_compact_back_font_size\":16,\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"CCCCCC\",\"album_compact_title_font_style\":\"segoe ui\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":16,\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":0,\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":0,\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"FFFFFF\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":0,\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":100,\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":0,\"album_extended_thumb_margin\":2,\"album_extended_thumb_padding\":0,\"album_extended_thumb_border_radius\":\"0\",\"album_extended_thumb_border_width\":0,\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_color\":\"CCCCCC\",\"album_extended_thumb_bg_color\":\"FFFFFF\",\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_thumb_bg_transparent\":0,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_transparent\":100,\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_hover_effect\":\"scale\",\"album_extended_thumb_hover_effect_value\":\"1.1\",\"album_extended_thumb_transition\":0,\"album_extended_back_font_color\":\"000000\",\"album_extended_back_font_style\":\"segoe ui\",\"album_extended_back_font_size\":20,\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_div_bg_color\":\"FFFFFF\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"0 0 0 0\",\"album_extended_div_margin\":\"0 0 5px 0\",\"album_extended_div_padding\":10,\"album_extended_div_separator_width\":1,\"album_extended_div_separator_style\":\"solid\",\"album_extended_div_separator_color\":\"E0E0E0\",\"album_extended_thumb_div_bg_color\":\"FFFFFF\",\"album_extended_thumb_div_border_radius\":\"0\",\"album_extended_thumb_div_border_width\":1,\"album_extended_thumb_div_border_style\":\"solid\",\"album_extended_thumb_div_border_color\":\"E8E8E8\",\"album_extended_thumb_div_padding\":\"5px\",\"album_extended_text_div_bg_color\":\"FFFFFF\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_width\":1,\"album_extended_text_div_border_style\":\"solid\",\"album_extended_text_div_border_color\":\"E8E8E8\",\"album_extended_text_div_padding\":\"5px\",\"album_extended_title_span_border_width\":1,\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_style\":\"segoe ui\",\"album_extended_title_font_size\":16,\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":2,\"album_extended_title_padding\":\"2px\",\"album_extended_desc_span_border_width\":1,\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_font_color\":\"000000\",\"album_extended_desc_font_style\":\"segoe ui\",\"album_extended_desc_font_size\":14,\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_padding\":\"2px\",\"album_extended_desc_more_color\":\"F2D22E\",\"album_extended_desc_more_size\":12,\"masonry_thumb_padding\":4,\"masonry_thumb_border_radius\":\"0\",\"masonry_thumb_border_width\":0,\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":0,\"masonry_thumb_transparent\":100,\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":0,\"slideshow_cont_bg_color\":\"000000\",\"slideshow_close_btn_transparent\":100,\"slideshow_rl_btn_bg_color\":\"000000\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_box_shadow\":\"0px 0px 0px #000000\",\"slideshow_rl_btn_color\":\"FFFFFF\",\"slideshow_rl_btn_height\":40,\"slideshow_rl_btn_size\":20,\"slideshow_rl_btn_width\":40,\"slideshow_close_rl_btn_hover_color\":\"CCCCCC\",\"slideshow_filmstrip_pos\":\"top\",\"slideshow_filmstrip_thumb_border_width\":1,\"slideshow_filmstrip_thumb_border_style\":\"solid\",\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_margin\":\"0 1px\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_deactive_transparent\":80,\"slideshow_filmstrip_rl_bg_color\":\"3B3B3B\",\"slideshow_filmstrip_rl_btn_color\":\"FFFFFF\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_title_font_size\":16,\"slideshow_title_font\":\"segoe ui\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_opacity\":70,\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_background_color\":\"000000\",\"slideshow_title_padding\":\"0 0 0 0\",\"slideshow_description_font_size\":14,\"slideshow_description_font\":\"segoe ui\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_opacity\":70,\"slideshow_description_border_radius\":\"0\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_width\":12,\"slideshow_dots_height\":12,\"slideshow_dots_border_radius\":\"5px\",\"slideshow_dots_background_color\":\"F2D22E\",\"slideshow_dots_margin\":3,\"slideshow_dots_active_background_color\":\"FFFFFF\",\"slideshow_dots_active_border_width\":1,\"slideshow_dots_active_border_color\":\"000000\",\"slideshow_play_pause_btn_size\":60,\"slideshow_rl_btn_style\":\"fa-chevron\",\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"0\",\"blog_style_border_radius\":\"0\",\"blog_style_border_width\":1,\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"F5F5F5\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_transparent\":80,\"blog_style_box_shadow\":\"\",\"blog_style_align\":\"center\",\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_img_font_size\":16,\"blog_style_img_font_family\":\"segoe ui\",\"blog_style_img_font_color\":\"000000\",\"blog_style_share_buttons_color\":\"B3AFAF\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_font_size\":20,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_border_radius\":\"0\",\"image_browser_border_width\":1,\"image_browser_border_style\":\"none\",\"image_browser_border_color\":\"F5F5F5\",\"image_browser_bg_color\":\"EBEBEB\",\"image_browser_box_shadow\":\"\",\"image_browser_transparent\":80,\"image_browser_align\":\"center\",\"image_browser_image_description_margin\":\"0px 5px 0px 5px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_bg_color\":\"EBEBEB\",\"image_browser_image_description_align\":\"center\",\"image_browser_img_font_size\":15,\"image_browser_img_font_family\":\"segoe ui\",\"image_browser_img_font_color\":\"000000\",\"image_browser_full_padding\":\"4px\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_width\":2,\"image_browser_full_border_style\":\"none\",\"image_browser_full_border_color\":\"F7F7F7\",\"image_browser_full_bg_color\":\"F5F5F5\",\"image_browser_full_transparent\":90,\"image_browser_image_title_align\":\"top\",\"lightbox_info_pos\":\"top\",\"lightbox_info_align\":\"right\",\"lightbox_info_bg_color\":\"000000\",\"lightbox_info_bg_transparent\":70,\"lightbox_info_border_width\":1,\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"5px\",\"lightbox_info_padding\":\"5px\",\"lightbox_info_margin\":\"15px\",\"lightbox_title_color\":\"FFFFFF\",\"lightbox_title_font_style\":\"segoe ui\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_title_font_size\":18,\"lightbox_description_color\":\"FFFFFF\",\"lightbox_description_font_style\":\"segoe ui\",\"lightbox_description_font_weight\":\"normal\",\"lightbox_description_font_size\":14,\"lightbox_rate_pos\":\"bottom\",\"lightbox_rate_align\":\"right\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_size\":20,\"lightbox_rate_stars_count\":5,\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":70,\"lightbox_hit_border_width\":1,\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_style\":\"segoe ui\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_font_size\":14,\"masonry_description_font_size\":12,\"masonry_description_color\":\"CCCCCC\",\"masonry_description_font_style\":\"segoe ui\",\"album_masonry_back_font_color\":\"000000\",\"album_masonry_back_font_style\":\"segoe ui\",\"album_masonry_back_font_size\":16,\"album_masonry_back_font_weight\":\"bold\",\"album_masonry_back_padding\":\"0\",\"album_masonry_title_font_color\":\"CCCCCC\",\"album_masonry_title_font_style\":\"segoe ui\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"2px\",\"album_masonry_title_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_margin\":4,\"album_masonry_thumb_padding\":0,\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_width\":0,\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_color\":\"CCCCCC\",\"album_masonry_thumb_bg_color\":\"FFFFFF\",\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_thumb_bg_transparent\":0,\"album_masonry_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_transparent\":100,\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_hover_effect\":\"scale\",\"album_masonry_thumb_hover_effect_value\":\"1.1\",\"album_masonry_thumb_transition\":0,\"mosaic_thumb_padding\":4,\"mosaic_thumb_border_radius\":\"0\",\"mosaic_thumb_border_width\":0,\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"mosaic_thumb_bg_transparent\":0,\"mosaic_thumb_transparent\":100,\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_hover_effect\":\"scale\",\"mosaic_thumb_hover_effect_value\":\"1.1\",\"mosaic_thumb_title_font_color\":\"CCCCCC\",\"mosaic_thumb_title_font_style\":\"segoe ui\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"0px 0px 0px #888888\",\"mosaic_thumb_title_font_size\":16,\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_close_btn_transparent\":100,\"carousel_rl_btn_bg_color\":\"000000\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_color\":\"FFFFFF\",\"carousel_rl_btn_height\":40,\"carousel_rl_btn_size\":20,\"carousel_play_pause_btn_size\":20,\"carousel_rl_btn_width\":40,\"carousel_close_rl_btn_hover_color\":\"CCCCCC\",\"carousel_rl_btn_style\":\"fa-chevron\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_font_family\":\"segoe ui\",\"carousel_feature_border_width\":2,\"carousel_feature_border_style\":\"solid\",\"carousel_feature_border_color\":\"5D204F\",\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_color\":\"white\",\"carousel_title_opacity\":100,\"carousel_title_border_radius\":\"5px\",\"mosaic_thumb_transition\":1}',1),(2,'Theme 2','{\"thumb_margin\":4,\"thumb_padding\":4,\"thumb_border_radius\":\"0\",\"thumb_border_width\":5,\"thumb_border_style\":\"none\",\"thumb_border_color\":\"FFFFFF\",\"thumb_bg_color\":\"E8E8E8\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":0,\"thumb_box_shadow\":\"0px 0px 0px #888888\",\"thumb_transparent\":100,\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":1,\"thumb_title_font_color\":\"CCCCCC\",\"thumb_title_font_style\":\"segoe ui\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":16,\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"5px\",\"thumb_title_shadow\":\"\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":0,\"page_nav_font_size\":12,\"page_nav_font_style\":\"segoe ui\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":1,\"page_nav_border_style\":\"none\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FCFCFC\",\"page_nav_button_bg_transparent\":100,\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":1,\"page_nav_button_text\":0,\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":70,\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_transparent\":80,\"lightbox_ctrl_btn_color\":\"FFFFFF\",\"lightbox_toggle_btn_height\":14,\"lightbox_toggle_btn_width\":100,\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":80,\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_close_btn_transparent\":95,\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":0,\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"\",\"lightbox_close_btn_color\":\"FFFFFF\",\"lightbox_close_btn_size\":10,\"lightbox_close_btn_width\":20,\"lightbox_close_btn_height\":20,\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"FFFFFF\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":2,\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"FFFFFF\",\"lightbox_rl_btn_height\":40,\"lightbox_rl_btn_width\":40,\"lightbox_rl_btn_size\":20,\"lightbox_close_rl_btn_hover_color\":\"FFFFFF\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_width\":400,\"lightbox_comment_bg_color\":\"000000\",\"lightbox_comment_font_color\":\"CCCCCC\",\"lightbox_comment_font_style\":\"segoe ui\",\"lightbox_comment_font_size\":12,\"lightbox_comment_button_bg_color\":\"333333\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_radius\":\"3px\",\"lightbox_comment_button_padding\":\"3px 10px\",\"lightbox_comment_input_bg_color\":\"333333\",\"lightbox_comment_input_border_color\":\"666666\",\"lightbox_comment_input_border_width\":1,\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_radius\":\"0\",\"lightbox_comment_input_padding\":\"3px\",\"lightbox_comment_separator_width\":1,\"lightbox_comment_separator_style\":\"solid\",\"lightbox_comment_separator_color\":\"2B2B2B\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_date_font_size\":10,\"lightbox_comment_body_font_size\":12,\"lightbox_comment_share_button_color\":\"FFFFFF\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"2B2B2B\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_rl_btn_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_border_style\":\"none\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"fa-chevron\",\"lightbox_rl_btn_transparent\":80,\"lightbox_bg_transparent\":100,\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"segoe ui\",\"album_compact_back_font_size\":14,\"album_compact_back_font_weight\":\"normal\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"CCCCCC\",\"album_compact_title_font_style\":\"segoe ui\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":16,\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"5px\",\"album_compact_title_shadow\":\"\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":4,\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":1,\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"000000\",\"album_compact_thumb_bg_color\":\"E8E8E8\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":100,\"album_compact_thumb_box_shadow\":\"\",\"album_compact_thumb_transparent\":100,\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"rotate\",\"album_compact_thumb_hover_effect_value\":\"2deg\",\"album_compact_thumb_transition\":1,\"album_extended_thumb_margin\":2,\"album_extended_thumb_padding\":4,\"album_extended_thumb_border_radius\":\"0\",\"album_extended_thumb_border_width\":4,\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_color\":\"E8E8E8\",\"album_extended_thumb_bg_color\":\"E8E8E8\",\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_thumb_bg_transparent\":100,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_transparent\":100,\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_hover_effect\":\"rotate\",\"album_extended_thumb_hover_effect_value\":\"2deg\",\"album_extended_thumb_transition\":0,\"album_extended_back_font_color\":\"000000\",\"album_extended_back_font_style\":\"segoe ui\",\"album_extended_back_font_size\":16,\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_div_bg_color\":\"FFFFFF\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"0\",\"album_extended_div_margin\":\"0 0 5px 0\",\"album_extended_div_padding\":10,\"album_extended_div_separator_width\":1,\"album_extended_div_separator_style\":\"none\",\"album_extended_div_separator_color\":\"CCCCCC\",\"album_extended_thumb_div_bg_color\":\"FFFFFF\",\"album_extended_thumb_div_border_radius\":\"0\",\"album_extended_thumb_div_border_width\":0,\"album_extended_thumb_div_border_style\":\"none\",\"album_extended_thumb_div_border_color\":\"CCCCCC\",\"album_extended_thumb_div_padding\":\"0\",\"album_extended_text_div_bg_color\":\"FFFFFF\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_width\":1,\"album_extended_text_div_border_style\":\"none\",\"album_extended_text_div_border_color\":\"CCCCCC\",\"album_extended_text_div_padding\":\"5px\",\"album_extended_title_span_border_width\":1,\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_style\":\"segoe ui\",\"album_extended_title_font_size\":16,\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":2,\"album_extended_title_padding\":\"2px\",\"album_extended_desc_span_border_width\":1,\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_font_color\":\"000000\",\"album_extended_desc_font_style\":\"segoe ui\",\"album_extended_desc_font_size\":14,\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_padding\":\"2px\",\"album_extended_desc_more_color\":\"FFC933\",\"album_extended_desc_more_size\":12,\"masonry_thumb_padding\":4,\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":1,\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":0,\"masonry_thumb_transparent\":80,\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"rotate\",\"masonry_thumb_hover_effect_value\":\"2deg\",\"masonry_thumb_transition\":0,\"slideshow_cont_bg_color\":\"000000\",\"slideshow_close_btn_transparent\":100,\"slideshow_rl_btn_bg_color\":\"000000\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_box_shadow\":\"\",\"slideshow_rl_btn_color\":\"FFFFFF\",\"slideshow_rl_btn_height\":40,\"slideshow_rl_btn_size\":20,\"slideshow_rl_btn_width\":40,\"slideshow_close_rl_btn_hover_color\":\"DBDBDB\",\"slideshow_filmstrip_pos\":\"bottom\",\"slideshow_filmstrip_thumb_border_width\":1,\"slideshow_filmstrip_thumb_border_style\":\"none\",\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_margin\":\"0 1px\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_deactive_transparent\":80,\"slideshow_filmstrip_rl_bg_color\":\"303030\",\"slideshow_filmstrip_rl_btn_color\":\"FFFFFF\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_title_font_size\":16,\"slideshow_title_font\":\"segoe ui\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_opacity\":70,\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_background_color\":\"000000\",\"slideshow_title_padding\":\"5px 10px 5px 10px\",\"slideshow_description_font_size\":14,\"slideshow_description_font\":\"segoe ui\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_opacity\":70,\"slideshow_description_border_radius\":\"0\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_width\":10,\"slideshow_dots_height\":10,\"slideshow_dots_border_radius\":\"10px\",\"slideshow_dots_background_color\":\"292929\",\"slideshow_dots_margin\":1,\"slideshow_dots_active_background_color\":\"292929\",\"slideshow_dots_active_border_width\":2,\"slideshow_dots_active_border_color\":\"FFC933\",\"slideshow_play_pause_btn_size\":60,\"slideshow_rl_btn_style\":\"fa-chevron\",\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"4px\",\"blog_style_border_radius\":\"0\",\"blog_style_border_width\":1,\"blog_style_border_style\":\"none\",\"blog_style_border_color\":\"CCCCCC\",\"blog_style_bg_color\":\"E8E8E8\",\"blog_style_transparent\":70,\"blog_style_box_shadow\":\"\",\"blog_style_align\":\"center\",\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_img_font_size\":16,\"blog_style_img_font_family\":\"segoe ui\",\"blog_style_img_font_color\":\"000000\",\"blog_style_share_buttons_color\":\"A1A1A1\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_font_size\":20,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_border_radius\":\"2px\",\"image_browser_border_width\":1,\"image_browser_border_style\":\"none\",\"image_browser_border_color\":\"E8E8E8\",\"image_browser_bg_color\":\"E8E8E8\",\"image_browser_box_shadow\":\"\",\"image_browser_transparent\":80,\"image_browser_align\":\"center\",\"image_browser_image_description_margin\":\"24px 0px 0px 0px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_bg_color\":\"E8E8E8\",\"image_browser_image_description_align\":\"center\",\"image_browser_img_font_size\":14,\"image_browser_img_font_family\":\"segoe ui\",\"image_browser_img_font_color\":\"000000\",\"image_browser_full_padding\":\"4px\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_width\":1,\"image_browser_full_border_style\":\"solid\",\"image_browser_full_border_color\":\"EDEDED\",\"image_browser_full_bg_color\":\"FFFFFF\",\"image_browser_full_transparent\":90,\"image_browser_image_title_align\":\"top\",\"lightbox_info_pos\":\"top\",\"lightbox_info_align\":\"right\",\"lightbox_info_bg_color\":\"000000\",\"lightbox_info_bg_transparent\":70,\"lightbox_info_border_width\":1,\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"5px\",\"lightbox_info_padding\":\"5px\",\"lightbox_info_margin\":\"15px\",\"lightbox_title_color\":\"FFFFFF\",\"lightbox_title_font_style\":\"segoe ui\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_title_font_size\":18,\"lightbox_description_color\":\"FFFFFF\",\"lightbox_description_font_style\":\"segoe ui\",\"lightbox_description_font_weight\":\"normal\",\"lightbox_description_font_size\":14,\"lightbox_rate_pos\":\"bottom\",\"lightbox_rate_align\":\"right\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_size\":20,\"lightbox_rate_stars_count\":5,\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":70,\"lightbox_hit_border_width\":1,\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_style\":\"segoe ui\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_font_size\":14,\"masonry_description_font_size\":12,\"masonry_description_color\":\"CCCCCC\",\"masonry_description_font_style\":\"segoe ui\",\"album_masonry_back_font_color\":\"000000\",\"album_masonry_back_font_style\":\"segoe ui\",\"album_masonry_back_font_size\":14,\"album_masonry_back_font_weight\":\"normal\",\"album_masonry_back_padding\":\"0\",\"album_masonry_title_font_color\":\"CCCCCC\",\"album_masonry_title_font_style\":\"segoe ui\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"5px\",\"album_masonry_title_shadow\":\"\",\"album_masonry_thumb_margin\":4,\"album_masonry_thumb_padding\":4,\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_width\":1,\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_color\":\"000000\",\"album_masonry_thumb_bg_color\":\"E8E8E8\",\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_thumb_bg_transparent\":100,\"album_masonry_thumb_box_shadow\":\"\",\"album_masonry_thumb_transparent\":100,\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_hover_effect\":\"rotate\",\"album_masonry_thumb_hover_effect_value\":\"2deg\",\"album_masonry_thumb_transition\":1,\"mosaic_thumb_padding\":4,\"mosaic_thumb_border_radius\":\"2px\",\"mosaic_thumb_border_width\":1,\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"mosaic_thumb_bg_transparent\":0,\"mosaic_thumb_transparent\":80,\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_hover_effect\":\"rotate\",\"mosaic_thumb_hover_effect_value\":\"2deg\",\"mosaic_thumb_title_font_color\":\"CCCCCC\",\"mosaic_thumb_title_font_style\":\"segoe ui\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"0px 0px 0px #888888\",\"mosaic_thumb_title_font_size\":16,\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_close_btn_transparent\":100,\"carousel_rl_btn_bg_color\":\"000000\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_color\":\"FFFFFF\",\"carousel_rl_btn_height\":40,\"carousel_rl_btn_size\":20,\"carousel_play_pause_btn_size\":20,\"carousel_rl_btn_width\":40,\"carousel_close_rl_btn_hover_color\":\"CCCCCC\",\"carousel_rl_btn_style\":\"fa-chevron\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_font_family\":\"segoe ui\",\"carousel_feature_border_width\":2,\"carousel_feature_border_style\":\"solid\",\"carousel_feature_border_color\":\"5D204F\",\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_color\":\"white\",\"carousel_title_opacity\":100,\"carousel_title_border_radius\":\"5px\",\"mosaic_thumb_transition\":1}',0);
/*!40000 ALTER TABLE `wp_bwg_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `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=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_csr_votes`
--

DROP TABLE IF EXISTS `wp_csr_votes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_csr_votes` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) NOT NULL,
  `reviewer_id` bigint(20) NOT NULL,
  `overall_rating` decimal(2,1) NOT NULL,
  `number_of_votes` bigint(20) NOT NULL,
  `sum_votes` decimal(11,1) NOT NULL,
  `review_type` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `post_id` (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_csr_votes`
--

LOCK TABLES `wp_csr_votes` WRITE;
/*!40000 ALTER TABLE `wp_csr_votes` DISABLE KEYS */;
INSERT INTO `wp_csr_votes` VALUES (1,921,1,5.0,0,0.0,'Other'),(2,922,1,5.0,0,0.0,'Other'),(3,923,1,5.0,0,0.0,'Other'),(4,924,1,5.0,0,0.0,'Other'),(5,925,1,5.0,0,0.0,'Other'),(6,926,1,5.0,0,0.0,'Other'),(7,927,1,5.0,0,0.0,'Other'),(8,928,1,5.0,0,0.0,'Other'),(9,929,1,5.0,0,0.0,'Other'),(10,1030,1,5.0,0,0.0,'Other'),(11,1032,1,5.0,0,0.0,'Other'),(12,1033,1,5.0,0,0.0,'Other'),(13,1034,1,5.0,0,0.0,'Other'),(14,1035,1,5.0,0,0.0,'Other'),(15,1036,1,5.0,0,0.0,'Other'),(16,1037,1,5.0,0,0.0,'Other'),(17,1038,1,5.0,0,0.0,'Other'),(18,1039,1,5.0,0,0.0,'Other'),(19,1040,1,5.0,0,0.0,'Other'),(20,1041,1,5.0,0,0.0,'Other'),(21,1029,1,5.0,0,0.0,'Other'),(22,1043,1,5.0,0,0.0,'Other'),(23,1044,1,5.0,0,0.0,'Other');
/*!40000 ALTER TABLE `wp_csr_votes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
INSERT INTO `wp_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/news/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/news/feed/'),(3,'http://wordpress.org/support/','Support Forums','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/support/forum/requests-and-feedback','Feedback','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,0,'0000-00-00 00:00:00','','','');
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=566680 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://chicagolandremodeling.com','yes'),(2,'blogname','','yes'),(3,'blogdescription','','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','marketing@infosystrade.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(339,'db_upgraded','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(29,'comment_moderation','0','yes'),(30,'moderation_notify','1','yes'),(31,'permalink_structure','/%postname%/','yes'),(33,'hack_file','0','yes'),(34,'blog_charset','UTF-8','yes'),(35,'moderation_keys','','no'),(36,'active_plugins','a:26:{i:0;s:31:\"301-redirects/301-redirects.php\";i:1;s:43:\"better-font-awesome/better-font-awesome.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:35:\"cosmick-star-rating/star-rating.php\";i:5;s:37:\"disable-comments/disable-comments.php\";i:6;s:32:\"duplicate-page/duplicatepage.php\";i:7;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:8;s:31:\"exclude-pages/exclude_pages.php\";i:9;s:24:\"header-footer/plugin.php\";i:10;s:38:\"meteor-slides/meteor-slides-plugin.php\";i:11;s:31:\"page-links-to/page-links-to.php\";i:12;s:31:\"photo-gallery/photo-gallery.php\";i:13;s:45:\"post-template-select/post-template-select.php\";i:14;s:27:\"redirection/redirection.php\";i:15;s:23:\"revslider/revslider.php\";i:16;s:49:\"secondary-html-content/secondary-html-content.php\";i:17;s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";i:18;s:25:\"simple-css/simple-css.php\";i:19;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:20;s:39:\"underconstruction/underConstruction.php\";i:21;s:24:\"wordpress-seo/wp-seo.php\";i:22;s:29:\"wp-force-ssl/wp-force-ssl.php\";i:23;s:23:\"wp-smushit/wp-smush.php\";i:24;s:27:\"wp-super-cache/wp-cache.php\";i:26;s:40:\"wpmudev-updates/update-notifications.php\";}','yes'),(37,'home','https://chicagolandremodeling.com','yes'),(38,'category_base','','yes'),(39,'ping_sites','http://rpc.pingomatic.com/','yes'),(41,'comment_max_links','2','yes'),(42,'gmt_offset','0','yes'),(43,'default_email_category','1','yes'),(44,'recently_edited','a:5:{i:0;s:83:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/themes/chimod/page_home.php\";i:2;s:79:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/themes/chimod/index.php\";i:3;s:78:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/themes/chimod/page.php\";i:4;s:79:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/themes/chimod/style.css\";i:5;s:80:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/themes/chimod/footer.php\";}','no'),(45,'template','chimod','yes'),(46,'stylesheet','chimod','yes'),(553766,'finished_updating_comment_type','1','yes'),(49,'comment_registration','0','yes'),(50,'html_type','text/html','yes'),(51,'use_trackback','0','yes'),(52,'default_role','subscriber','yes'),(53,'db_version','49752','yes'),(54,'uploads_use_yearmonth_folders','1','yes'),(55,'upload_path','','yes'),(56,'blog_public','1','yes'),(57,'default_link_category','2','yes'),(58,'show_on_front','page','yes'),(59,'tag_base','','yes'),(60,'show_avatars','1','yes'),(61,'avatar_rating','G','yes'),(62,'upload_url_path','','yes'),(63,'thumbnail_size_w','150','yes'),(64,'thumbnail_size_h','150','yes'),(65,'thumbnail_crop','1','yes'),(66,'medium_size_w','300','yes'),(67,'medium_size_h','300','yes'),(68,'avatar_default','mystery','yes'),(71,'large_size_w','1024','yes'),(72,'large_size_h','1024','yes'),(73,'image_default_link_type','file','yes'),(74,'image_default_size','','yes'),(75,'image_default_align','','yes'),(76,'close_comments_for_old_posts','0','yes'),(77,'close_comments_days_old','14','yes'),(78,'thread_comments','1','yes'),(79,'thread_comments_depth','5','yes'),(80,'page_comments','0','yes'),(81,'comments_per_page','50','yes'),(82,'default_comments_page','newest','yes'),(83,'comment_order','asc','yes'),(84,'sticky_posts','a:0:{}','yes'),(85,'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'),(86,'widget_text','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:78:\"<b>Elmwood Park Office:</b><br />\r\n2130 N. Harlem Ave., Elmwood Park, IL 60707\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:161:\"<b><span style=\"font-size:13px;\">Phone: <a href=\"tel:(708) 583-9904\" onclick=\"ga(\'send\', \'event\', \'Mobile Call\', \'Click\');\">(708) 583-9904</a></span></b><br />\r\n\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(87,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(88,'uninstall_plugins','a:9:{s:49:\"secondary-html-content/secondary-html-content.php\";s:32:\"secondary_html_content_uninstall\";s:39:\"underconstruction/underConstruction.php\";s:30:\"underConstructionPlugin_delete\";s:23:\"wr-contactform/main.php\";a:2:{i:0;s:24:\"WR_Contactform_Installer\";i:1;s:23:\"on_uninstaller_function\";}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:17:\"swpsmtp_uninstall\";s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:40:\"wpmudev-updates/update-notifications.php\";a:2:{i:0;s:17:\"WPMUDEV_Dashboard\";i:1;s:16:\"uninstall_plugin\";}s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:29:\"wp-force-ssl/wp-force-ssl.php\";a:2:{i:0;s:10:\"wpForceSSL\";i:1;s:9:\"uninstall\";}}','no'),(89,'timezone_string','','yes'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','7','yes'),(94,'page_on_front','8','yes'),(95,'default_post_format','0','yes'),(96,'initial_db_version','21707','yes'),(97,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:66:{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:15:\"wpseo_bulk_edit\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(98,'_transient_random_seed','6fdfd7aeceab46037989bb29b55fb2e3','yes'),(99,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'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'),(101,'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'),(102,'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'),(103,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:5:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:1:{i:0;s:6:\"text-2\";}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:1:{i:0;s:6:\"text-3\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:17:{i:1612517295;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1612517846;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1612517958;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1612521446;a:1:{s:20:\"wordfence_daily_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:1612526626;a:1:{s:22:\"redirection_log_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:1612535675;a:3:{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;}}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;}}}i:1612535681;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:1612538358;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612538614;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612541993;a:1:{s:14:\"yoast_tracking\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612556031;a:1:{s:22:\"wpmudev_scheduled_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1612562236;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:1612597185;a:2:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wpseo_home_url_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612597189;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612597973;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1612960345;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(318447,'hefo','a:70:{s:4:\"head\";s:1081:\"<script type=\"text/javascript\">\r\n(function(a,e,c,f,g,h,b,d){var k={ak:\"865617168\",cl:\"VatsCMWV7G0QkIrhnAM\",autoreplace:\"(708) 583-9904\"};a[c]=a[c]||function(){(a[c].q=a[c].q||[]).push(arguments)};a[g]||(a[g]=k.ak);b=e.createElement(h);b.async=1;b.src=\"//www.gstatic.com/wcm/loader.js\";d=e.getElementsByTagName(h)[0];d.parentNode.insertBefore(b,d);a[f]=function(b,d,e){a[c](2,b,k,d,null,new Date,e)};a[f]()})(window,document,\"_googWcmImpl\",\"_googWcmGet\",\"_googWcmAk\",\"script\");\r\n</script>\r\n\r\n<script>\r\n  (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\r\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\r\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n  })(window,document,\'script\',\'https://www.google-analytics.com/analytics.js\',\'ga\');\r\n\r\n  ga(\'create\', \'UA-89242819-1\', \'auto\');\r\n  ga(\'send\', \'pageview\');\r\n\r\n</script>\r\n<script>\r\ndocument.addEventListener( \'wpcf7mailsent\', function( event ) {\r\n   location = \'https://chicagolandremodeling.com/thankyou/\';\r\n}, false );\r\n</script>\r\n\r\n\r\n\";s:9:\"head_home\";s:0:\"\";s:4:\"body\";s:0:\"\";s:11:\"mobile_body\";s:0:\"\";s:6:\"footer\";s:2732:\"<script>\r\njQuery(\'a[href*=\"tel:\"]\').each(function() {\r\n  jQuery(this).attr(\'onClick\', \"ga(\'send\', \'event\', \'Mobile Call\', \'Click\');\");\r\n});\r\n</script>\r\n<script>\r\njQuery(\'.phoneContent a\').each(function() {\r\njQuery(this).attr(\'onClick\', \"ga(\'send\', \'event\', \'Sluchawka Call\', \'Click\');\");\r\n});\r\n</script>\r\n<script type=\'application/ld+json\'> \r\n{\r\n  \"@context\": \"http://www.schema.org\",\r\n  \"@type\": \"HomeAndConstructionBusiness\",\r\n  \"name\": \"Chicagoland Remodeling - Home Remodeling Contractors Chicago\",\r\n  \"url\": \"https://chicagolandremodeling.com/\",\r\n   \"sameAs\": \"https://plus.google.com/118032008102157371206\",\r\n  \"logo\": \"https://chicagolandremodeling.com/wp-content/themes/chimod/images/chicagoland_remodeling_logo.jpg\",\r\n  \"image\": \"https://chicagolandremodeling.com/wp-content/themes/chimod/images/chicagoland_remodeling_logo.jpg\",\r\n  \"description\": \"Chicagoland Remodeling - Home Remodeling Contractors Chicago - Bathroom, Kitchen Remodeling Chicago\",\r\n  \"address\": {\r\n    \"@type\": \"PostalAddress\",\r\n    \"streetAddress\": \"2130 North Harlem Avenue\",\r\n    \"addressLocality\": \"Elmwood Park\",\r\n    \"addressRegion\": \"IL\",\r\n    \"postalCode\": \"60707\",\r\n    \"addressCountry\": \"United States\"\r\n  },\r\n  \"geo\": {\r\n    \"@type\": \"GeoCoordinates\",\r\n    \"latitude\": \"41.919133\",\r\n    \"longitude\": \"-87.806336\"\r\n  },\r\n  \"hasMap\": \"https://www.google.pl/maps/place/Chicagoland+Remodeling+%7C+Home,+Kitchen+%26+Bathroom+Remodeling+Contractors+Elmwood+Park/@41.9191416,-87.80852,17z/data=!4m13!1m7!3m6!1s0x880fcb1805610b67:0x8b989d35cf48ab59!2s2130+N+Harlem+Ave,+Elmwood+Park,+IL+60707,+Stany+Zjednoczone!3b1!8m2!3d41.9191376!4d-87.8063313!3m4!1s0x880fcb1805610b67:0x96ea8c6cd66dd326!8m2!3d41.9191304!4d-87.8063203\",\r\n  \"openingHours\": \"Mo, Tu, We, Th, Fr 09:00-20:00 Sa 09:00-17:00\",\r\n  \"contactPoint\": {\r\n    \"@type\": \"ContactPoint\",\r\n    \"telephone\": \"+1(708)583-9904\",\r\n    \"contactType\": \"sales contact point\"\r\n  }\r\n}\r\n </script>\r\n\r\n<style>\r\n  #services-info:after {\r\n    content: \" \";\r\n    clear: both;\r\n  }\r\n  \r\n  #services-info .services-count {\r\n    font-size: 40px !important;\r\n    font-weight: bold;\r\n    color: #5987c6 !important;\r\n    line-height: 1 !important;\r\n  }\r\n\r\n  @media (max-width: 768px) {\r\n    #services-info h3,\r\n    #services-info .services-count {\r\n      text-align: center;\r\n    }\r\n\r\n    #services-info .service-description {\r\n      text-align: justify;\r\n    }\r\n  }\r\n  \r\n  #under_slider {\r\n    margin-top: 0;\r\n  }\r\n\r\n  @media (max-width: 767px) {\r\n    #under_slider {\r\n      margin-top: 200px;\r\n    }\r\n  }\r\n</style>\r\n<script>\r\njQuery( document ).ready(function() {\r\njQuery( \"#toggle\" ).click(function() {\r\n  jQuery( \".go-down\" ).toggle( \"slow\", function() {\r\n    // Animation complete.\r\n  });\r\n  });\r\n});\r\n</script>\";s:13:\"mobile_footer\";s:0:\"\";s:13:\"generic_tag_1\";s:0:\"\";s:9:\"generic_1\";s:0:\"\";s:16:\"mobile_generic_1\";s:0:\"\";s:13:\"generic_tag_2\";s:0:\"\";s:9:\"generic_2\";s:0:\"\";s:16:\"mobile_generic_2\";s:0:\"\";s:13:\"generic_tag_3\";s:0:\"\";s:9:\"generic_3\";s:0:\"\";s:16:\"mobile_generic_3\";s:0:\"\";s:13:\"generic_tag_4\";s:0:\"\";s:9:\"generic_4\";s:0:\"\";s:16:\"mobile_generic_4\";s:0:\"\";s:13:\"generic_tag_5\";s:0:\"\";s:9:\"generic_5\";s:0:\"\";s:16:\"mobile_generic_5\";s:0:\"\";s:6:\"before\";s:0:\"\";s:13:\"mobile_before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:12:\"mobile_after\";s:0:\"\";s:14:\"excerpt_before\";s:0:\"\";s:13:\"excerpt_after\";s:0:\"\";s:11:\"inner_pos_1\";s:5:\"after\";s:11:\"inner_tag_1\";s:0:\"\";s:12:\"inner_skip_1\";s:1:\"0\";s:11:\"inner_alt_1\";s:0:\"\";s:7:\"inner_1\";s:0:\"\";s:14:\"mobile_inner_1\";s:0:\"\";s:11:\"inner_pos_2\";s:5:\"after\";s:11:\"inner_tag_2\";s:0:\"\";s:12:\"inner_skip_2\";s:1:\"0\";s:11:\"inner_alt_2\";s:0:\"\";s:7:\"inner_2\";s:0:\"\";s:14:\"mobile_inner_2\";s:0:\"\";s:11:\"inner_pos_3\";s:5:\"after\";s:11:\"inner_tag_3\";s:0:\"\";s:12:\"inner_skip_3\";s:1:\"0\";s:11:\"inner_alt_3\";s:0:\"\";s:7:\"inner_3\";s:0:\"\";s:14:\"mobile_inner_3\";s:0:\"\";s:11:\"inner_pos_4\";s:5:\"after\";s:11:\"inner_tag_4\";s:0:\"\";s:12:\"inner_skip_4\";s:1:\"0\";s:11:\"inner_alt_4\";s:0:\"\";s:7:\"inner_4\";s:0:\"\";s:14:\"mobile_inner_4\";s:0:\"\";s:11:\"inner_pos_5\";s:5:\"after\";s:11:\"inner_tag_5\";s:0:\"\";s:12:\"inner_skip_5\";s:1:\"0\";s:11:\"inner_alt_5\";s:0:\"\";s:7:\"inner_5\";s:0:\"\";s:14:\"mobile_inner_5\";s:0:\"\";s:11:\"page_before\";s:0:\"\";s:18:\"mobile_page_before\";s:0:\"\";s:10:\"page_after\";s:0:\"\";s:17:\"mobile_page_after\";s:0:\"\";s:8:\"amp_head\";s:0:\"\";s:7:\"amp_css\";s:0:\"\";s:15:\"amp_post_before\";s:0:\"\";s:14:\"amp_post_after\";s:0:\"\";s:10:\"amp_footer\";s:0:\"\";s:9:\"snippet_6\";s:0:\"\";s:18:\"mobile_user_agents\";s:42:\"phone\r\niphone\r\nipod\r\nandroid.+mobile\r\nxoom\";s:5:\"notes\";s:0:\"\";s:25:\"mobile_user_agents_parsed\";s:38:\"phone|iphone|ipod|android.+mobile|xoom\";}','yes'),(318847,'wordfence_lastSyncAttackData','1570981001','no'),(338,'link_manager_enabled','1','yes'),(114,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:32:\"http://chicagolandremodeling.com\";s:4:\"link\";s:108:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://chicagolandremodeling.com/\";s:3:\"url\";s:148:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://www.chicagoremod.derekkramer.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(1411,'wpseo','a:42:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";s:1:\"2\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:0:\"\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:6:\"15.6.2\";s:16:\"previous_version\";s:4:\"15.5\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";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:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1482935899;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:33:\"https://chicagolandremodeling.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:3:{s:9:\"slideshow\";s:9:\"slideshow\";s:23:\"secondary_html_features\";s:23:\"secondary_html_features\";s:7:\"bwg_tag\";s:7:\"bwg_tag\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";}','yes'),(1412,'wpseo_titles','a:120:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:1;s:9:\"separator\";s:7:\"sc-dash\";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:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:1;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:23:\"is-media-purge-relevant\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;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:28:\"display-metabox-tax-post_tag\";b:1;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:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:0;s:13:\"title-reviews\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-reviews\";s:0:\"\";s:15:\"noindex-reviews\";b:1;s:16:\"showdate-reviews\";b:0;s:26:\"display-metabox-pt-reviews\";b:1;s:26:\"post_types-reviews-maintax\";i:0;s:23:\"title-ptarchive-reviews\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-reviews\";s:0:\"\";s:25:\"bctitle-ptarchive-reviews\";s:0:\"\";s:25:\"noindex-ptarchive-reviews\";b:0;s:11:\"title-slide\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"metadesc-slide\";s:0:\"\";s:13:\"noindex-slide\";b:0;s:14:\"showdate-slide\";b:0;s:24:\"display-metabox-pt-slide\";b:1;s:24:\"post_types-slide-maintax\";i:0;s:17:\"title-bwg_gallery\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-bwg_gallery\";s:0:\"\";s:19:\"noindex-bwg_gallery\";b:0;s:20:\"showdate-bwg_gallery\";b:0;s:30:\"display-metabox-pt-bwg_gallery\";b:1;s:30:\"post_types-bwg_gallery-maintax\";i:0;s:15:\"title-bwg_album\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-bwg_album\";s:0:\"\";s:17:\"noindex-bwg_album\";b:0;s:18:\"showdate-bwg_album\";b:0;s:28:\"display-metabox-pt-bwg_album\";b:1;s:28:\"post_types-bwg_album-maintax\";i:0;s:13:\"title-bwg_tag\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-bwg_tag\";s:0:\"\";s:15:\"noindex-bwg_tag\";b:0;s:16:\"showdate-bwg_tag\";b:0;s:26:\"display-metabox-pt-bwg_tag\";b:1;s:26:\"post_types-bwg_tag-maintax\";i:0;s:21:\"title-wr_cf_post_type\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-wr_cf_post_type\";s:0:\"\";s:23:\"noindex-wr_cf_post_type\";b:0;s:24:\"showdate-wr_cf_post_type\";b:0;s:34:\"display-metabox-pt-wr_cf_post_type\";b:1;s:34:\"post_types-wr_cf_post_type-maintax\";i:0;s:31:\"title-ptarchive-wr_cf_post_type\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:34:\"metadesc-ptarchive-wr_cf_post_type\";s:0:\"\";s:33:\"bctitle-ptarchive-wr_cf_post_type\";s:0:\"\";s:33:\"noindex-ptarchive-wr_cf_post_type\";b:0;s:19:\"title-tax-slideshow\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-tax-slideshow\";s:0:\"\";s:21:\"noindex-tax-slideshow\";b:0;s:27:\"taxonomy-slideshow-ptparent\";i:0;s:17:\"title-tax-bwg_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-tax-bwg_tag\";s:0:\"\";s:19:\"noindex-tax-bwg_tag\";b:0;s:25:\"taxonomy-bwg_tag-ptparent\";i:0;}','yes'),(150,'recently_activated','a:1:{s:21:\"wp-sweep/wp-sweep.php\";i:1612465064;}','yes'),(151,'txfx_plt_schema_version','3','yes'),(566457,'category_children','a:0:{}','yes'),(173,'theme_mods_chimod','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:0;s:9:\"secondary\";i:3;s:8:\"tertiary\";i:0;}s:18:\"custom_css_post_id\";i:942;}','yes'),(174,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(162,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1354116548;s:4:\"data\";a:6:{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:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(163,'current_theme','Chicago Remodeling','yes'),(164,'theme_mods_twentyten','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1354143783;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";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:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";N;}}}','yes'),(165,'theme_switched','','yes'),(178,'secondary_html_content_version','3','yes'),(207,'_transient_secondary_html_block_id_content-area-two','68','yes'),(250,'meteorslides_options','a:7:{s:18:\"slideshow_quantity\";s:1:\"5\";s:12:\"slide_height\";s:3:\"750\";s:11:\"slide_width\";s:4:\"1920\";s:16:\"transition_style\";s:4:\"fade\";s:16:\"transition_speed\";s:1:\"1\";s:14:\"slide_duration\";s:1:\"5\";s:20:\"slideshow_navigation\";s:7:\"navboth\";}','yes'),(353,'_transient_secondary_html_block_id_content-area-two-posts','188','yes'),(249,'_transient_plugins_delete_result_1','1','yes'),(1105,'tadv_version','5600','yes'),(1398,'underConstructionRequiredRole','0','yes'),(1396,'underConstructionDisplayOption','0','yes'),(1397,'underConstructionActivationStatus','0','yes'),(1395,'underConstructionHTTPStatus','503','yes'),(1414,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:0;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(324637,'_transient_wpseo_sitemap_cache_slide_1','<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>https://chicagolandremodeling.com/?slide=81</loc>\n		<lastmod>2013-03-15T11:50:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg</image:loc>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://chicagolandremodeling.com/?slide=83</loc>\n		<lastmod>2013-03-15T11:50:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg</image:loc>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://chicagolandremodeling.com/?slide=85</loc>\n		<lastmod>2013-03-15T11:50:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg</image:loc>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://chicagolandremodeling.com/?slide=86</loc>\n		<lastmod>2013-03-15T11:50:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg</image:loc>\n		</image:image>\n	</url>\n	<url>\n		<loc>https://chicagolandremodeling.com/?slide=87</loc>\n		<lastmod>2013-03-15T11:50:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg</image:loc>\n		</image:image>\n	</url>\n</urlset>','no'),(1814,'wordfence_version','7.4.8','yes'),(1815,'wordfenceActivated','1','yes'),(1816,'wf_plugin_act_error','','yes'),(89201,'underconstruction_global_notification','0','yes'),(65499,'WPLANG','','yes'),(87372,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:26:\"marketing@infosystrade.com\";s:7:\"version\";s:5:\"5.6.1\";s:9:\"timestamp\";i:1612406184;}','no'),(64139,'_transient_wflginfl_1588836514','1','no'),(318845,'wordfence_syncAttackDataAttempts','0','no'),(318846,'wordfence_syncingAttackData','0','no'),(317782,'tadv_settings','a:9:{s:9:\"toolbar_1\";s:117:\"bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,table,fullscreen,undo,redo,wp_adv\";s:9:\"toolbar_2\";s:121:\"formatselect,alignjustify,strikethrough,outdent,indent,pastetext,removeformat,charmap,wp_more,emoticons,forecolor,wp_help\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:7:\"options\";s:44:\"advlist,menubar,menubar_block,merge_toolbars\";s:7:\"plugins\";s:107:\"anchor,code,insertdatetime,nonbreaking,print,searchreplace,table,visualblocks,visualchars,emoticons,advlist\";s:13:\"toolbar_block\";s:21:\"core/image,core/image\";s:18:\"toolbar_block_side\";s:88:\"core/superscript,core/subscript,core/strikethrough,core/code,tadv/mark,tadv/removeformat\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";}','yes'),(317783,'tadv_admin_settings','a:2:{s:7:\"options\";s:107:\"no_autop,hybrid_mode,classic_paragraph_block,table_resize_bars,table_grid,table_tab_navigation,table_advtab\";s:16:\"disabled_plugins\";s:0:\"\";}','yes'),(318694,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318695,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318696,'widget_links','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318697,'widget_meteor-slides-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318698,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318699,'widget_secondary-html-content','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(318700,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(324740,'wr_contactform_load_bootstrap_js','1','no'),(324741,'wr_contactform_load_bootstrap_css','1','no'),(324742,'wr_contactform_default_mail_from','publishing@infosystrade.com','no'),(319231,'wp_smtp_options','a:9:{s:4:\"from\";s:25:\"chicagolandremodeling.com\";s:8:\"fromname\";s:21:\"chicagolandremodeling\";s:4:\"host\";s:23:\"server.infosystrade.com\";s:10:\"smtpsecure\";s:0:\"\";s:4:\"port\";s:2:\"26\";s:8:\"smtpauth\";s:3:\"yes\";s:8:\"username\";s:27:\"publishing@infosystrade.com\";s:8:\"password\";s:10:\"Nopass123!\";s:10:\"deactivate\";s:0:\"\";}','yes'),(319235,'wpcf7','a:4:{s:7:\"version\";s:5:\"5.3.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1526408674;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:5;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6LeKz6IZAAAAAKhc6cotyqIx3cYl-VcvwCIuXXaA\";s:40:\"6LeKz6IZAAAAADu1Dbq7E9W1Cb4eehUAnkrbT3pZ\";}s:23:\"recaptcha_v2_v3_warning\";b:0;}','yes'),(324727,'swpsmtp_options','a:8:{s:16:\"from_email_field\";s:27:\"publishing@infosystrade.com\";s:15:\"from_name_field\";s:36:\"Chicagoland Remodeling Website Quote\";s:13:\"smtp_settings\";a:9:{s:4:\"host\";s:23:\"server.infosystrade.com\";s:15:\"type_encryption\";s:3:\"ssl\";s:4:\"port\";s:3:\"465\";s:13:\"autentication\";s:3:\"yes\";s:8:\"username\";s:27:\"publishing@infosystrade.com\";s:8:\"password\";s:16:\"Tm9wYXNzMTIzIQ==\";s:12:\"enable_debug\";b:0;s:12:\"insecure_ssl\";b:0;s:12:\"encrypt_pass\";b:0;}s:23:\"force_from_name_replace\";b:0;s:14:\"reply_to_email\";s:0:\"\";s:17:\"email_ignore_list\";s:0:\"\";s:19:\"enable_domain_check\";b:0;s:15:\"allowed_domains\";s:0:\"\";}','yes'),(319672,'wr_contactform_do_activation_redirect','No','yes'),(319688,'wr_contactform_style','','no'),(324743,'wr_contactform_global_captcha_setting','1','no'),(325739,'finished_splitting_shared_terms','1','yes'),(325740,'site_icon','934','yes'),(325741,'medium_large_size_w','768','yes'),(325742,'medium_large_size_h','0','yes'),(458261,'wp-smush-cdn_status','O:8:\"stdClass\":8:{s:5:\"limit\";i:32;s:11:\"cdn_enabled\";b:0;s:7:\"site_id\";s:7:\"1060789\";s:12:\"endpoint_url\";N;s:14:\"bandwidth_plan\";i:10;s:9:\"bandwidth\";N;s:4:\"hits\";N;s:12:\"cache_misses\";N;}','no'),(433205,'wdp_un_membership_data','a:5:{s:10:\"membership\";s:4:\"free\";s:8:\"services\";a:3:{s:6:\"uptime\";i:0;s:8:\"automate\";i:0;s:7:\"reports\";i:0;}s:19:\"membership_projects\";a:0:{}s:17:\"membership_access\";a:0:{}s:11:\"hub_site_id\";s:7:\"1060789\";}','no'),(433206,'wdp_un_last_run_sync','a:3:{s:4:\"time\";i:1612492571;s:4:\"hash\";s:32:\"25cf5add79208fa4abfbac8cdc6b796b\";s:5:\"fails\";i:0;}','no'),(333576,'nifty-bu-first-time','1','yes'),(327416,'wd_bwg_version','1.5.67','no'),(327417,'wd_bwg_theme_version','1.0.0','no'),(327418,'widget_bwp_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(327419,'widget_bwp_gallery_slideshow','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(327420,'bwg_admin_notice','a:3:{s:15:\"ecommerce_promo\";a:3:{s:5:\"start\";s:9:\"1/21/2017\";s:3:\"int\";i:3;s:9:\"dismissed\";i:1;}s:15:\"two_week_review\";a:3:{s:5:\"start\";s:8:\"6/5/2017\";s:3:\"int\";i:14;s:9:\"dismissed\";i:1;}s:16:\"one_week_support\";a:2:{s:5:\"start\";s:9:\"1/25/2017\";s:3:\"int\";i:7;}}','yes'),(433185,'wdp_un_limit_to_user','a:1:{i:0;s:1:\"1\";}','no'),(433186,'wdp_un_remote_access','','no'),(433187,'wdp_un_refresh_remote_flag','0','no'),(433188,'wdp_un_refresh_profile_flag','0','no'),(433189,'wdp_un_updates_data','a:5:{s:8:\"projects\";a:15:{i:119;a:26:{s:2:\"id\";i:119;s:4:\"paid\";s:4:\"free\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:18:\"WPMU DEV Dashboard\";s:8:\"released\";i:1261092923;s:7:\"updated\";i:1606911871;s:9:\"downloads\";s:8:\"10664315\";s:10:\"popularity\";s:6:\"396813\";s:17:\"short_description\";s:80:\"Instant access to brilliant support and one-click plugin and theme installation.\";s:8:\"features\";a:33:{i:0;s:23:\"One-click installations\";i:1;s:36:\"Hub and Hosting Single Sign-On (SSO)\";i:2;s:19:\"Unbranded analytics\";i:3;s:35:\"Dashboard plugin browse and install\";i:4;s:34:\"Dashboard theme browse and install\";i:5;s:21:\"Simply login to setup\";i:6;s:30:\"Integrated badge notifications\";i:7;s:17:\"One-click updates\";i:8;s:28:\"WPMU DEV dashboard news feed\";i:9;s:28:\"Dashboard widget quick links\";i:10;s:25:\"New release notifications\";i:11;s:20:\"Update notifications\";i:12;s:29:\"View recent WPMU DEV activity\";i:13;s:18:\"Membership manager\";i:14;s:34:\"Hide/Remove WPMU DEV hero branding\";i:15;s:18:\"Background updates\";i:16;s:18:\"Hide notifications\";i:17;s:30:\"Limit to Multisite Super Admin\";i:18;s:21:\"See reputation points\";i:19;s:27:\"Built-in conflict avoidance\";i:20;s:39:\"Occasional special membership discounts\";i:21;s:33:\"Participate in WPMU DEV community\";i:22;s:19:\"Access forum search\";i:23;s:22:\"Fast access to Q&amp;A\";i:24;s:39:\"Grant temporary access to support staff\";i:25;s:34:\"Direct links to usage instructions\";i:26;s:35:\"Installed theme version information\";i:27;s:36:\"Installed plugin version information\";i:28;s:22:\"Post support questions\";i:29;s:29:\"System information quick view\";i:30;s:29:\"PHP configuration information\";i:31;s:17:\"MySQL information\";i:32;s:18:\"Server information\";}s:7:\"version\";s:6:\"4.10.6\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:50:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:55:\"https://premium.wpmudev.org/project/wpmu-dev-dashboard/\";s:9:\"thumbnail\";s:76:\"https://premium.wpmudev.org/wp-content/uploads/2009/12/Dashboard-280x158.png\";s:16:\"thumbnail_square\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2009/12/Dashboard-90x90.png\";s:15:\"thumbnail_large\";s:68:\"https://premium.wpmudev.org/wp-content/uploads/2009/12/Dashboard.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/irz1r2ze9m\";s:13:\"wp_config_url\";s:31:\"admin.php?page=wpmudev-settings\";s:13:\"ms_config_url\";s:31:\"admin.php?page=wpmudev-settings\";s:7:\"package\";i:0;s:11:\"screenshots\";a:3:{i:0;a:2:{s:3:\"url\";s:93:\"https://premium.wpmudev.org/wp-content/uploads/projects/119/screenshots/dashboard-support.png\";s:4:\"desc\";s:21:\"Secure support access\";}i:1;a:2:{s:3:\"url\";s:92:\"https://premium.wpmudev.org/wp-content/uploads/projects/119/screenshots/dashboard-access.png\";s:4:\"desc\";s:41:\"Quick access from the WordPress dashboard\";}i:2;a:2:{s:3:\"url\";s:94:\"https://premium.wpmudev.org/wp-content/uploads/projects/119/screenshots/96343734_analitics.png\";s:4:\"desc\";s:19:\"Unbranded Analytics\";}}s:6:\"_order\";i:1;}i:3779636;a:26:{s:2:\"id\";i:3779636;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:14:\"The Hub Client\";s:8:\"released\";i:1597667386;s:7:\"updated\";i:1607610438;s:9:\"downloads\";s:4:\"8556\";s:10:\"popularity\";s:4:\"2708\";s:17:\"short_description\";s:102:\"White label WPMU DEV and give your clients their own Hub experience on your site, with your branding. \";s:8:\"features\";a:7:{i:0;s:30:\"Completely white label The Hub\";i:1;s:31:\"Run entirely on your own domain\";i:2;s:30:\"Control all user access levels\";i:3;s:34:\"Free with your WPMU DEV membership\";i:4;s:39:\"Easy to set up, just install the plugin\";i:5;s:20:\"Use any host (or us)\";i:6;s:51:\"Sell your clients different levels of subscriptions\";}s:7:\"version\";s:5:\"1.0.4\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:0:\"\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:51:\"https://premium.wpmudev.org/project/the-hub-client/\";s:9:\"thumbnail\";s:84:\"https://premium.wpmudev.org/wp-content/uploads/2020/08/gfx-project-thumb-280x158.png\";s:16:\"thumbnail_square\";s:82:\"https://premium.wpmudev.org/wp-content/uploads/2020/08/gfx-project-thumb-90x90.png\";s:15:\"thumbnail_large\";s:76:\"https://premium.wpmudev.org/wp-content/uploads/2020/08/gfx-project-thumb.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:26:\"admin.php?page=wpmudev-hub\";s:13:\"ms_config_url\";s:26:\"admin.php?page=wpmudev-hub\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:88:\"https://premium.wpmudev.org/wp-content/uploads/projects/3779636/screenshots/gfx-hero.png\";s:4:\"desc\";s:0:\"\";}i:1;a:2:{s:3:\"url\";s:90:\"https://premium.wpmudev.org/wp-content/uploads/projects/3779636/screenshots/gfx-styled.png\";s:4:\"desc\";s:0:\"\";}i:2;a:2:{s:3:\"url\";s:95:\"https://premium.wpmudev.org/wp-content/uploads/projects/3779636/screenshots/gfx-user-access.png\";s:4:\"desc\";s:0:\"\";}i:3;a:2:{s:3:\"url\";s:89:\"https://premium.wpmudev.org/wp-content/uploads/projects/3779636/screenshots/gfx-roles.png\";s:4:\"desc\";s:0:\"\";}}s:6:\"_order\";i:2;}i:912164;a:26:{s:2:\"id\";i:912164;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:9:\"Smush Pro\";s:8:\"released\";i:1416874433;s:7:\"updated\";i:1612299631;s:9:\"downloads\";s:7:\"2558657\";s:10:\"popularity\";s:6:\"353750\";s:17:\"short_description\";s:101:\"User\'s choice, award-winning, and benchmark tested – The best image optimizer plugin for WordPress.\";s:8:\"features\";a:28:{i:0;s:31:\"Double savings with Super-Smush\";i:1;s:28:\"Automatic optimize on upload\";i:2;s:20:\"Smush Pro global CDN\";i:3;s:31:\"Compress huge photos up to 32MB\";i:4;s:29:\"Perfect-fit auto image resize\";i:5;s:33:\"Lazy Loading for offscreen images\";i:6;s:29:\"WebP next-gen file conversion\";i:7;s:31:\"PNG to lossy JPEG smart convert\";i:8;s:34:\"One-click compress existing images\";i:9;s:35:\"Retain rights to every file forever\";i:10;s:29:\"Optimize images in any folder\";i:11;s:34:\"Smush or save original image files\";i:12;s:37:\"Multisite global and subsite settings\";i:13;s:42:\"Lossy compression with little quality loss\";i:14;s:28:\"Amazon S3 plugin integration\";i:15;s:26:\"NextGEN Gallery compatible\";i:16;s:18:\"Preserve EXIF data\";i:17;s:27:\"WP Retina 2x plugin support\";i:18;s:22:\"Envira Gallery Support\";i:19;s:28:\"Avada Fusion Builder Support\";i:20;s:26:\"Dedicated smushing servers\";i:21;s:35:\"HTTPS encrypted browsing compatible\";i:22;s:21:\"WPML media compatible\";i:23;s:20:\"Lossless compression\";i:24;s:39:\"Strip unused colors from indexed images\";i:25;s:30:\"Progress and savings reporting\";i:26;s:26:\"Compress individual images\";i:27;s:32:\"Instant asynchronous compression\";}s:7:\"version\";s:5:\"3.8.2\";s:17:\"free_version_slug\";s:23:\"wp-smushit/wp-smush.php\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:65:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:49:\"https://premium.wpmudev.org/project/wp-smush-pro/\";s:9:\"thumbnail\";s:80:\"https://premium.wpmudev.org/wp-content/uploads/2014/11/Smush_2016_02-280x158.png\";s:16:\"thumbnail_square\";s:78:\"https://premium.wpmudev.org/wp-content/uploads/2014/11/Smush_2016_02-90x90.png\";s:15:\"thumbnail_large\";s:72:\"https://premium.wpmudev.org/wp-content/uploads/2014/11/Smush_2016_02.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:20:\"admin.php?page=smush\";s:13:\"ms_config_url\";s:20:\"admin.php?page=smush\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:108:\"https://premium.wpmudev.org/wp-content/uploads/projects/912164/screenshots/1554180963_smush-pro-bulk-new.png\";s:4:\"desc\";s:14:\"Bulk Smush Now\";}i:1;a:2:{s:3:\"url\";s:109:\"https://premium.wpmudev.org/wp-content/uploads/projects/912164/screenshots/918101858_smush-pro-bulk-smush.png\";s:4:\"desc\";s:20:\"Smush Pro Bulk Smush\";}i:2;a:2:{s:3:\"url\";s:107:\"https://premium.wpmudev.org/wp-content/uploads/projects/912164/screenshots/158049080_smush-pro-settings.png\";s:4:\"desc\";s:18:\"Smush Pro Settings\";}i:3;a:2:{s:3:\"url\";s:107:\"https://premium.wpmudev.org/wp-content/uploads/projects/912164/screenshots/665647559_image-zoom-735x470.jpg\";s:4:\"desc\";s:29:\"Smush without loss of quality\";}}s:6:\"_order\";i:3;}i:1081721;a:26:{s:2:\"id\";i:1081721;s:4:\"paid\";s:4:\"full\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:15:\"Hummingbird Pro\";s:8:\"released\";i:1456236462;s:7:\"updated\";i:1610961065;s:9:\"downloads\";s:7:\"1512867\";s:10:\"popularity\";s:6:\"131704\";s:17:\"short_description\";s:56:\"Everything you need to get your site running super fast.\";s:8:\"features\";a:16:{i:0;s:28:\"Generate performance reports\";i:1;s:30:\"Recommended speed improvements\";i:2;s:15:\"Browser caching\";i:3;s:17:\"Full-page caching\";i:4;s:16:\"Gravatar caching\";i:5;s:11:\"RSS caching\";i:6;s:12:\"Minify files\";i:7;s:13:\"Combine files\";i:8;s:17:\"Set load position\";i:9;s:21:\"Included output graph\";i:10;s:25:\"Simple GZIP configuration\";i:11;s:30:\"Advanced Minification controls\";i:12;s:31:\"Bonus: Sync with Uptime monitor\";i:13;s:32:\"Down and slow load notifications\";i:14;s:23:\"Track average pagespeed\";i:15;s:32:\"Better search engine positioning\";}s:7:\"version\";s:5:\"2.7.1\";s:17:\"free_version_slug\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:47:\"WordPress 5.6.1, Multisite 5.6.1, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:51:\"https://premium.wpmudev.org/project/wp-hummingbird/\";s:9:\"thumbnail\";s:78:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/HummingBird-280x158.png\";s:16:\"thumbnail_square\";s:76:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/HummingBird-90x90.png\";s:15:\"thumbnail_large\";s:70:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/HummingBird.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/cdpqnbvssg\";s:13:\"wp_config_url\";s:19:\"admin.php?page=wphb\";s:13:\"ms_config_url\";s:19:\"admin.php?page=wphb\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:119:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081721/screenshots/1355502351_hum-gcompress-compressor-new.png\";s:4:\"desc\";s:5:\"G-zip\";}i:1;a:2:{s:3:\"url\";s:108:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081721/screenshots/1686427142_hum-browser-cache.png\";s:4:\"desc\";s:13:\"Browser Cache\";}i:2;a:2:{s:3:\"url\";s:105:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081721/screenshots/355595470_hum-pro-testing.png\";s:4:\"desc\";s:31:\"Hummingbird Performance Testing\";}i:3;a:2:{s:3:\"url\";s:108:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081721/screenshots/2090545727_hum-inline-minify.png\";s:4:\"desc\";s:13:\"inline minify\";}}s:6:\"_order\";i:4;}i:1081723;a:26:{s:2:\"id\";i:1081723;s:4:\"paid\";s:4:\"full\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:12:\"Defender Pro\";s:8:\"released\";i:1456855142;s:7:\"updated\";i:1611756213;s:9:\"downloads\";s:7:\"1392395\";s:10:\"popularity\";s:6:\"139838\";s:17:\"short_description\";s:104:\"Regular security scans, vulnerability reports, safety recommendations and security tweaks for WordPress.\";s:8:\"features\";a:20:{i:0;s:21:\"Analyze site security\";i:1;s:30:\"Security tweak recommendations\";i:2;s:27:\"Resolve issues with a click\";i:3;s:31:\"Manual and automatic IP lockout\";i:4;s:18:\"Filterable IP logs\";i:5;s:27:\"Scan core files for changes\";i:6;s:25:\"2-Factor Authentification\";i:7;s:24:\"Customize 2-factor email\";i:8;s:19:\"Vulnerability scans\";i:9;s:14:\"Schedule scans\";i:10;s:28:\"Repair/restore changed files\";i:11;s:25:\"Choose file types to scan\";i:12;s:29:\"Skip files based on file size\";i:13;s:21:\"Receive email reports\";i:14;s:21:\"Set report recipients\";i:15;s:27:\"Google blocklist monitoring\";i:16;s:17:\"Automated backups\";i:17;s:20:\"Full website backups\";i:18;s:13:\"Cloud backups\";i:19;s:30:\"Site interactions with logging\";}s:7:\"version\";s:5:\"2.4.6\";s:17:\"free_version_slug\";s:33:\"defender-security/wp-defender.php\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:65:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:48:\"https://premium.wpmudev.org/project/wp-defender/\";s:9:\"thumbnail\";s:75:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/Defender-280x158.png\";s:16:\"thumbnail_square\";s:73:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/Defender-90x90.png\";s:15:\"thumbnail_large\";s:67:\"https://premium.wpmudev.org/wp-content/uploads/2016/02/Defender.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/ps9y7nphu1\";s:13:\"wp_config_url\";s:26:\"admin.php?page=wp-defender\";s:13:\"ms_config_url\";s:26:\"admin.php?page=wp-defender\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:102:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081723/screenshots/675480798_6-ip-lockout.jpg\";s:4:\"desc\";s:10:\"ip-lockout\";}i:1;a:2:{s:3:\"url\";s:102:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081723/screenshots/1734340993_5-blacklist.jpg\";s:4:\"desc\";s:20:\"Blacklist Monitoring\";}i:2;a:2:{s:3:\"url\";s:103:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081723/screenshots/1971221549_4-audit-logs.jpg\";s:4:\"desc\";s:10:\"Audit Logs\";}i:3;a:2:{s:3:\"url\";s:97:\"https://premium.wpmudev.org/wp-content/uploads/projects/1081723/screenshots/1252355198_3-scan.jpg\";s:4:\"desc\";s:12:\"Scan Reports\";}}s:6:\"_order\";i:5;}i:1107020;a:26:{s:2:\"id\";i:1107020;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:10:\"Hustle Pro\";s:8:\"released\";i:1471315160;s:7:\"updated\";i:1611619168;s:9:\"downloads\";s:6:\"247281\";s:10:\"popularity\";s:5:\"23960\";s:17:\"short_description\";s:100:\"Grow your business and audience with this super easy, super slick email opt-in and marketing plugin.\";s:8:\"features\";a:12:{i:0;s:59:\"Pop-ups, slide-ins, widgets, embeds, and after post opt-ins\";i:1;s:35:\"All the social share icons you need\";i:2;s:46:\"Easily customize designs with in built editing\";i:3;s:34:\"Color match your brand, like magic\";i:4;s:64:\"Show your stuff in style with smooth built-in display animations\";i:5;s:223:\"Integrate with your favorite providers including: Aweber, MailChimp, Constant Contacts, Sendy, ActiveCampaign, SendInBlue, Hubspot, Infusionsoft, Mad Mimi, ConvertKit, MailerLite, iContact, GetResponse, and Campaign Monitor\";i:6;s:58:\"Manage who sees your hustle with super powerful conditions\";i:7;s:47:\"Track how many times your material is displayed\";i:8;s:42:\"See submissions straight through WordPress\";i:9;s:55:\"Conversion rates overview to make your clients ecstatic\";i:10;s:36:\"Great default layouts to choose from\";i:11;s:25:\"Easy management dashboard\";}s:7:\"version\";s:3:\"4.4\";s:17:\"free_version_slug\";s:27:\"wordpress-popup/popover.php\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:60:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, bbPress \";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:43:\"https://premium.wpmudev.org/project/hustle/\";s:9:\"thumbnail\";s:76:\"https://premium.wpmudev.org/wp-content/uploads/2016/08/hustle-01-280x158.png\";s:16:\"thumbnail_square\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2016/08/hustle-01-90x90.png\";s:15:\"thumbnail_large\";s:68:\"https://premium.wpmudev.org/wp-content/uploads/2016/08/hustle-01.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:21:\"admin.php?page=hustle\";s:13:\"ms_config_url\";s:0:\"\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:110:\"https://premium.wpmudev.org/wp-content/uploads/projects/1107020/screenshots/960353611_hustle-social-design.png\";s:4:\"desc\";s:18:\"Hustle Social Bars\";}i:1;a:2:{s:3:\"url\";s:108:\"https://premium.wpmudev.org/wp-content/uploads/projects/1107020/screenshots/1653524749_2-style-options-1.jpg\";s:4:\"desc\";s:21:\"Hustle Layout Options\";}i:2;a:2:{s:3:\"url\";s:109:\"https://premium.wpmudev.org/wp-content/uploads/projects/1107020/screenshots/469638973_premadecolorschemes.png\";s:4:\"desc\";s:20:\"Hustle Color Schemes\";}i:3;a:2:{s:3:\"url\";s:106:\"https://premium.wpmudev.org/wp-content/uploads/projects/1107020/screenshots/938384474_layoutvariations.png\";s:4:\"desc\";s:24:\"Hustle Design Variations\";}}s:6:\"_order\";i:6;}i:2097296;a:26:{s:2:\"id\";i:2097296;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:14:\"Forminator Pro\";s:8:\"released\";i:1519137568;s:7:\"updated\";i:1611822484;s:9:\"downloads\";s:6:\"293157\";s:10:\"popularity\";s:5:\"32221\";s:17:\"short_description\";s:135:\"Drag and drop WordPress form builder plugin with interactive polls and quizzes for increasing user engagement and building a following.\";s:8:\"features\";a:42:{i:0;s:31:\"Responsive fit for every screen\";i:1;s:13:\"Developer API\";i:2;s:15:\"Stripe Payments\";i:3;s:18:\"PayPal integration\";i:4;s:22:\"SCA Compliant Payments\";i:5;s:12:\"Calculations\";i:6;s:16:\"Google ReCAPTCHA\";i:7;s:26:\"Drag-and-drop form builder\";i:8;s:26:\"Forms  for every situation\";i:9;s:15:\"+15 Form blocks\";i:10;s:36:\"Email routing and conditional emails\";i:11;s:17:\"Form pre-populate\";i:12;s:22:\"Toggle styling options\";i:13;s:16:\"Campaign Monitor\";i:14;s:7:\"HubSpot\";i:15;s:14:\"ActiveCampaign\";i:16;s:13:\"Google Sheets\";i:17;s:31:\"Zapier (connects to +1000 apps)\";i:18;s:18:\"Trello Integration\";i:19;s:9:\"MailChimp\";i:20;s:6:\"AWeber\";i:21;s:17:\"Interactive polls\";i:22;s:18:\"Pagination options\";i:23;s:23:\"Collect and track stats\";i:24;s:23:\"No wrong answer quizzes\";i:25;s:21:\"Submissions dashboard\";i:26;s:15:\"Knowledge tests\";i:27;s:12:\"Live preview\";i:28;s:15:\"Knowledge tests\";i:29;s:24:\"Gutenberg block included\";i:30;s:10:\"GDPR ready\";i:31;s:13:\"Hidden fields\";i:32;s:27:\"Customized submission forms\";i:33;s:32:\"Schedule form submission reports\";i:34;s:16:\"Privacy settings\";i:35;s:29:\"Advanced email configurations\";i:36;s:35:\"Custom login and registration forms\";i:37;s:37:\"Instant migration from Contact Form 7\";i:38;s:42:\"Pass form data (variables) to another page\";i:39;s:26:\"Add E-signature form field\";i:40;s:35:\"Multiple file, drag and drop upload\";i:41;s:34:\"Advanced Datepicker field settings\";}s:7:\"version\";s:6:\"1.14.8\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:0:\"\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:51:\"https://premium.wpmudev.org/project/forminator-pro/\";s:9:\"thumbnail\";s:85:\"https://premium.wpmudev.org/wp-content/uploads/2018/02/forminator-feature-280x158.png\";s:16:\"thumbnail_square\";s:83:\"https://premium.wpmudev.org/wp-content/uploads/2018/02/forminator-feature-90x90.png\";s:15:\"thumbnail_large\";s:77:\"https://premium.wpmudev.org/wp-content/uploads/2018/02/forminator-feature.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:25:\"admin.php?page=forminator\";s:13:\"ms_config_url\";s:0:\"\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:113:\"https://premium.wpmudev.org/wp-content/uploads/projects/2097296/screenshots/1276807337_forminator-recaptcha-4.gif\";s:4:\"desc\";s:32:\"Forminator ReCAPTCHA Integration\";}i:1;a:2:{s:3:\"url\";s:106:\"https://premium.wpmudev.org/wp-content/uploads/projects/2097296/screenshots/1690180223_forminator-quiz.png\";s:4:\"desc\";s:15:\"Forminator quiz\";}i:2;a:2:{s:3:\"url\";s:109:\"https://premium.wpmudev.org/wp-content/uploads/projects/2097296/screenshots/1437585076_forminator-polls-2.png\";s:4:\"desc\";s:23:\"Forminator Poll results\";}i:3;a:2:{s:3:\"url\";s:105:\"https://premium.wpmudev.org/wp-content/uploads/projects/2097296/screenshots/1414388846_contact-form-5.png\";s:4:\"desc\";s:23:\"Forminator contact form\";}}s:6:\"_order\";i:7;}i:167;a:26:{s:2:\"id\";i:167;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:14:\"SmartCrawl Pro\";s:8:\"released\";i:1298584937;s:7:\"updated\";i:1611629390;s:9:\"downloads\";s:6:\"669865\";s:10:\"popularity\";s:5:\"70117\";s:17:\"short_description\";s:100:\"Boost your PageRank and drive more traffic to your site with little effort and simple configuration.\";s:8:\"features\";a:33:{i:0;s:22:\"Simple guided settings\";i:1;s:30:\"Offer SEO options by user role\";i:2;s:39:\"Direct interaction with Google and Bing\";i:3;s:48:\"Send sitemap updates automatic to search engines\";i:4;s:63:\"Custom post titles and meta descriptions (per custom post type)\";i:5;s:32:\"Title and meta data optimization\";i:6;s:26:\"Automatic sitewide linking\";i:7;s:24:\"Complete Moz integration\";i:8;s:38:\"Multisite and BuddyPress compatibility\";i:9;s:36:\"Process posts and pages individually\";i:10;s:17:\"Process RSS feeds\";i:11;s:31:\"Conduct case sensitive matching\";i:12;s:23:\"Prevent duplicate links\";i:13;s:28:\"Open links in new tab/window\";i:14;s:35:\"Exclude posts or pages from sitemap\";i:15;s:40:\"Exclude custom post types and taxonomies\";i:16;s:27:\"Exclude categories and tags\";i:17;s:41:\"Include or exclude images and stylesheets\";i:18;s:46:\"Include or remove the sitemap dashboard widget\";i:19;s:33:\"Disable automatic sitemap updates\";i:20;s:65:\"Post categories, tags and custom taxonomy title and meta defaults\";i:21;s:17:\"Custom home title\";i:22;s:21:\"Home meta description\";i:23;s:8:\"Keywords\";i:24;s:51:\"Import/export to quickly add SmartCrawl to any site\";i:25;s:39:\"Yoast SEO settings and content importer\";i:26;s:44:\"All in One SEO settings and content importer\";i:27;s:37:\"Main blog archive meta robots options\";i:28;s:29:\"Post and media title defaults\";i:29;s:40:\"Post and media meta description defaults\";i:30;s:53:\"Post categories, tags and custom taxonomy robots tags\";i:31;s:24:\"Author and date archives\";i:32;s:39:\"404 page title and description defaults\";}s:7:\"version\";s:3:\"2.9\";s:17:\"free_version_slug\";s:31:\"smartcrawl-seo/wpmu-dev-seo.php\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:65:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:61:\"https://premium.wpmudev.org/project/smartcrawl-wordpress-seo/\";s:9:\"thumbnail\";s:106:\"https://premium.wpmudev.org/wp-content/uploads/2011/02/SEO_Webcrawler_1470_SEO_Webcrawler_1470-280x158.png\";s:16:\"thumbnail_square\";s:104:\"https://premium.wpmudev.org/wp-content/uploads/2011/02/SEO_Webcrawler_1470_SEO_Webcrawler_1470-90x90.png\";s:15:\"thumbnail_large\";s:98:\"https://premium.wpmudev.org/wp-content/uploads/2011/02/SEO_Webcrawler_1470_SEO_Webcrawler_1470.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/w6t8a9mq8j\";s:13:\"wp_config_url\";s:25:\"admin.php?page=wds_wizard\";s:13:\"ms_config_url\";s:25:\"admin.php?page=wds_wizard\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:104:\"https://premium.wpmudev.org/wp-content/uploads/projects/167/screenshots/906662147_smartcrawl-checkup.png\";s:4:\"desc\";s:18:\"SmartCrawl Checkup\";}i:1;a:2:{s:3:\"url\";s:105:\"https://premium.wpmudev.org/wp-content/uploads/projects/167/screenshots/1008740409_smartcrawl-sitemap.png\";s:4:\"desc\";s:18:\"SmartCrawl Sitemap\";}i:2;a:2:{s:3:\"url\";s:109:\"https://premium.wpmudev.org/wp-content/uploads/projects/167/screenshots/1267268902_smartcrawl-autolinking.png\";s:4:\"desc\";s:22:\"SmartCrawl autolinking\";}i:3;a:2:{s:3:\"url\";s:119:\"https://premium.wpmudev.org/wp-content/uploads/projects/167/screenshots/205500292_smartcrawl-readability-compressor.png\";s:4:\"desc\";s:22:\"SmartCrawl Readability\";}}s:6:\"_order\";i:8;}i:3760011;a:26:{s:2:\"id\";i:3760011;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:12:\"Snapshot Pro\";s:8:\"released\";i:1592204194;s:7:\"updated\";i:1612230704;s:9:\"downloads\";s:5:\"70752\";s:10:\"popularity\";s:5:\"28089\";s:17:\"short_description\";s:104:\"Make and schedule incremental backups of your WordPress websites and store them on secure cloud storage.\";s:8:\"features\";a:15:{i:0;s:30:\"10GB of WPMU DEV cloud storage\";i:1;s:32:\"Manage your backups from The Hub\";i:2;s:17:\"Redundant backups\";i:3;s:32:\"Multisite Global file exclusions\";i:4;s:17:\"Scheduled backups\";i:5;s:19:\"Set backup interval\";i:6;s:13:\"Manual backup\";i:7;s:20:\"Multisite compatible\";i:8;s:18:\"Backup entire site\";i:9;s:34:\"Exclude specific files and folders\";i:10;s:22:\"Downloadable log files\";i:11;s:24:\"Simple one-click restore\";i:12;s:31:\"30 backups automatically stored\";i:13;s:15:\"Dynamic scaling\";i:14;s:19:\"Backup zipstreaming\";}s:7:\"version\";s:3:\"4.3\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:0:\"\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:45:\"https://premium.wpmudev.org/project/snapshot/\";s:9:\"thumbnail\";s:82:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin-280x158.png\";s:16:\"thumbnail_square\";s:80:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin-90x90.png\";s:15:\"thumbnail_large\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:31:\"admin.php?page=snapshot-backups\";s:13:\"ms_config_url\";s:31:\"admin.php?page=snapshot-backups\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:95:\"https://premium.wpmudev.org/wp-content/uploads/projects/3760011/screenshots/Snapshot-4-dash.png\";s:4:\"desc\";s:80:\"Control every aspect of your backups, right down to the time and day they occur.\";}i:1;a:2:{s:3:\"url\";s:104:\"https://premium.wpmudev.org/wp-content/uploads/projects/3760011/screenshots/snapshot4-manage-backups.png\";s:4:\"desc\";s:51:\"Manage your backups from one easy-to-use dashboard.\";}i:2;a:2:{s:3:\"url\";s:107:\"https://premium.wpmudev.org/wp-content/uploads/projects/3760011/screenshots/Snaphot-4-available-backups.png\";s:4:\"desc\";s:35:\"Track the progress of your backups.\";}i:3;a:2:{s:3:\"url\";s:106:\"https://premium.wpmudev.org/wp-content/uploads/projects/3760011/screenshots/Snapshot4-schedule-backups.png\";s:4:\"desc\";s:54:\"Automate the time, day, and frequency of your backups.\";}}s:6:\"_order\";i:9;}i:257;a:26:{s:2:\"id\";i:257;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:12:\"Snapshot Pro\";s:8:\"released\";i:1328745252;s:7:\"updated\";i:1594799224;s:9:\"downloads\";s:6:\"724722\";s:10:\"popularity\";s:5:\"40173\";s:17:\"short_description\";s:96:\"The automated, on-demand time-traveler that snaps and stores backups for one-click restoration. \";s:8:\"features\";a:28:{i:0;s:30:\"10GB of WPMU DEV cloud storage\";i:1;s:22:\"The Hub backup manager\";i:2;s:17:\"Redundant backups\";i:3;s:22:\"Server info quick view\";i:4;s:19:\"Manage memory usage\";i:5;s:32:\"Multisite Global file exclusions\";i:6;s:10:\"ZipArchive\";i:7;s:6:\"PclZip\";i:8;s:35:\"Size segmenting eliminates timeouts\";i:9;s:17:\"Scheduled backups\";i:10;s:19:\"Set backup interval\";i:11;s:13:\"Manual backup\";i:12;s:20:\"Multisite compatible\";i:13;s:18:\"Backup entire site\";i:14;s:19:\"Include media files\";i:15;s:22:\"Exclude specific files\";i:16;s:18:\"Annotate snapshots\";i:17;s:25:\"Set custom backup folders\";i:18;s:22:\"Downloadable log files\";i:19;s:24:\"Simple one-click restore\";i:20;s:26:\"Utilize standard WP tables\";i:21;s:11:\"Mirror sync\";i:22;s:30:\"Set number of backups to store\";i:23;s:34:\"Automatically remove oldest backup\";i:24;s:19:\"Dropbox integration\";i:25;s:21:\"Amazon S3 integration\";i:26;s:24:\"FTP and SFTP integration\";i:27;s:24:\"Google Drive integration\";}s:7:\"version\";s:3:\"3.3\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:65:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:48:\"https://premium.wpmudev.org/project/snapshot-v3/\";s:9:\"thumbnail\";s:82:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin-280x158.png\";s:16:\"thumbnail_square\";s:80:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin-90x90.png\";s:15:\"thumbnail_large\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2012/02/Snapshot_plugin.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/7x4kcv4j15\";s:13:\"wp_config_url\";s:37:\"admin.php?page=snapshot_pro_dashboard\";s:13:\"ms_config_url\";s:37:\"admin.php?page=snapshot_pro_dashboard\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:102:\"https://premium.wpmudev.org/wp-content/uploads/projects/257/screenshots/1315522110_schedule-backup.jpg\";s:4:\"desc\";s:30:\"Schedule backups with Snapshot\";}i:1;a:2:{s:3:\"url\";s:105:\"https://premium.wpmudev.org/wp-content/uploads/projects/257/screenshots/882714582_destinations-backup.jpg\";s:4:\"desc\";s:20:\"Choose a destination\";}i:2;a:2:{s:3:\"url\";s:99:\"https://premium.wpmudev.org/wp-content/uploads/projects/257/screenshots/905771522_snapshot-dash.jpg\";s:4:\"desc\";s:18:\"Snapshot Dashboard\";}i:3;a:2:{s:3:\"url\";s:102:\"https://premium.wpmudev.org/wp-content/uploads/projects/257/screenshots/1953204640_managed-backups.jpg\";s:4:\"desc\";s:15:\"Managed Backups\";}}s:6:\"_order\";i:10;}i:2175128;a:26:{s:2:\"id\";i:2175128;s:4:\"paid\";s:4:\"full\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:11:\"Shipper Pro\";s:8:\"released\";i:1548285368;s:7:\"updated\";i:1611627322;s:9:\"downloads\";s:5:\"91846\";s:10:\"popularity\";s:5:\"13063\";s:17:\"short_description\";s:146:\"Shipper Pro moves WordPress websites with one-click, from host to host, local to production, development to live, top to bottom without using FTP.\";s:8:\"features\";a:20:{i:0;s:17:\"Import and export\";i:1;s:18:\"No FTP/SFTP needed\";i:2;s:23:\"Secure dedicated server\";i:3;s:16:\"Pre-flight check\";i:4;s:21:\"Zip package migration\";i:5;s:21:\"File find and replace\";i:6;s:21:\"Files-by-file porting\";i:7;s:20:\"Large file detection\";i:8;s:22:\"Move from host to host\";i:9;s:23:\"Push from local to live\";i:10;s:21:\"Detailed Shipper Logs\";i:11;s:26:\"Display system Information\";i:12;s:22:\"Runs in the background\";i:13;s:38:\"Destination server configuration check\";i:14;s:18:\"Package size check\";i:15;s:12:\"Source check\";i:16;s:14:\"Location check\";i:17;s:13:\"Package check\";i:18;s:17:\"Migration Filters\";i:19;s:0:\"\";}s:7:\"version\";s:5:\"1.2.5\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:79:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, bbPress , WooCommerce 4.9.2\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:48:\"https://premium.wpmudev.org/project/shipper-pro/\";s:9:\"thumbnail\";s:82:\"https://premium.wpmudev.org/wp-content/uploads/2019/01/Shipper-Feature-280x158.png\";s:16:\"thumbnail_square\";s:80:\"https://premium.wpmudev.org/wp-content/uploads/2019/01/Shipper-Feature-90x90.png\";s:15:\"thumbnail_large\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2019/01/Shipper-Feature.png\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:22:\"admin.php?page=shipper\";s:13:\"ms_config_url\";s:22:\"admin.php?page=shipper\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:114:\"https://premium.wpmudev.org/wp-content/uploads/projects/2175128/screenshots/1130594245_shipper-getting-started.png\";s:4:\"desc\";s:23:\"Shipper getting started\";}i:1;a:2:{s:3:\"url\";s:117:\"https://premium.wpmudev.org/wp-content/uploads/projects/2175128/screenshots/1631499311_shipper-system information.png\";s:4:\"desc\";s:33:\"Shipper server system information\";}i:2;a:2:{s:3:\"url\";s:110:\"https://premium.wpmudev.org/wp-content/uploads/projects/2175128/screenshots/36952669_shipper-import-export.png\";s:4:\"desc\";s:25:\"Shipper import and export\";}i:3;a:2:{s:3:\"url\";s:116:\"https://premium.wpmudev.org/wp-content/uploads/projects/2175128/screenshots/1684527269_shipper-migration-options.png\";s:4:\"desc\";s:25:\"Shipper migration options\";}}s:6:\"_order\";i:11;}i:9135;a:26:{s:2:\"id\";i:9135;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:10:\"Branda Pro\";s:8:\"released\";i:1339280384;s:7:\"updated\";i:1611653906;s:9:\"downloads\";s:6:\"579909\";s:10:\"popularity\";s:5:\"53284\";s:17:\"short_description\";s:87:\"White label WordPress branding for both the front and back end of your site or network.\";s:8:\"features\";a:43:{i:0;s:25:\"Remove WordPress branding\";i:1;s:21:\"Highlight your design\";i:2;s:32:\"Add custom logo to the Admin Bar\";i:3;s:33:\"Simple WordPress logo replacement\";i:4;s:26:\"Create custom login screen\";i:5;s:28:\"Replace the word \"WordPress\"\";i:6;s:21:\"Simple brand matching\";i:7;s:21:\"Import/Export setting\";i:8;s:26:\"Reorganize Admin Bar menus\";i:9;s:26:\"Set custom Admin Bar menus\";i:10;s:28:\"Add a direct link to support\";i:11;s:16:\"Add help buttons\";i:12;s:29:\"Send system emails using SMTP\";i:13;s:29:\"Remove core Dashboard widgets\";i:14;s:32:\"Hide 3rd-party dashboard widgets\";i:15;s:29:\"Replace the WordPress \'Howdy\'\";i:16;s:28:\"Coming Soon/Maintenance Mode\";i:17;s:30:\"Customize \'Admin Help Content\'\";i:18;s:32:\"Increase site security and speed\";i:19;s:27:\"One plugin for all settings\";i:20;s:25:\"Create a custom admin bar\";i:21;s:24:\"Set \"From\" Email address\";i:22;s:15:\"Multisite ready\";i:23;s:26:\"Customize/add help content\";i:24;s:20:\"Custom global footer\";i:25;s:20:\"Custom global header\";i:26;s:23:\"Custom dashboard footer\";i:27;s:23:\"Rebrand the meta widget\";i:28;s:22:\"Protect site structure\";i:29;s:28:\"Custom DB error landing page\";i:30;s:27:\"Hide \'Permalinks\' menu item\";i:31;s:25:\"Replace WordPress in HTML\";i:32;s:26:\"Replace any word or phrase\";i:33;s:20:\"Set a custom Favicon\";i:34;s:28:\"Easily insert tracking codes\";i:35;s:25:\"Custom Multisite Favicons\";i:36;s:19:\"Customize admin CSS\";i:37;s:21:\"Uses CSS child fields\";i:38;s:22:\"Hide WordPress welcome\";i:39;s:34:\"Add custom dashboard color schemes\";i:40;s:29:\"Display custom admin messages\";i:41;s:30:\"Add Author Boxes to your posts\";i:42;s:31:\"Fully customize your admin menu\";}s:7:\"version\";s:5:\"3.4.3\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:65:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0, Upfront 1.9.4\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:54:\"https://premium.wpmudev.org/project/ultimate-branding/\";s:9:\"thumbnail\";s:79:\"https://premium.wpmudev.org/wp-content/uploads/2012/06/branda-large-280x158.png\";s:16:\"thumbnail_square\";s:77:\"https://premium.wpmudev.org/wp-content/uploads/2012/06/branda-large-90x90.png\";s:15:\"thumbnail_large\";s:71:\"https://premium.wpmudev.org/wp-content/uploads/2012/06/branda-large.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/v9l5fs1cgs\";s:13:\"wp_config_url\";s:23:\"admin.php?page=branding\";s:13:\"ms_config_url\";s:23:\"admin.php?page=branding\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:104:\"https://premium.wpmudev.org/wp-content/uploads/projects/9135/screenshots/branda-custom-login-screens.png\";s:4:\"desc\";s:27:\"Branda custom login screens\";}i:1;a:2:{s:3:\"url\";s:99:\"https://premium.wpmudev.org/wp-content/uploads/projects/9135/screenshots/branda-email-templates.png\";s:4:\"desc\";s:22:\"Branda email templates\";}i:2;a:2:{s:3:\"url\";s:105:\"https://premium.wpmudev.org/wp-content/uploads/projects/9135/screenshots/branda-feed-dashboard-widget.png\";s:4:\"desc\";s:22:\"Branda dashboard feeds\";}i:3;a:2:{s:3:\"url\";s:90:\"https://premium.wpmudev.org/wp-content/uploads/projects/9135/screenshots/branda-social.png\";s:4:\"desc\";s:27:\"Branda social share options\";}}s:6:\"_order\";i:12;}i:51;a:26:{s:2:\"id\";i:51;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:11:\"Beehive Pro\";s:8:\"released\";i:1235347220;s:7:\"updated\";i:1611726259;s:9:\"downloads\";s:6:\"442298\";s:10:\"popularity\";s:5:\"49138\";s:17:\"short_description\";s:94:\"Customizable Google Analytics dashboards, statistics, and reports for WordPress and Multisite.\";s:8:\"features\";a:18:{i:0;s:29:\"Simple one-click setup wizard\";i:1;s:30:\"Powerful Multisite integration\";i:2;s:39:\"One tracking code for an entire network\";i:3;s:38:\"Individual post/page statistics viewer\";i:4;s:17:\"Customize reports\";i:5;s:20:\"Anonymize IP masking\";i:6;s:26:\"Analytics dashboard widget\";i:7;s:38:\"Google Display Advertising integration\";i:8;s:26:\"Statistics overview screen\";i:9;s:31:\"Limit access based on user role\";i:10;s:28:\"Toggle statistics date range\";i:11;s:35:\"Track visits, page views and trends\";i:12;s:34:\"See visit duration and bounce rate\";i:13;s:41:\"Track top post, pages and referring links\";i:14;s:34:\"World map with visitors by country\";i:15;s:32:\"Graphs for fast visual reference\";i:16;s:23:\"Collect sub-domain data\";i:17;s:21:\"Tracks mapped domains\";}s:7:\"version\";s:5:\"3.3.7\";s:17:\"free_version_slug\";s:17:\"beehive-analytics\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:50:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:58:\"https://premium.wpmudev.org/project/beehive-analytics-pro/\";s:9:\"thumbnail\";s:95:\"https://premium.wpmudev.org/wp-content/uploads/2019/10/beehive-featured-placeholder-280x158.png\";s:16:\"thumbnail_square\";s:93:\"https://premium.wpmudev.org/wp-content/uploads/2019/10/beehive-featured-placeholder-90x90.png\";s:15:\"thumbnail_large\";s:87:\"https://premium.wpmudev.org/wp-content/uploads/2019/10/beehive-featured-placeholder.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/iu6g2umvu8\";s:13:\"wp_config_url\";s:31:\"admin.php?page=beehive-settings\";s:13:\"ms_config_url\";s:31:\"admin.php?page=beehive-settings\";s:7:\"package\";i:0;s:11:\"screenshots\";a:4:{i:0;a:2:{s:3:\"url\";s:93:\"https://premium.wpmudev.org/wp-content/uploads/projects/51/screenshots/beehive-comparison.png\";s:4:\"desc\";s:17:\"analytic overview\";}i:1;a:2:{s:3:\"url\";s:89:\"https://premium.wpmudev.org/wp-content/uploads/projects/51/screenshots/beehive-medium.png\";s:4:\"desc\";s:14:\"Beehive medium\";}i:2;a:2:{s:3:\"url\";s:92:\"https://premium.wpmudev.org/wp-content/uploads/projects/51/screenshots/beehive-user-data.png\";s:4:\"desc\";s:23:\"Beehive comparison data\";}i:3;a:2:{s:3:\"url\";s:92:\"https://premium.wpmudev.org/wp-content/uploads/projects/51/screenshots/beehive-user-role.png\";s:4:\"desc\";s:22:\"User roles for beehive\";}}s:6:\"_order\";i:13;}i:248;a:26:{s:2:\"id\";i:248;s:4:\"paid\";s:4:\"full\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Integrated Video Tutorials\";s:8:\"released\";i:1318459013;s:7:\"updated\";i:1611692121;s:9:\"downloads\";s:6:\"148030\";s:10:\"popularity\";s:5:\"10404\";s:17:\"short_description\";s:81:\"Complete, quality, always up-to-date list of unbranded WordPress training videos.\";s:8:\"features\";a:23:{i:0;s:20:\"Register your domain\";i:1;s:32:\"+45 included WordPress tutorials\";i:2;s:32:\"Automatically add videos to help\";i:3;s:17:\"Verify connection\";i:4;s:14:\"Hide menu item\";i:5;s:19:\"Customize menu name\";i:6;s:30:\"Give setup permission to users\";i:7;s:32:\"Hide access to individual videos\";i:8;s:17:\"Add custom videos\";i:9;s:14:\"Wistia support\";i:10;s:15:\"YouTube support\";i:11;s:13:\"Vimeo support\";i:12;s:21:\"Shortcode embed codes\";i:13;s:22:\"Customizable playlists\";i:14;s:11:\"Group embed\";i:15;s:15:\"Front end embed\";i:16;s:18:\"Quality production\";i:17;s:25:\"Automatic content updates\";i:18;s:20:\"White label branding\";i:19;s:19:\"Unlimited bandwidth\";i:20;s:15:\"Unlimited plays\";i:21;s:14:\"SSL compatible\";i:22;s:21:\"Multisite integration\";}s:7:\"version\";s:5:\"1.8.5\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:50:\"WordPress 5.6.1, Multisite 5.6.1, BuddyPress 7.1.0\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:62:\"https://premium.wpmudev.org/project/unbranded-video-tutorials/\";s:9:\"thumbnail\";s:94:\"https://premium.wpmudev.org/wp-content/uploads/2011/10/Integration-Video-Tutorials-280x158.png\";s:16:\"thumbnail_square\";s:92:\"https://premium.wpmudev.org/wp-content/uploads/2011/10/Integration-Video-Tutorials-90x90.png\";s:15:\"thumbnail_large\";s:86:\"https://premium.wpmudev.org/wp-content/uploads/2011/10/Integration-Video-Tutorials.png\";s:5:\"video\";s:41:\"//fast.wistia.net/embed/iframe/c5b01yf5xw\";s:13:\"wp_config_url\";s:39:\"options-general.php?page=wpmudev-videos\";s:13:\"ms_config_url\";s:32:\"settings.php?page=wpmudev-videos\";s:7:\"package\";i:0;s:11:\"screenshots\";a:3:{i:0;a:2:{s:3:\"url\";s:108:\"https://premium.wpmudev.org/wp-content/uploads/projects/248/screenshots/843594149_video-settings-735x470.jpg\";s:4:\"desc\";s:10:\"Easy setup\";}i:1;a:2:{s:3:\"url\";s:100:\"https://premium.wpmudev.org/wp-content/uploads/projects/248/screenshots/1005196382_icons-735x470.jpg\";s:4:\"desc\";s:15:\"A ton of videos\";}i:2;a:2:{s:3:\"url\";s:107:\"https://premium.wpmudev.org/wp-content/uploads/projects/248/screenshots/1978520080_video-player-735x470.jpg\";s:4:\"desc\";s:19:\"Videos in dashboard\";}}s:6:\"_order\";i:14;}i:938297;a:25:{s:2:\"id\";i:938297;s:4:\"paid\";s:4:\"paid\";s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:7:\"Upfront\";s:8:\"released\";i:1421124646;s:7:\"updated\";i:1524768151;s:9:\"downloads\";s:6:\"121696\";s:10:\"popularity\";s:4:\"3253\";s:17:\"short_description\";s:145:\"A versatile and infinitely customizable drag-and-drop WordPress theme platform for use with any child theme in the growing Upfront theme library.\";s:8:\"features\";a:0:{}s:7:\"version\";s:5:\"1.9.4\";s:17:\"free_version_slug\";s:0:\"\";s:10:\"autoupdate\";s:1:\"1\";s:6:\"active\";b:1;s:10:\"compatible\";s:32:\"WordPress 5.6.1, Multisite 5.6.1\";s:8:\"requires\";s:2:\"wp\";s:3:\"url\";s:44:\"https://premium.wpmudev.org/project/upfront/\";s:9:\"thumbnail\";s:74:\"https://premium.wpmudev.org/wp-content/uploads/2015/01/upfront-280x158.jpg\";s:16:\"thumbnail_square\";s:72:\"https://premium.wpmudev.org/wp-content/uploads/2015/01/upfront-90x90.jpg\";s:15:\"thumbnail_large\";s:66:\"https://premium.wpmudev.org/wp-content/uploads/2015/01/upfront.jpg\";s:5:\"video\";b:0;s:13:\"wp_config_url\";s:0:\"\";s:13:\"ms_config_url\";s:0:\"\";s:7:\"package\";i:0;s:6:\"_order\";i:15;}}s:11:\"plugin_tags\";a:6:{i:489;a:3:{s:4:\"name\";s:31:\"BuddyPress Plugins &amp; Themes\";s:5:\"count\";i:5;s:4:\"pids\";a:5:{i:0;s:3:\"167\";i:1;s:4:\"9135\";i:2;s:3:\"257\";i:3;s:2:\"51\";i:4;s:3:\"248\";}}i:32;a:3:{s:4:\"name\";s:26:\"WordPress Business Plugins\";s:5:\"count\";i:5;s:4:\"pids\";a:5:{i:0;s:7:\"1107020\";i:1;s:3:\"167\";i:2;s:4:\"9135\";i:3;s:3:\"248\";i:4;s:7:\"2097296\";}}i:498;a:3:{s:4:\"name\";s:27:\"WordPress Marketing Plugins\";s:5:\"count\";i:3;s:4:\"pids\";a:3:{i:0;s:7:\"1107020\";i:1;s:3:\"167\";i:2;s:7:\"2097296\";}}i:16;a:3:{s:4:\"name\";s:27:\"WordPress Multisite Plugins\";s:5:\"count\";i:9;s:4:\"pids\";a:9:{i:0;s:6:\"912164\";i:1;s:7:\"1081721\";i:2;s:7:\"1081723\";i:3;s:3:\"167\";i:4;s:3:\"257\";i:5;s:7:\"1107020\";i:6;s:4:\"9135\";i:7;s:2:\"51\";i:8;s:3:\"248\";}}i:31;a:3:{s:4:\"name\";s:28:\"WordPress Publishing Plugins\";s:5:\"count\";i:3;s:4:\"pids\";a:3:{i:0;s:6:\"912164\";i:1;s:3:\"167\";i:2;s:3:\"257\";}}i:50;a:3:{s:4:\"name\";s:21:\"WordPress SEO Plugins\";s:5:\"count\";i:5;s:4:\"pids\";a:5:{i:0;s:7:\"1107020\";i:1;s:3:\"167\";i:2;s:7:\"1081721\";i:3;s:4:\"9135\";i:4;s:2:\"51\";}}}s:11:\"free_notice\";N;s:13:\"single_notice\";N;s:11:\"full_notice\";a:3:{s:4:\"time\";i:1509947375;s:3:\"msg\";s:270:\"<strong>We\'ve pushed all-new updates to The Hub!</strong><br />What\'s The Hub? Only the best way to manage all your sites in one place! Login to your WPMU DEV account to check out the new features. <a href=\"https://premium.wpmudev.org/hub/my-websites/\">Go to The Hub</a>\";s:6:\"author\";i:164650;}}','no'),(433190,'wdp_un_profile_data','a:2:{s:7:\"profile\";a:5:{s:4:\"name\";s:6:\"Adrian\";s:9:\"user_name\";s:26:\"marketing@infosystrade.com\";s:12:\"member_since\";i:1529486311;s:6:\"avatar\";s:185:\"https://premium.wpmudev.org/avatar/8b7a1e6db28416e85c912bb0950ce634?s=150&d=https%3A%2F%2Fpremium.wpmudev.org%2Fwp-content%2Fthemes%2Fwpmudev-2015-1%2Fassets%2Fimg%2Favatars%2F8.png&r=g\";s:5:\"title\";s:4:\"Gold\";}s:6:\"points\";a:5:{s:10:\"rep_points\";i:0;s:4:\"rank\";i:52576;s:7:\"history\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"hero\";s:9:\"timestamp\";s:10:\"1532683940\";s:6:\"points\";s:2:\"50\";s:11:\"reason_code\";s:14:\"account_signup\";s:6:\"reason\";s:78:\"You\'ve got Hero Points just for signing up. You’re on your way to greatness!\";s:9:\"object_id\";N;s:9:\"from_user\";N;}}s:11:\"hero_points\";i:50;s:9:\"rep_level\";a:4:{s:4:\"base\";i:0;s:5:\"level\";i:0;s:4:\"name\";s:0:\"\";s:5:\"title\";s:11:\"New Recruit\";}}}','no'),(433197,'wdp_un_redirected_v4','1','no'),(425029,'wphb-notice-cache-cleaned-show','yes','no'),(485490,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(466929,'smush_cron_update_running','1','no'),(369776,'su_option_dismissed_notices','a:1:{s:4:\"rate\";b:1;}','yes'),(369777,'simple_css','a:2:{s:3:\"css\";s:15174:\"#topslider{\r\ntop: 123px !important;\r\n}\r\n#menu-secondary {\r\n	margin-top:3px!important;\r\n}\r\nbody.home.page #main .wpcf7 {\r\n    top: 208px !important;\r\n}\r\nbody.single #content {\r\n	width: 100%!important;\r\n    position:relative!important;\r\n}\r\n@media (max-width: 1000px){\r\nbody #content_menu2 {\r\n    position: relative!important;\r\n    top:0!important;\r\n	}\r\n.type-post {\r\n    width: 100%!important;\r\n }    \r\n}\r\n@media screen and (max-width: 767px) and (min-width: 320px) {\r\nbody.single #container.one-column {\r\n    margin-top: 50px!important;\r\n}\r\n}\r\n@media (max-width: 970px) {\r\n    .page-id-40 .one-column {\r\n    	padding:0 20px;\r\n    }\r\n    .page-id-32 .one-column {\r\n    	padding:0 20px;\r\n    }\r\n    .page-id-34 #content2.services {\r\n    	padding:0 20px;\r\n        box-sizing: border-box;\r\n    }\r\n    .page-id-44 .one-column {\r\n    	padding:0 20px;\r\n        box-sizing: border-box;\r\n    }\r\n    .category-blog #content {\r\n    	width: 100%!important;\r\n    padding: 0 20px!important;\r\n    box-sizing: border-box!important;\r\n    }\r\n}\r\n@media (max-width: 920px) {\r\n	.contact-form-sub {\r\n    	float:left!important;\r\n        display: flex!important;\r\n    	justify-content: center!important;\r\n    	align-items: center!important;\r\n    	width: 100%!important;\r\n        margin-left: 0px!important;\r\n    }\r\n    .header-pages {\r\n    	width: 100%!important;\r\n    }\r\n    body.single #content {\r\n    	float: left!important;\r\n        padding:0 20px!important;\r\n        box-sizing: border-box;\r\n    }\r\n    body.single .one-column {\r\n    	float: left;\r\n    	width: 100%\r\n    }\r\n    #bwg_container1_0 #bwg_container2_0 .bwg-container-0 {\r\n    	    box-sizing: border-box;\r\n    }\r\n}\r\n#menu-item-539 {\r\n    margin: 0 0 0 0px;\r\n}\r\n\r\ninput::-webkit-input-placeholder, textarea::-webkit-textarea-placeholder {\r\n    color:#a0a0a0 !important;\r\n}\r\n\r\ninput::-moz-placeholder, textarea::-moz-placeholder {\r\n    color:#a0a0a0 !important;\r\n}\r\n\r\ninput::-ms-placeholder, textarea::-ms-placeholder {\r\n    color:#a0a0a0 !important;\r\n}\r\n\r\ninput::placeholder, textarea::placeholder {\r\n    color:#a0a0a0 !important;\r\n}\r\n#form_21d1a65f5d3b2691ceb1f784ef20d3f6 input::placeholder{\r\n	color:#fff!important;\r\n}\r\ndiv.contact-form-input input{\r\n	width:95% !important;\r\n}\r\n.contact-form-box input, .contact-form-box textarea{\r\n    border: none;\r\n    padding: 7px;\r\n    margin-bottom:5px;\r\n}\r\n.wpcf7-textarea {\r\n    width: 95% !important;\r\n}\r\n#topslider{\r\n	margin-top:0px !important;\r\n    top:0px !important;; \r\n}\r\n#wpcf7-f782-o1{\r\n    position: absolute;\r\n    top: 50%;\r\n    right: 25%;\r\n    z-index: 1;\r\n    transform: translateY(-50%);\r\n    background: rgba(89,135,198,.7);\r\n    padding: 20px;\r\n}\r\n#wpcf7-f782-o1 h4 {\r\n	font-size:2em;\r\n    line-height:2em;\r\n    text-align:center;\r\n}\r\n.wpcf7-submit-wrap{\r\n    text-align: center;\r\n    margin-top: 8px;\r\n}\r\ninput, textarea{\r\n	color:#000;\r\n}\r\n.wpcf7-submit-wrap input{\r\n	padding:10px 20px;\r\n    color:rgb(89,135,198);\r\n    background:#fff;\r\n}\r\n@media screen and (max-width:767px){\r\n   #wpcf7-f782-o1{\r\n        padding: 5px 20px;\r\n        position: relative;\r\n        width: 50%;\r\n        margin: 0 auto;\r\n	    z-index: 1;\r\n 		transform: translateY(0);\r\n       right:0;\r\n       margin-top:20px\r\n    }\r\n    #slider-home{\r\n    	top: 134px;\r\n    }\r\n    #callus{\r\n        position: absolute;\r\n        width: 50% !important;\r\n        display: inline-block;\r\n        margin: 0;\r\n        float: right;\r\n        right: 0;\r\n        top: 30px !important;\r\n        text-align: right;\r\n    }\r\n    #callus a{\r\n    	font-size: 28px;\r\n    	line-height: 30px;\r\n    	margin: 5px 10px;\r\n    }\r\n    #logo{\r\n    	width:40%!important;\r\n    	display:inline-block;\r\n    }\r\n    #header{\r\n    	height:auto;\r\n    }\r\n}\r\n#access2{\r\n	width:55% !important;\r\n}\r\n.header-pages{\r\n    display:block;\r\n    margin:0 auto;\r\n}\r\n#wr_form_799{\r\ndisplay:inline-block;\r\n    width: 32%;\r\n}\r\n.type-post{\r\nwidth:65%\r\n}\r\n#content{\r\nfloat:none !important;\r\n}\r\nbody #content_menu2 {\r\n    float: right !important;\r\n    margin: 15px 0 0 0;\r\n    font-size: 14px !important;\r\n    position: absolute;\r\n    top: 100px;\r\n    right: 0;\r\n    margin-bottom: 50px;\r\n}\r\n.photo {\r\n    position: absolute;\r\n    right: -319px;\r\n    width: 300px;\r\n    top: 410px;\r\n}\r\n#wr_form_799.jsn-master .jsn-bootstrap .jsn-form-content .control-group .controls input, #wr_form_799.jsn-master .jsn-bootstrap .jsn-form-content .control-group .controls select, #wr_form_799.jsn-master .jsn-bootstrap .jsn-form-content .control-group .controls textarea{\r\n	width:95%\r\n}\r\ninput.jsn-input-medium-fluid::-moz-placeholder,#wr_form_799 textarea::-moz-placeholder, input.jsn-input-medium-fluid::-webkit-input-placeholder,#wr_form_799 textarea::-webkit-textarea-placeholder,input.jsn-input-medium-fluid::-ms-placeholder,#wr_form_799 textarea::-ms-placeholder,input.jsn-input-medium-fluid::placeholder,#wr_form_799 textarea::placeholder {\r\n	color:#fff !important;\r\n}\r\n#container {\r\n    margin-bottom: 150px;\r\n}\r\n.jsn-input-medium-fluid, .jsn-input-xlarge-fluid, #wr-captcha{\r\nmargin:0 auto !important;\r\n}\r\nbody.blog #content {\r\nwidth: 100%!important;\r\n}\r\n\r\n.single-blog-header #head_img {\r\nwidth: 100%!important;}\r\n.single-blog-header img {\r\nwidth: 100%;}\r\n.type-post.category-blog {\r\nwidth: 100%;}\r\n.category-blog #container, .blog #container{\r\n    width: 100%;\r\n    margin: 0 auto !important;\r\n\r\n}\r\n.category-blog #content{\r\n    display: inline-block;\r\n    vertical-align: top;\r\n    width: 75%;\r\n}\r\n.category-blog #primary{\r\n    float:none!important;\r\n    display:inline-block!important;\r\n}\r\n.contact-form-sub{\r\n	width: 290px;\r\n    display: inline-block;\r\n}\r\nbody.archive #head_img{\r\ndisplay:inline-block!important;\r\n}\r\n.archive .header-pages{\r\n*width:987px!important;\r\n}\r\n.category-blog .contact-form-sub {\r\ndisplay: none;\r\n}\r\n.archive.category-blog #head_img {\r\n    width: 100% !important;\r\n}\r\n.archive .contact-form-sub, .contact-form-sub{\r\nmargin-left:14px;\r\n}\r\n.archive #head_img, #head_img{\r\n	width: 591px;\r\n}\r\n.contact-form-sub .wpcf7-submit-wrap input{\r\n    padding: 10px 20px;\r\n    color: #fff !important;\r\n    background: rgb(89,135,198)!important;\r\n}\r\n.contact-form-sub .wpcf7-validates-as-required.wpcf7-validates-as-email{\r\n    background: #f9f9f9!important;\r\n}\r\n.contact-form-sub input, .contact-form-sub textarea{\r\n	border:1px solid #eee !important;\r\n}\r\n#access2 ul ul ul li{\r\n    float:none!important;\r\n}\r\n\r\n#access2 ul ul ul{\r\n	box-shadow: none!important;\r\n}\r\n#access2 ul ul ul{\r\n    position: absolute;\r\n    top: 0px;\r\n    left: 180px;\r\n    float: left;\r\n    width: 180px;\r\n    z-index: 99999;\r\n}\r\n#access2 ul ul ul a {\r\n	background: #5987c5 !important;\r\n    color: #fff !important;\r\n}\r\nbody #access2 ul ul ul.sub-menu li {\r\n	background: #5987c5 !important;\r\n    color: #fff !important;\r\n    \r\n}\r\n#menu-icons {\r\n	margin-left:0;\r\n    margin-bottom:0;\r\n}\r\n\r\n#menu-icons li {\r\n	float:left;\r\n}\r\n#access2 ul {\r\n	box-shadow: none!important;\r\n}\r\n\r\nbody #access2 ul ul ul.sub-menu {\r\n	top:0px!important;\r\n}\r\nbody #access2 ul ul.sub-menu li {\r\nwidth: 360px!important;\r\n}\r\n      .phoneContent {\r\n            position: fixed;\r\n            bottom: 10px;\r\n            display: none;\r\n            right: 10px;\r\n            z-index: 1000\r\n          }\r\n          .phoneCircle {\r\n            width: 70px;\r\n            height: 70px;\r\n            background-color: rgba(141,197,30,1);\r\n            border-radius: 100%;\r\n            display: flex;\r\n            justify-content: center;\r\n            align-items: center;\r\n            cursor: pointer;\r\n            float: right;\r\n            position: relative;\r\n            z-index: 1;\r\n            right: 10px;\r\n          }\r\n          .phoneImg {\r\n            width: 25px;\r\n          }\r\n          .numberClick {\r\n            width: calc(100% - 20px);\r\n            height: 56px;\r\n            display: none;\r\n            top: 7px;\r\n            position: relative;\r\n            margin:0 auto;\r\n            text-decoration: none;\r\n          }\r\n          .numberBox {\r\n            position: relative;\r\n            height: 56px;\r\n            background-color: rgba(141,197,30,0.6);\r\n            border-radius: 28px;\r\n          }\r\n          .numberText{\r\n            display: flex;\r\n            justify-content: center;\r\n            align-items: center;\r\n            height: 56px;\r\n          }\r\n          .callUsContent {\r\n            color: #fff!important;\r\n            margin-bottom: 0px;\r\n          }\r\n          @media screen and (max-width: 480px) {\r\n            .phoneContent {\r\n              display: block;\r\n            }\r\n          }\r\n\r\n@media (max-width:785px) {\r\n	#callus {\r\n    	position: absolute!important;\r\n    	top: 90px!important;\r\n    	z-index: 2;\r\n    	left: 0px;\r\n        width: 200px!important;\r\n        margin-top: 0!important;\r\n   		margin-bottom: 0px!important;\r\n    }\r\n    #callus a{\r\n    	color: #fff!important;\r\n        margin-right:0!important;\r\n        margin-left:0!important;\r\n    }\r\n    #menu-secondary::before {\r\n    background-position: 99% 50%!important;\r\n    }\r\n    #logo {\r\n    	width:100%!important;\r\n        margin:0 auto;\r\n        text-align:center;\r\n    }\r\n    #logo img {\r\n    	margin:0 auto!important;\r\n    }\r\n    #branding img {\r\n    	float:none!important;\r\n    }\r\n}\r\n@media (max-width:785px) {\r\n	body #access2 #menu-secondary.show li {\r\n    	float: left!important;\r\n    	width: 100%!important;\r\n    	max-width: 100%;\r\n    }\r\n    body #access2 #menu-secondary.show li a{\r\n    	float: left!important;\r\n    	width: 100%!important;\r\n    	max-width: 100%;\r\n        \r\n    }\r\n    body #access2 .sub-menu {\r\n    	display: block!important;\r\n    	width: 100%;\r\n    	max-width: 100%;\r\n    	position: relative;\r\n    }\r\n    #access2 ul.sub-menu>li a {\r\n    	width: 100%;\r\n        \r\n    }\r\n    body #access2 .sub-menu {\r\n    	top: 12px !important;\r\n	}\r\n    #access2 ul#menu-secondary>li::before {\r\n    	top:0;\r\n    }\r\n    #access2 .menu-header li {\r\n    padding-bottom: 12px !important;\r\n	}\r\n   	.rating {\r\n    	display:none;\r\n    }\r\n    #branding #access2 {\r\n    	display: flex;\r\n    	flex-direction: column-reverse;\r\n	}\r\n    #branding #logo {\r\n    	margin: 0 0 10px 0;\r\n    	display: block;\r\n	}\r\n    #menu-secondary::before {\r\n    	float: none;\r\n    	margin-top: 0;\r\n    	padding: 10px 0;\r\n	}\r\n    /*body #header #access2 #menu-secondary>li:nth-child(1), body #header #access2 #menu-secondary>li:nth-child(2), body #header #access2 #menu-secondary>li:nth-child(3), body #header #access2 #menu-secondary>li:nth-child(4) {\r\n    	display: none !important;\r\n	}*/\r\n    #meteor-slideshow {\r\n    	margin-top:0px;\r\n    }\r\n    #branding #callus a {\r\n    	font-size: 28px;\r\n    	line-height: 30px;\r\n    	margin: 5px 10px;\r\n	}\r\n    #branding #callus {\r\n    	height: 40px;\r\n    	margin: 0;\r\n        margin-top: 3px!important;\r\n	}\r\n        #branding #callus {\r\n        width: calc(100% - 43%)!important;\r\n        text-align:right;\r\n    }\r\n    #branding #callus a {\r\n    	float:right;\r\n    }\r\n    #branding #callus {\r\n    	display: block;\r\n    	justify-content: initial;\r\n    }\r\n        #branding {\r\n    width: 100%!important;\r\n    margin: 0 auto!important;\r\n	}\r\n\r\n    #menu-secondary::after {\r\n        content: \"\";\r\n    display: block;\r\n    float: left;\r\n    background: #002e62;\r\n    position: absolute;\r\n    width: 100%;\r\n    height: 45px;\r\n    margin-top: 0px;\r\n    cursor: pointer;\r\n    max-width: 100%;\r\n    margin: 0 auto;\r\n    top:0;\r\n    z-index:-2;\r\n    }\r\n    #menu-secondary::before {\r\n    width: 295px;\r\n    margin-top: 0px;\r\n    margin: 0 auto;\r\n	}\r\n    #header {\r\n	top:0;\r\n}\r\n}\r\n@media (max-width:610px) {\r\n	#branding #callus {\r\n        width: calc(100% - 41%)!important;\r\n    }\r\n}\r\n@media (max-width:480px) {\r\n    #branding {\r\n    width: 100%!important;\r\n    margin: 0 auto!important;\r\n	}\r\n    \r\n    #masthead::before {\r\n        content: \"\";\r\n    display: block;\r\n    float: left;\r\n    background: #002e62;\r\n    position: relative;\r\n    height: 45px;\r\n    margin-top: 89px;\r\n    /* cursor: pointer; */\r\n    width: 100%;\r\n    position: absolute;\r\n    /* right: auto; */\r\n    /* left: -70px; */\r\n    width: 100%;\r\n    top: 0;\r\n    }\r\n    #menu-secondary::after {\r\n        content: \"\";\r\n    display: block;\r\n    float: left;\r\n    background: #002e62;\r\n    position: absolute;\r\n    width: 100%;\r\n    height: 45px;\r\n    margin-top: 0px;\r\n    cursor: pointer;\r\n    max-width: 100%;\r\n    margin: 0 auto;\r\n    top:0;\r\n    z-index:-2;\r\n    }\r\n    #menu-secondary::before {\r\n    width: 295px;\r\n    margin-top: 0px;\r\n    margin: 0 auto;\r\n	}\r\n    #branding #callus {\r\n        width: calc(100% - 38%)!important;\r\n        text-align:right;\r\n    }\r\n    #branding #callus a {\r\n    	float:right;\r\n    }\r\n    #branding #callus {\r\n    	display: block;\r\n    	justify-content: initial;\r\n    }\r\n}\r\n\r\n@media (max-width:991px) {\r\n	.page-id-1148 .header-pages {\r\n    	width: 100%!important;\r\n    }\r\n    .head_img {\r\n    	width: 100% !important;\r\n    }\r\n    .page-id-1148 .contact-form-sub {\r\n    	width: 100%;\r\n        margin-left:0px;\r\n    }\r\n    .page-id-1148 .wpcf7 {\r\n    	width: 300px;\r\n        margin: 0 auto;\r\n    }\r\n    .page-id-1148 .one-column {\r\n    	margin-top: 50px!important;\r\n        padding: 0 20px;\r\n    }\r\n    .entry-content img {\r\n    	width: 100%;\r\n    }\r\n  	 \r\n}\r\n\r\n@media (max-width:767px) {\r\n	.page-id-1148 .header-pages {\r\n    	padding-top: 137px;\r\n    }\r\n    .page-id-910 .header-pages {\r\n    	padding-top: 137px;\r\n    }\r\n    .page-id-44 .one-column {\r\n    	    margin-top:0px!important;\r\n    }\r\n    .category-20 .header-pages {\r\n    	padding-top: 137px;\r\n    }\r\n    .entry-content h1 {\r\n    	font-size:22px!important;\r\n        line-height:27px!important;\r\n    }\r\n    .first-column {\r\n    	width:100%!important;\r\n    }\r\n    .first-column p {\r\n    	margin-left:0;\r\n        margin-right:0;\r\n    }\r\n    .entry-content p {\r\n    	margin-left:0;\r\n        margin-right:0;\r\n    }\r\n    .entry-content h2 {\r\n    	font-size:20px!important;\r\n        line-height:25px!important;\r\n    }\r\n    .page-id-44 .entry-content #container .col-sm-6 {\r\n    	width:100%!important;\r\n        box-sizing:border-box;\r\n    }\r\n    .page-id-44 .entry-content #container .col-sm-6 div{\r\n    	padding-left:0px!important;\r\n    }\r\n}\r\n\r\n@media only screen and (min-width: 786px) and (max-width: 1500px)  {\r\n	#branding {\r\n    	max-width: 700px;\r\n    	margin: 0 auto;\r\n    	width: 100%;\r\n    }\r\n    #branding #callus {\r\n    	margin-top: 0!important;\r\n    	margin-bottom: 0!important;\r\n    	position: absolute;\r\n    	right: 0;\r\n    	top: 25px;\r\n    	margin-right: 0px;\r\n	}\r\n    .rating {\r\n    	position: absolute;\r\n    	left: 9px;\r\n    	top: 5px;\r\n        right: auto!important;\r\n    }\r\n    .menu-icons-container {\r\n    	position: absolute;\r\n    	top: 47px;\r\n    	left: 0px;\r\n    }\r\n    .menu-header {\r\n    	margin-top: 15px;\r\n    	padding-top: 10px;\r\n    	border-top: 1px solid #e9e9e9;\r\n    }\r\n}\r\nbody  #content_menu2 {\r\ntop:140px;\r\n}\r\n\r\n.testimonials-new:before {\r\n    content: \'\';\r\n    top:0;\r\n    left:0;\r\n    right:0;\r\n    bottom:0;\r\n    background:url(\'/wp-content/uploads/2019/08/5_stelle.png\');\r\n    background-repeat:no-repeat;\r\n    background-position:50% 0%;\r\n    position:absolute;\r\n}\r\n\r\n.testimonials-new {\r\n    padding-top:30px;\r\n    position:relative;\r\n    font-style:italic;\r\n    margin-bottom:5px!important;\r\n}\";s:5:\"theme\";s:1:\"1\";}','yes'),(566659,'_transient_bfa-api-versions','O:8:\"stdClass\":2:{s:8:\"versions\";a:20:{i:0;s:5:\"4.7.0\";i:1;s:5:\"4.6.3\";i:2;s:5:\"4.6.2\";i:3;s:5:\"4.6.1\";i:4;s:5:\"4.6.0\";i:5;s:5:\"4.5.0\";i:6;s:5:\"4.4.0\";i:7;s:5:\"4.3.0\";i:8;s:5:\"4.2.0\";i:9;s:5:\"4.1.0\";i:10;s:5:\"4.0.3\";i:11;s:5:\"4.0.1\";i:12;s:5:\"4.0.0\";i:13;s:5:\"3.2.1\";i:14;s:5:\"3.2.0\";i:15;s:5:\"3.1.1\";i:16;s:5:\"3.0.2\";i:17;s:3:\"3.0\";i:18;s:3:\"2.0\";i:19;s:5:\"1.0.0\";}s:11:\"lastversion\";s:5:\"4.7.0\";}','no'),(566658,'_transient_timeout_bfa-api-versions','1612539082','no'),(564587,'_transient_timeout_bfa-css','1613535798','no'),(564588,'_transient_bfa-css','a:1:{s:5:\"4.7.0\";s:31000:\"/*!\n *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:\'FontAwesome\';src:url(\'../fonts/fontawesome-webfont.eot?v=4.7.0\');src:url(\'../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0\') format(\'embedded-opentype\'),url(\'../fonts/fontawesome-webfont.woff2?v=4.7.0\') format(\'woff2\'),url(\'../fonts/fontawesome-webfont.woff?v=4.7.0\') format(\'woff\'),url(\'../fonts/fontawesome-webfont.ttf?v=4.7.0\') format(\'truetype\'),url(\'../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular\') format(\'svg\');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:\"\\f000\"}.fa-music:before{content:\"\\f001\"}.fa-search:before{content:\"\\f002\"}.fa-envelope-o:before{content:\"\\f003\"}.fa-heart:before{content:\"\\f004\"}.fa-star:before{content:\"\\f005\"}.fa-star-o:before{content:\"\\f006\"}.fa-user:before{content:\"\\f007\"}.fa-film:before{content:\"\\f008\"}.fa-th-large:before{content:\"\\f009\"}.fa-th:before{content:\"\\f00a\"}.fa-th-list:before{content:\"\\f00b\"}.fa-check:before{content:\"\\f00c\"}.fa-remove:before,.fa-close:before,.fa-times:before{content:\"\\f00d\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-search-minus:before{content:\"\\f010\"}.fa-power-off:before{content:\"\\f011\"}.fa-signal:before{content:\"\\f012\"}.fa-gear:before,.fa-cog:before{content:\"\\f013\"}.fa-trash-o:before{content:\"\\f014\"}.fa-home:before{content:\"\\f015\"}.fa-file-o:before{content:\"\\f016\"}.fa-clock-o:before{content:\"\\f017\"}.fa-road:before{content:\"\\f018\"}.fa-download:before{content:\"\\f019\"}.fa-arrow-circle-o-down:before{content:\"\\f01a\"}.fa-arrow-circle-o-up:before{content:\"\\f01b\"}.fa-inbox:before{content:\"\\f01c\"}.fa-play-circle-o:before{content:\"\\f01d\"}.fa-rotate-right:before,.fa-repeat:before{content:\"\\f01e\"}.fa-refresh:before{content:\"\\f021\"}.fa-list-alt:before{content:\"\\f022\"}.fa-lock:before{content:\"\\f023\"}.fa-flag:before{content:\"\\f024\"}.fa-headphones:before{content:\"\\f025\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-up:before{content:\"\\f028\"}.fa-qrcode:before{content:\"\\f029\"}.fa-barcode:before{content:\"\\f02a\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-book:before{content:\"\\f02d\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-print:before{content:\"\\f02f\"}.fa-camera:before{content:\"\\f030\"}.fa-font:before{content:\"\\f031\"}.fa-bold:before{content:\"\\f032\"}.fa-italic:before{content:\"\\f033\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-right:before{content:\"\\f038\"}.fa-align-justify:before{content:\"\\f039\"}.fa-list:before{content:\"\\f03a\"}.fa-dedent:before,.fa-outdent:before{content:\"\\f03b\"}.fa-indent:before{content:\"\\f03c\"}.fa-video-camera:before{content:\"\\f03d\"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:\"\\f03e\"}.fa-pencil:before{content:\"\\f040\"}.fa-map-marker:before{content:\"\\f041\"}.fa-adjust:before{content:\"\\f042\"}.fa-tint:before{content:\"\\f043\"}.fa-edit:before,.fa-pencil-square-o:before{content:\"\\f044\"}.fa-share-square-o:before{content:\"\\f045\"}.fa-check-square-o:before{content:\"\\f046\"}.fa-arrows:before{content:\"\\f047\"}.fa-step-backward:before{content:\"\\f048\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-backward:before{content:\"\\f04a\"}.fa-play:before{content:\"\\f04b\"}.fa-pause:before{content:\"\\f04c\"}.fa-stop:before{content:\"\\f04d\"}.fa-forward:before{content:\"\\f04e\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-step-forward:before{content:\"\\f051\"}.fa-eject:before{content:\"\\f052\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-times-circle:before{content:\"\\f057\"}.fa-check-circle:before{content:\"\\f058\"}.fa-question-circle:before{content:\"\\f059\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-times-circle-o:before{content:\"\\f05c\"}.fa-check-circle-o:before{content:\"\\f05d\"}.fa-ban:before{content:\"\\f05e\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-mail-forward:before,.fa-share:before{content:\"\\f064\"}.fa-expand:before{content:\"\\f065\"}.fa-compress:before{content:\"\\f066\"}.fa-plus:before{content:\"\\f067\"}.fa-minus:before{content:\"\\f068\"}.fa-asterisk:before{content:\"\\f069\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-gift:before{content:\"\\f06b\"}.fa-leaf:before{content:\"\\f06c\"}.fa-fire:before{content:\"\\f06d\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-warning:before,.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-plane:before{content:\"\\f072\"}.fa-calendar:before{content:\"\\f073\"}.fa-random:before{content:\"\\f074\"}.fa-comment:before{content:\"\\f075\"}.fa-magnet:before{content:\"\\f076\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-retweet:before{content:\"\\f079\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-arrows-v:before{content:\"\\f07d\"}.fa-arrows-h:before{content:\"\\f07e\"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:\"\\f080\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-key:before{content:\"\\f084\"}.fa-gears:before,.fa-cogs:before{content:\"\\f085\"}.fa-comments:before{content:\"\\f086\"}.fa-thumbs-o-up:before{content:\"\\f087\"}.fa-thumbs-o-down:before{content:\"\\f088\"}.fa-star-half:before{content:\"\\f089\"}.fa-heart-o:before{content:\"\\f08a\"}.fa-sign-out:before{content:\"\\f08b\"}.fa-linkedin-square:before{content:\"\\f08c\"}.fa-thumb-tack:before{content:\"\\f08d\"}.fa-external-link:before{content:\"\\f08e\"}.fa-sign-in:before{content:\"\\f090\"}.fa-trophy:before{content:\"\\f091\"}.fa-github-square:before{content:\"\\f092\"}.fa-upload:before{content:\"\\f093\"}.fa-lemon-o:before{content:\"\\f094\"}.fa-phone:before{content:\"\\f095\"}.fa-square-o:before{content:\"\\f096\"}.fa-bookmark-o:before{content:\"\\f097\"}.fa-phone-square:before{content:\"\\f098\"}.fa-twitter:before{content:\"\\f099\"}.fa-facebook-f:before,.fa-facebook:before{content:\"\\f09a\"}.fa-github:before{content:\"\\f09b\"}.fa-unlock:before{content:\"\\f09c\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-feed:before,.fa-rss:before{content:\"\\f09e\"}.fa-hdd-o:before{content:\"\\f0a0\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bell:before{content:\"\\f0f3\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-hand-o-right:before{content:\"\\f0a4\"}.fa-hand-o-left:before{content:\"\\f0a5\"}.fa-hand-o-up:before{content:\"\\f0a6\"}.fa-hand-o-down:before{content:\"\\f0a7\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-globe:before{content:\"\\f0ac\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-filter:before{content:\"\\f0b0\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-group:before,.fa-users:before{content:\"\\f0c0\"}.fa-chain:before,.fa-link:before{content:\"\\f0c1\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-flask:before{content:\"\\f0c3\"}.fa-cut:before,.fa-scissors:before{content:\"\\f0c4\"}.fa-copy:before,.fa-files-o:before{content:\"\\f0c5\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-save:before,.fa-floppy-o:before{content:\"\\f0c7\"}.fa-square:before{content:\"\\f0c8\"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:\"\\f0c9\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-underline:before{content:\"\\f0cd\"}.fa-table:before{content:\"\\f0ce\"}.fa-magic:before{content:\"\\f0d0\"}.fa-truck:before{content:\"\\f0d1\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-plus:before{content:\"\\f0d5\"}.fa-money:before{content:\"\\f0d6\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-columns:before{content:\"\\f0db\"}.fa-unsorted:before,.fa-sort:before{content:\"\\f0dc\"}.fa-sort-down:before,.fa-sort-desc:before{content:\"\\f0dd\"}.fa-sort-up:before,.fa-sort-asc:before{content:\"\\f0de\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-linkedin:before{content:\"\\f0e1\"}.fa-rotate-left:before,.fa-undo:before{content:\"\\f0e2\"}.fa-legal:before,.fa-gavel:before{content:\"\\f0e3\"}.fa-dashboard:before,.fa-tachometer:before{content:\"\\f0e4\"}.fa-comment-o:before{content:\"\\f0e5\"}.fa-comments-o:before{content:\"\\f0e6\"}.fa-flash:before,.fa-bolt:before{content:\"\\f0e7\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-paste:before,.fa-clipboard:before{content:\"\\f0ea\"}.fa-lightbulb-o:before{content:\"\\f0eb\"}.fa-exchange:before{content:\"\\f0ec\"}.fa-cloud-download:before{content:\"\\f0ed\"}.fa-cloud-upload:before{content:\"\\f0ee\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-bell-o:before{content:\"\\f0a2\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cutlery:before{content:\"\\f0f5\"}.fa-file-text-o:before{content:\"\\f0f6\"}.fa-building-o:before{content:\"\\f0f7\"}.fa-hospital-o:before{content:\"\\f0f8\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-beer:before{content:\"\\f0fc\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angle-down:before{content:\"\\f107\"}.fa-desktop:before{content:\"\\f108\"}.fa-laptop:before{content:\"\\f109\"}.fa-tablet:before{content:\"\\f10a\"}.fa-mobile-phone:before,.fa-mobile:before{content:\"\\f10b\"}.fa-circle-o:before{content:\"\\f10c\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-spinner:before{content:\"\\f110\"}.fa-circle:before{content:\"\\f111\"}.fa-mail-reply:before,.fa-reply:before{content:\"\\f112\"}.fa-github-alt:before{content:\"\\f113\"}.fa-folder-o:before{content:\"\\f114\"}.fa-folder-open-o:before{content:\"\\f115\"}.fa-smile-o:before{content:\"\\f118\"}.fa-frown-o:before{content:\"\\f119\"}.fa-meh-o:before{content:\"\\f11a\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-keyboard-o:before{content:\"\\f11c\"}.fa-flag-o:before{content:\"\\f11d\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-terminal:before{content:\"\\f120\"}.fa-code:before{content:\"\\f121\"}.fa-mail-reply-all:before,.fa-reply-all:before{content:\"\\f122\"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:\"\\f123\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-crop:before{content:\"\\f125\"}.fa-code-fork:before{content:\"\\f126\"}.fa-unlink:before,.fa-chain-broken:before{content:\"\\f127\"}.fa-question:before{content:\"\\f128\"}.fa-info:before{content:\"\\f129\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-superscript:before{content:\"\\f12b\"}.fa-subscript:before{content:\"\\f12c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-shield:before{content:\"\\f132\"}.fa-calendar-o:before{content:\"\\f133\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-rocket:before{content:\"\\f135\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-html5:before{content:\"\\f13b\"}.fa-css3:before{content:\"\\f13c\"}.fa-anchor:before{content:\"\\f13d\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-bullseye:before{content:\"\\f140\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-rss-square:before{content:\"\\f143\"}.fa-play-circle:before{content:\"\\f144\"}.fa-ticket:before{content:\"\\f145\"}.fa-minus-square:before{content:\"\\f146\"}.fa-minus-square-o:before{content:\"\\f147\"}.fa-level-up:before{content:\"\\f148\"}.fa-level-down:before{content:\"\\f149\"}.fa-check-square:before{content:\"\\f14a\"}.fa-pencil-square:before{content:\"\\f14b\"}.fa-external-link-square:before{content:\"\\f14c\"}.fa-share-square:before{content:\"\\f14d\"}.fa-compass:before{content:\"\\f14e\"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:\"\\f150\"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:\"\\f151\"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:\"\\f152\"}.fa-euro:before,.fa-eur:before{content:\"\\f153\"}.fa-gbp:before{content:\"\\f154\"}.fa-dollar:before,.fa-usd:before{content:\"\\f155\"}.fa-rupee:before,.fa-inr:before{content:\"\\f156\"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:\"\\f157\"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:\"\\f158\"}.fa-won:before,.fa-krw:before{content:\"\\f159\"}.fa-bitcoin:before,.fa-btc:before{content:\"\\f15a\"}.fa-file:before{content:\"\\f15b\"}.fa-file-text:before{content:\"\\f15c\"}.fa-sort-alpha-asc:before{content:\"\\f15d\"}.fa-sort-alpha-desc:before{content:\"\\f15e\"}.fa-sort-amount-asc:before{content:\"\\f160\"}.fa-sort-amount-desc:before{content:\"\\f161\"}.fa-sort-numeric-asc:before{content:\"\\f162\"}.fa-sort-numeric-desc:before{content:\"\\f163\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-youtube-square:before{content:\"\\f166\"}.fa-youtube:before{content:\"\\f167\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-youtube-play:before{content:\"\\f16a\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-instagram:before{content:\"\\f16d\"}.fa-flickr:before{content:\"\\f16e\"}.fa-adn:before{content:\"\\f170\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitbucket-square:before{content:\"\\f172\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-long-arrow-down:before{content:\"\\f175\"}.fa-long-arrow-up:before{content:\"\\f176\"}.fa-long-arrow-left:before{content:\"\\f177\"}.fa-long-arrow-right:before{content:\"\\f178\"}.fa-apple:before{content:\"\\f179\"}.fa-windows:before{content:\"\\f17a\"}.fa-android:before{content:\"\\f17b\"}.fa-linux:before{content:\"\\f17c\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-skype:before{content:\"\\f17e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-trello:before{content:\"\\f181\"}.fa-female:before{content:\"\\f182\"}.fa-male:before{content:\"\\f183\"}.fa-gittip:before,.fa-gratipay:before{content:\"\\f184\"}.fa-sun-o:before{content:\"\\f185\"}.fa-moon-o:before{content:\"\\f186\"}.fa-archive:before{content:\"\\f187\"}.fa-bug:before{content:\"\\f188\"}.fa-vk:before{content:\"\\f189\"}.fa-weibo:before{content:\"\\f18a\"}.fa-renren:before{content:\"\\f18b\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-arrow-circle-o-right:before{content:\"\\f18e\"}.fa-arrow-circle-o-left:before{content:\"\\f190\"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:\"\\f191\"}.fa-dot-circle-o:before{content:\"\\f192\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-turkish-lira:before,.fa-try:before{content:\"\\f195\"}.fa-plus-square-o:before{content:\"\\f196\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-slack:before{content:\"\\f198\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-openid:before{content:\"\\f19b\"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:\"\\f19c\"}.fa-mortar-board:before,.fa-graduation-cap:before{content:\"\\f19d\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-google:before{content:\"\\f1a0\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-digg:before{content:\"\\f1a6\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-language:before{content:\"\\f1ab\"}.fa-fax:before{content:\"\\f1ac\"}.fa-building:before{content:\"\\f1ad\"}.fa-child:before{content:\"\\f1ae\"}.fa-paw:before{content:\"\\f1b0\"}.fa-spoon:before{content:\"\\f1b1\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-automobile:before,.fa-car:before{content:\"\\f1b9\"}.fa-cab:before,.fa-taxi:before{content:\"\\f1ba\"}.fa-tree:before{content:\"\\f1bb\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-database:before{content:\"\\f1c0\"}.fa-file-pdf-o:before{content:\"\\f1c1\"}.fa-file-word-o:before{content:\"\\f1c2\"}.fa-file-excel-o:before{content:\"\\f1c3\"}.fa-file-powerpoint-o:before{content:\"\\f1c4\"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:\"\\f1c5\"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:\"\\f1c6\"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:\"\\f1c7\"}.fa-file-movie-o:before,.fa-file-video-o:before{content:\"\\f1c8\"}.fa-file-code-o:before{content:\"\\f1c9\"}.fa-vine:before{content:\"\\f1ca\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:\"\\f1cd\"}.fa-circle-o-notch:before{content:\"\\f1ce\"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:\"\\f1d0\"}.fa-ge:before,.fa-empire:before{content:\"\\f1d1\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-git:before{content:\"\\f1d3\"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:\"\\f1d4\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-qq:before{content:\"\\f1d6\"}.fa-wechat:before,.fa-weixin:before{content:\"\\f1d7\"}.fa-send:before,.fa-paper-plane:before{content:\"\\f1d8\"}.fa-send-o:before,.fa-paper-plane-o:before{content:\"\\f1d9\"}.fa-history:before{content:\"\\f1da\"}.fa-circle-thin:before{content:\"\\f1db\"}.fa-header:before{content:\"\\f1dc\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-sliders:before{content:\"\\f1de\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:\"\\f1e3\"}.fa-tty:before{content:\"\\f1e4\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-plug:before{content:\"\\f1e6\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-newspaper-o:before{content:\"\\f1ea\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bell-slash-o:before{content:\"\\f1f7\"}.fa-trash:before{content:\"\\f1f8\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-at:before{content:\"\\f1fa\"}.fa-eyedropper:before{content:\"\\f1fb\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-area-chart:before{content:\"\\f1fe\"}.fa-pie-chart:before{content:\"\\f200\"}.fa-line-chart:before{content:\"\\f201\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-bicycle:before{content:\"\\f206\"}.fa-bus:before{content:\"\\f207\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-angellist:before{content:\"\\f209\"}.fa-cc:before{content:\"\\f20a\"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:\"\\f20b\"}.fa-meanpath:before{content:\"\\f20c\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-dashcube:before{content:\"\\f210\"}.fa-forumbee:before{content:\"\\f211\"}.fa-leanpub:before{content:\"\\f212\"}.fa-sellsy:before{content:\"\\f213\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-diamond:before{content:\"\\f219\"}.fa-ship:before{content:\"\\f21a\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-street-view:before{content:\"\\f21d\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-venus:before{content:\"\\f221\"}.fa-mars:before{content:\"\\f222\"}.fa-mercury:before{content:\"\\f223\"}.fa-intersex:before,.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-venus-double:before{content:\"\\f226\"}.fa-mars-double:before{content:\"\\f227\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-neuter:before{content:\"\\f22c\"}.fa-genderless:before{content:\"\\f22d\"}.fa-facebook-official:before{content:\"\\f230\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-server:before{content:\"\\f233\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-times:before{content:\"\\f235\"}.fa-hotel:before,.fa-bed:before{content:\"\\f236\"}.fa-viacoin:before{content:\"\\f237\"}.fa-train:before{content:\"\\f238\"}.fa-subway:before{content:\"\\f239\"}.fa-medium:before{content:\"\\f23a\"}.fa-yc:before,.fa-y-combinator:before{content:\"\\f23b\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-opencart:before{content:\"\\f23d\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:\"\\f240\"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battery-2:before,.fa-battery-half:before{content:\"\\f242\"}.fa-battery-1:before,.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-0:before,.fa-battery-empty:before{content:\"\\f244\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-sticky-note-o:before{content:\"\\f24a\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-clone:before{content:\"\\f24d\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-hourglass-o:before{content:\"\\f250\"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:\"\\f251\"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:\"\\f255\"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:\"\\f256\"}.fa-hand-scissors-o:before{content:\"\\f257\"}.fa-hand-lizard-o:before{content:\"\\f258\"}.fa-hand-spock-o:before{content:\"\\f259\"}.fa-hand-pointer-o:before{content:\"\\f25a\"}.fa-hand-peace-o:before{content:\"\\f25b\"}.fa-trademark:before{content:\"\\f25c\"}.fa-registered:before{content:\"\\f25d\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-safari:before{content:\"\\f267\"}.fa-chrome:before{content:\"\\f268\"}.fa-firefox:before{content:\"\\f269\"}.fa-opera:before{content:\"\\f26a\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-tv:before,.fa-television:before{content:\"\\f26c\"}.fa-contao:before{content:\"\\f26d\"}.fa-500px:before{content:\"\\f26e\"}.fa-amazon:before{content:\"\\f270\"}.fa-calendar-plus-o:before{content:\"\\f271\"}.fa-calendar-minus-o:before{content:\"\\f272\"}.fa-calendar-times-o:before{content:\"\\f273\"}.fa-calendar-check-o:before{content:\"\\f274\"}.fa-industry:before{content:\"\\f275\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-map-o:before{content:\"\\f278\"}.fa-map:before{content:\"\\f279\"}.fa-commenting:before{content:\"\\f27a\"}.fa-commenting-o:before{content:\"\\f27b\"}.fa-houzz:before{content:\"\\f27c\"}.fa-vimeo:before{content:\"\\f27d\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-fonticons:before{content:\"\\f280\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-edge:before{content:\"\\f282\"}.fa-credit-card-alt:before{content:\"\\f283\"}.fa-codiepie:before{content:\"\\f284\"}.fa-modx:before{content:\"\\f285\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-usb:before{content:\"\\f287\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-scribd:before{content:\"\\f28a\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-pause-circle-o:before{content:\"\\f28c\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stop-circle-o:before{content:\"\\f28e\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-hashtag:before{content:\"\\f292\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-percent:before{content:\"\\f295\"}.fa-gitlab:before{content:\"\\f296\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpforms:before{content:\"\\f298\"}.fa-envira:before{content:\"\\f299\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-wheelchair-alt:before{content:\"\\f29b\"}.fa-question-circle-o:before{content:\"\\f29c\"}.fa-blind:before{content:\"\\f29d\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-volume-control-phone:before{content:\"\\f2a0\"}.fa-braille:before{content:\"\\f2a1\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:\"\\f2a4\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-signing:before,.fa-sign-language:before{content:\"\\f2a7\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:\"\\f2b3\"}.fa-fa:before,.fa-font-awesome:before{content:\"\\f2b4\"}.fa-handshake-o:before{content:\"\\f2b5\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-o:before{content:\"\\f2b7\"}.fa-linode:before{content:\"\\f2b8\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-book-o:before{content:\"\\f2ba\"}.fa-vcard:before,.fa-address-card:before{content:\"\\f2bb\"}.fa-vcard-o:before,.fa-address-card-o:before{content:\"\\f2bc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-circle-o:before{content:\"\\f2be\"}.fa-user-o:before{content:\"\\f2c0\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-drivers-license:before,.fa-id-card:before{content:\"\\f2c2\"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:\"\\f2c3\"}.fa-quora:before{content:\"\\f2c4\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-shower:before{content:\"\\f2cc\"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:\"\\f2cd\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-times-rectangle:before,.fa-window-close:before{content:\"\\f2d3\"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:\"\\f2d4\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-grav:before{content:\"\\f2d6\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-eercast:before{content:\"\\f2da\"}.fa-microchip:before{content:\"\\f2db\"}.fa-snowflake-o:before{content:\"\\f2dc\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-meetup:before{content:\"\\f2e0\"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}\n\";}','no'),(484024,'revslider-stable-version','4.2.0','yes'),(484025,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:6:\"6.2.18\";s:4:\"text\";s:283:\"<div style=\"display: block; background-color: #150A33;\"><a href=\"//www.themepunch.com/faq/wordpress-5-5-important-update-information/\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/important_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS630-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:304:\"<div style=\"display: block; background-color: #F3F2F6;\"><a href=\"//www.sliderrevolution.com/get-on-board-the-slider-revolution-dashboard/?ref=iwantaccess\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/onboarding_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS999-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(484026,'revslider-dashboard','a:0:{}','yes'),(484027,'revslider-addons','O:8:\"stdClass\":25:{s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"1.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:29:\"Display images in 360ÃÂ°\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}}','yes'),(566294,'ep_exclude_pages','55,44,56,57,58,61,32,62,34,63,38,64,40,65,42,66,46,67,7,69,74,225,278,279,281,77,292,388,389,390,391,392,393,394,395,396,397,454,455,456,457,458,459,460,461,522,538,8,558,559,560,561,562,587,590,591,592,593,594,595,596,597,598,601,602,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,640,641,642,643,644,645,675,704,703,706,705,708,709,719,720,742,754,755,756,757,758,759,760,769,770,771,792,793,794,795,796,797,798,801,803,804,817,822,824,825,829,830,831,832,833,834,836,837,838,839,840,841,842,843,844,845,846,847,848,851,852,853,854,855,856,857,859,861,863,864,866,867,868,869,870,871,873,874,875,876,877,878,879,881,882,883,884,894,895,896,897,898,899,900,905,906,907,930,931,939,940,950,953,1020,1022,1065,1069,1072,1073,1074,1075,1076,1077,1079,1080,1082,1083,1084,1085,1086,1087,1088,1089,1093,1094,1095,1098,1106,1112,1114,1135,1136,1137,1142,1143,1144,1145,1146,1167,1168,1172,1183,1206,1207,1208,1209,1210,1211,1212,1213,1220,1223,1226,1227,1228,1229,1231,1232,1233,1234,1236,1237,1238,1239,1240,1241,1242,1243,1244,1246,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1262,1263,1266,1269,1287,1290,1299,1300,1301,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1367,1370,1371,1374,1375,1376,1377,1378,1406,1407,1410,6400,7915,7952,7953,8004,8005,8134,8216,8217,8218,8222,8223,8224','yes'),(342704,'widget_shortcodes-ultimate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(342703,'su_option_version','5.9.6','no'),(553817,'su_option_custom-formatting','on','yes'),(483757,'revslider_checktables','1','yes'),(483758,'rs_tables_created','1','yes'),(483759,'revslider_table_version','1.0.6','yes'),(483760,'revslider-global-settings','a:19:{s:4:\"role\";s:5:\"admin\";s:17:\"includes_globally\";s:2:\"on\";s:18:\"pages_for_includes\";s:0:\"\";s:12:\"js_to_footer\";s:3:\"off\";s:8:\"js_defer\";s:2:\"on\";s:19:\"load_all_javascript\";s:3:\"off\";s:15:\"show_dev_export\";s:3:\"off\";s:19:\"change_font_loading\";s:0:\"\";s:5:\"width\";s:4:\"1240\";s:14:\"width_notebook\";s:4:\"1024\";s:12:\"width_tablet\";s:3:\"778\";s:12:\"width_mobile\";s:3:\"480\";s:14:\"stage_collapse\";s:3:\"off\";s:18:\"enable_newschannel\";s:2:\"on\";s:11:\"enable_logs\";s:3:\"off\";s:20:\"force_activation_box\";s:3:\"off\";s:18:\"pack_page_creation\";s:2:\"on\";s:20:\"single_page_creation\";s:3:\"off\";s:17:\"load_google_fonts\";s:3:\"off\";}','yes'),(483797,'rs_obj_favorites','a:12:{i:0;s:118:\"https://chicagolandremodeling.com/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_3d_rotation_24px.svg\";i:1;s:120:\"https://chicagolandremodeling.com/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_accessibility_24px.svg\";i:2;s:117:\"https://chicagolandremodeling.com/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_accessible_24px.svg\";i:3;s:16:\"object_dvd_1.png\";i:4;s:17:\"relax_hammock.jpg\";i:5;s:16:\"beach_houses.jpg\";i:6;s:17:\"forest_road_2.jpg\";i:7;s:18:\"object_plant_1.png\";i:8;s:16:\"object_pen_1.png\";i:9;s:13:\"fa-icon-glass\";i:10;s:13:\"fa-icon-music\";i:11;s:14:\"fa-icon-search\";}','yes'),(483882,'wp-smush-last_run_sync','a:2:{s:4:\"time\";i:1612490428;s:5:\"fails\";i:0;}','no'),(342708,'su_option_hotkey','alt+i','yes'),(342709,'su_option_skin','default','yes'),(553820,'su_option_custom-css','','yes'),(342711,'sunrise_defaults_su','1','yes'),(484022,'revslider-connection','1','yes'),(484023,'revslider-latest-version','6.3.9','yes'),(325845,'fresh_site','0','yes'),(340066,'bwg_subscribe_done','1','yes'),(329515,'disable_comments_options','a:5:{s:19:\"disabled_post_types\";a:0:{}s:17:\"remove_everywhere\";b:1;s:9:\"permanent\";b:0;s:16:\"extra_post_types\";b:0;s:10:\"db_version\";i:6;}','yes'),(327545,'ossdl_off_cdn_url','https://chicagolandremodeling.com','yes'),(329510,'wd_bwg_options','{\"id\":\"1\",\"images_directory\":\"wp-content\\/uploads\",\"masonry\":\"vertical\",\"mosaic\":\"vertical\",\"resizable_mosaic\":\"0\",\"mosaic_total_width\":\"100\",\"image_column_number\":\"5\",\"images_per_page\":\"30\",\"thumb_width\":\"180\",\"thumb_height\":\"90\",\"upload_thumb_width\":\"300\",\"upload_thumb_height\":\"300\",\"image_enable_page\":\"1\",\"image_title_show_hover\":\"none\",\"ecommerce_icon_show_hover\":\"\",\"album_column_number\":\"5\",\"albums_per_page\":\"30\",\"album_title_show_hover\":\"hover\",\"album_thumb_width\":\"120\",\"album_thumb_height\":\"90\",\"album_enable_page\":\"1\",\"extended_album_height\":\"150\",\"extended_album_description_enable\":\"1\",\"image_browser_width\":\"800\",\"image_browser_title_enable\":\"1\",\"image_browser_description_enable\":\"1\",\"blog_style_width\":\"800\",\"blog_style_title_enable\":\"1\",\"blog_style_images_per_page\":\"5\",\"blog_style_enable_page\":\"1\",\"slideshow_type\":\"fade\",\"slideshow_interval\":\"5\",\"slideshow_width\":\"800\",\"slideshow_height\":\"500\",\"slideshow_enable_autoplay\":\"0\",\"slideshow_enable_shuffle\":\"0\",\"slideshow_enable_ctrl\":\"1\",\"slideshow_enable_filmstrip\":\"1\",\"slideshow_filmstrip_height\":\"90\",\"slideshow_enable_title\":\"0\",\"slideshow_title_position\":\"top-right\",\"slideshow_enable_description\":\"0\",\"slideshow_description_position\":\"bottom-right\",\"slideshow_enable_music\":\"0\",\"slideshow_audio_url\":\"\",\"slideshow_effect_duration\":\"1\",\"popup_width\":\"800\",\"popup_height\":\"500\",\"popup_type\":\"fade\",\"popup_interval\":\"5\",\"popup_enable_filmstrip\":\"1\",\"popup_filmstrip_height\":\"70\",\"popup_enable_ctrl_btn\":\"1\",\"popup_enable_fullscreen\":\"1\",\"popup_enable_info\":\"1\",\"popup_info_always_show\":\"0\",\"popup_enable_rate\":\"0\",\"popup_enable_comment\":\"1\",\"popup_enable_email\":\"0\",\"popup_enable_captcha\":\"0\",\"popup_enable_download\":\"0\",\"popup_enable_fullsize_image\":\"0\",\"popup_enable_facebook\":\"1\",\"popup_enable_twitter\":\"1\",\"popup_enable_google\":\"1\",\"popup_enable_ecommerce\":\"0\",\"popup_effect_duration\":\"1\",\"watermark_type\":\"none\",\"watermark_position\":\"bottom-left\",\"watermark_width\":\"90\",\"watermark_height\":\"90\",\"watermark_url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/plugins\\/photo-gallery\\/images\\/watermark.png\",\"watermark_text\":\"web-dorado.com\",\"watermark_link\":\"https:\\/\\/web-dorado.com\",\"watermark_font_size\":\"20\",\"watermark_font\":\"segoe ui\",\"watermark_color\":\"FFFFFF\",\"watermark_opacity\":\"30\",\"built_in_watermark_type\":\"none\",\"built_in_watermark_position\":\"middle-center\",\"built_in_watermark_size\":\"15\",\"built_in_watermark_url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/plugins\\/photo-gallery\\/images\\/watermark.png\",\"built_in_watermark_text\":\"web-dorado.com\",\"built_in_watermark_font_size\":\"20\",\"built_in_watermark_font\":\"arial\",\"built_in_watermark_color\":\"FFFFFF\",\"built_in_watermark_opacity\":\"30\",\"image_right_click\":\"0\",\"popup_fullscreen\":\"0\",\"gallery_role\":\"0\",\"album_role\":\"0\",\"image_role\":\"0\",\"popup_autoplay\":\"0\",\"album_view_type\":\"thumbnail\",\"popup_enable_pinterest\":\"0\",\"popup_enable_tumblr\":\"0\",\"show_search_box\":\"0\",\"search_box_width\":\"180\",\"preload_images\":\"0\",\"preload_images_count\":\"10\",\"thumb_click_action\":\"open_lightbox\",\"thumb_link_target\":\"1\",\"comment_moderation\":\"0\",\"popup_hit_counter\":\"0\",\"enable_ML_import\":\"0\",\"showthumbs_name\":\"0\",\"show_album_name\":\"0\",\"show_image_counts\":\"0\",\"upload_img_width\":\"1200\",\"upload_img_height\":\"1200\",\"play_icon\":\"1\",\"show_masonry_thumb_description\":\"0\",\"slideshow_title_full_width\":\"0\",\"popup_info_full_width\":\"0\",\"show_sort_images\":\"0\",\"autoupdate_interval\":\"30\",\"instagram_access_token\":\"\",\"description_tb\":\"0\",\"enable_seo\":\"1\",\"autohide_lightbox_navigation\":\"1\",\"autohide_slideshow_navigation\":\"1\",\"read_metadata\":\"1\",\"enable_loop\":\"1\",\"enable_addthis\":\"0\",\"addthis_profile_id\":\"\",\"carousel_interval\":\"5\",\"carousel_width\":\"300\",\"carousel_height\":\"300\",\"carousel_image_column_number\":\"5\",\"carousel_image_par\":\"0.75\",\"carousel_enable_title\":\"0\",\"carousel_enable_autoplay\":\"0\",\"carousel_r_width\":\"800\",\"carousel_fit_containerWidth\":\"1\",\"carousel_prev_next_butt\":\"1\",\"carousel_play_pause_butt\":\"1\",\"permissions\":\"manage_options\",\"facebook_app_id\":\"\",\"facebook_app_secret\":\"\",\"show_tag_box\":\"0\",\"show_hide_custom_post\":\"0\",\"show_hide_post_meta\":\"0\",\"use_inline_stiles_and_scripts\":\"0\",\"placeholder\":\"\"}','no'),(327546,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(327547,'ossdl_off_exclude','.php','yes'),(327548,'ossdl_cname','','yes'),(344101,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(344102,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(344103,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(458218,'wp-smush-settings','a:16:{s:11:\"networkwide\";b:0;s:4:\"auto\";i:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";i:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:9:\"keep_exif\";i:0;}','no'),(431253,'redirection_options','a:16:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"8279747ae6c459bb278c68ad6559ffa5\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:8:\"database\";s:3:\"2.4\";}','yes'),(327567,'widget_csr_reviews_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(327600,'supercache_stats','a:3:{s:9:\"generated\";i:1596011773;s:10:\"supercache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}s:7:\"wpcache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}}','yes'),(327598,'wpsupercache_count','0','yes'),(327597,'wpsupercache_start','1484835796','yes'),(379519,'wphb-free-install-date','1523572492','no'),(379554,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1523572766;}s:5:\"queue\";a:0:{}s:4:\"done\";a:2:{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:1523572766;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1525983410;}i:1;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1526069802;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1527285794;}}}','no'),(379555,'wp-smush-install-type','existing','no'),(379556,'wp-smush-version','3.8.2','no'),(379558,'wp-smush-skip-redirect','1','no'),(379559,'smush_global_stats','a:9:{s:11:\"size_before\";i:23023081;s:10:\"size_after\";i:21742568;s:7:\"percent\";d:5.5999999999999996;s:5:\"human\";s:6:\"1.2 MB\";s:5:\"bytes\";i:1280513;s:12:\"total_images\";i:411;s:14:\"resize_savings\";i:0;s:12:\"resize_count\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(379564,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";s:1:\"0\";s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(553822,'su_option_generator_access','manage_options','yes'),(553823,'su_option_enable_shortcodes_in','a:2:{i:0;s:16:\"term_description\";i:1;s:11:\"widget_text\";}','yes'),(333602,'smuzform_upload_dir','C:\\__work\\websites\\chicagolandremodeling.com/wp-content\\uploads\\smuzformfiles-gII2EdaykuLPFhvrotMJdwxou','yes'),(333572,'wpcf_nd_settings','a:7:{s:26:\"wpcf_nd_email_from_address\";s:23:\"kacper@infosystrade.com\";s:23:\"wpcf_nd_email_from_name\";s:28:\"Chicagoland Remodeling, Inc.\";s:21:\"wpcf_nd_subject_admin\";s:25:\"New Contact Form Response\";s:20:\"wpcf_nd_subject_user\";s:30:\"Contact Form Response Received\";s:21:\"wpcf_nd_message_admin\";s:32:\"A new message has been received.\";s:20:\"wpcf_nd_message_user\";s:71:\"Thank you for your message. We will respond to you as soon as possible.\";s:22:\"wpcf_nd_thank_you_text\";s:82:\"Thank you. Your message has been sent and we will be in touch as soon as possible.\";}','yes'),(333573,'wpcf_nd_contact_forms','a:6:{i:1;a:2:{s:5:\"title\";s:19:\"Simple contact form\";s:8:\"xml_data\";s:435:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"Contact us\" class=\"header\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"textarea\" label=\"Your message\" class=\"form-control text-area\" name=\"message\"></field></fields></form-template>\";}i:2;a:2:{s:5:\"title\";s:20:\"Booking form (hotel)\";s:8:\"xml_data\";s:1177:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"Book now\" class=\"header\"></field><field type=\"paragraph\" subtype=\"p\" label=\"This is a customizable paragraph field\" class=\"paragraph\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"select\" label=\"Guests\" class=\"form-control\" name=\"guestqty\">	<option label=\"1\" value=\"1\" selected=\"true\">1</option><option label=\"2\" value=\"2\">2</option><option label=\"3\" value=\"3\">3</option><option label=\"4\" value=\"4\">4</option><option label=\"5\" value=\"5\">5</option><option label=\"6\" value=\"6\">6</option><option label=\"7\" value=\"7\">7</option><option label=\"8\" value=\"8\">8</option><option label=\"9\" value=\"9\">9</option></field><field type=\"date\" label=\"Check in date\" class=\"calendar\" name=\"check-in-date\"></field><field type=\"date\" label=\"Check out date\" class=\"calendar\" name=\"check-out-date\"></field><field type=\"textarea\" label=\"Additional comments\" class=\"form-control text-area\" name=\"additional-comments\"></field></fields></form-template>\";}i:3;a:2:{s:5:\"title\";s:25:\"Booking form (restaurant)\";s:8:\"xml_data\";s:1164:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"Book now\" class=\"header\"></field><field type=\"paragraph\" subtype=\"p\" label=\"This is a customizable paragraph field\" class=\"paragraph\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"number\" label=\"Guests\" min=\"1\" max=\"100\" step=\"1\" class=\"form-control\" name=\"guests\"></field><field type=\"date\" label=\"Booking date\" class=\"calendar\" name=\"booking-date\"></field><field type=\"select\" label=\"Occassion\" class=\"form-control\" name=\"occassion\"><option label=\"No occassion\" value=\"none\">No occassion</option><option label=\"Birthday\" value=\"birthday\" selected=\"true\">Birthday</option><option label=\"Engagement\" value=\"engagement\">Engagement</option><option label=\"Anniversary\" value=\"anniversary\">Anniversary</option><option label=\"Meeting\" value=\"meeting\">Meeting</option></field><field type=\"textarea\" label=\"Additional comments\" class=\"form-control text-area\" name=\"additional-comments\"></field></fields></form-template>\";}i:4;a:2:{s:5:\"title\";s:12:\"Support form\";s:8:\"xml_data\";s:899:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"Support query\" class=\"header\"></field><field type=\"paragraph\" subtype=\"p\" label=\"Please enter your details below and an agent will get in touch with you as soon as possible\" class=\"paragraph\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"radio-group\" label=\"Department\" class=\"radio-group\" name=\"department\"><option label=\"Sales\" value=\"sales\" selected=\"true\">Sales</option><option label=\"Technical Support\" value=\"technical-support\">Technical Support</option><option label=\"Accounts\" value=\"accounts\">Accounts</option></field><field type=\"textarea\" label=\"Describe your issue\" class=\"form-control\" name=\"message\"></field></fields></form-template>\";}i:5;a:2:{s:5:\"title\";s:25:\"How did you hear about us\";s:8:\"xml_data\";s:1054:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"How did you hear about us?\" class=\"header\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"select\" label=\"How did you hear about us?\" class=\"form-control\" name=\"hearaboutus\"><option label=\"Radio\" value=\"radio\" selected=\"true\">Radio</option><option label=\"Television\" value=\"television\">Television</option><option label=\"Online Advertising\" value=\"online-advertising\">Online Advertising</option><option label=\"Billboard\" value=\"billboard\">Billboard</option><option label=\"Newspaper ad\" value=\"newspaper-ad\">Newspaper ad</option><option label=\"Friend\" value=\"friend\">Friend</option><option label=\"Search Engine\" value=\"search-engine\">Search Engine</option></field><field type=\"textarea\" label=\"Additional feedback\" class=\"form-control text-area\" name=\"additional-feedback\"></field></fields></form-template>\";}i:6;a:2:{s:5:\"title\";s:9:\"NPS Score\";s:8:\"xml_data\";s:1117:\"<form-template><fields><field type=\"header\" subtype=\"h1\" label=\"How likely are you to suggest our brand to your friends or family?\" class=\"header\"></field><field type=\"text\" label=\"Name\" subtype=\"text\" class=\"form-control text-input\" name=\"name-field\"></field><field type=\"text\" subtype=\"email\" label=\"Email\" class=\"form-control text-input\" name=\"email-field\"></field><field type=\"radio-group\" label=\"How likely are you to suggest our brand to your friends or family?\" class=\"radio-group\" name=\"nps-score\"><option label=\"1 - Not likely at all\" value=\"1\">1 - Not likely at all</option><option label=\"2\" value=\"2\">2</option><option label=\"3\" value=\"3\">3</option><option label=\"4\" value=\"4\">4</option><option label=\"5\" value=\"5\">5</option><option label=\"6\" value=\"6\">6</option><option label=\"7\" value=\"7\">7</option><option label=\"8\" value=\"8\">8</option><option label=\"9\" value=\"9\">9</option><option label=\"10 - Extremely likely\" value=\"10\">10 - Extremely likely</option></field><field type=\"textarea\" label=\"Additional feedback\" class=\"form-control text-area\" name=\"additional-feedback\"></field></fields></form-template>\";}}','yes'),(331485,'acf_version','4.4.11','yes'),(333600,'smuzform_plugin_version','1.7','yes'),(333601,'smuzform_db_version','1.0','yes'),(333574,'wpcf_nd_first_time','1','yes'),(333575,'wpcf_nd_version','1.12','yes'),(553818,'su_option_skip','on','yes'),(553819,'su_option_prefix','su_','yes'),(483755,'revslider-library-check','1611750794','yes'),(483756,'rs-library','a:3:{s:4:\"hash\";s:32:\"0fbedf953c0042911e0f27a364cf4227\";s:7:\"objects\";a:179:{i:0;a:12:{s:2:\"id\";s:3:\"198\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";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:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(433191,'wdp_un_farm133_themes','a:0:{}','no'),(433192,'wdp_un_updates_available','a:1:{i:912164;a:10:{s:3:\"url\";s:49:\"https://premium.wpmudev.org/project/wp-smush-pro/\";s:4:\"type\";s:6:\"plugin\";s:16:\"instructions_url\";s:57:\"https://premium.wpmudev.org/api/dashboard/v2/usage/912164\";s:4:\"name\";s:9:\"Smush Pro\";s:8:\"filename\";s:25:\"wp-smush-pro/wp-smush.php\";s:9:\"thumbnail\";s:78:\"https://premium.wpmudev.org/wp-content/uploads/2014/11/Smush_2016_02-90x90.png\";s:7:\"version\";s:5:\"3.2.4\";s:11:\"new_version\";s:5:\"3.8.2\";s:9:\"changelog\";a:0:{}s:10:\"autoupdate\";i:1;}}','no'),(433193,'wdp_un_last_run_updates','1612512904','no'),(433194,'wdp_un_last_run_profile','1533201257','no'),(433195,'wdp_un_last_check_upfront','0','no'),(433196,'wdp_un_staff_notes','','no'),(483746,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:16:\"themepunch.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(483765,'rs_cache_overlay','5.4.8.3','yes'),(483747,'revslider_server_refresh','1612362497','yes'),(483748,'revslider-update-check-short','1612414536','yes'),(483749,'revslider-templates-check','1612389531','yes'),(412975,'wordfence_installed','1','yes'),(433198,'wdp_un_autoupdate_dashboard','1','no'),(433199,'wdp_un_notifications','a:1:{i:2927;a:6:{s:2:\"id\";i:2927;s:7:\"content\";s:614:\"<p>admin, you can now enable direct login to all your sites from The WPMU DEV Hub. To do this we don\'t store any passwords or usernames, you just need to visit the Dashboard\'s Settings area and check \'Enable Single Sign-on for this website\'.</p><p>\n				<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=wpmudev-settings\" class=\"button-primary\">Single Sign-on Settings</a>\n				<a href=\"#\" class=\"wdp-notice-dismiss\" style=\"margin-left:20px;\" data-msg=\"Saving\">Dismiss</a>\n				<button type=\"button\" class=\"notice-dismiss\"><span class=\"screen-reader-text\">Dismiss this notice.</span></button>\n			</p>\";s:9:\"dismissed\";b:1;s:11:\"can_dismiss\";b:1;s:3:\"cta\";s:0:\"\";s:11:\"time_create\";i:1565601571;}}','no'),(433200,'wdp_un_auth_user','marketing@infosystrade.com','no'),(368065,'wpsc_feed_list','a:0:{}','yes'),(353298,'wpsupercache_gc_time','1513682891','yes'),(495557,'revslider-valid-notice','false','yes'),(379593,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;}','no'),(379595,'skip-smush-setup','1','no'),(354018,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(379540,'wphb-notice-minification-optimized-show','yes','yes'),(379541,'wphb-notice-http2-info-show','yes','yes'),(553824,'su_option_hide_deprecated','on','yes'),(483763,'revslider_update_version','5.2.5.5','yes'),(483764,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(458196,'wp_page_for_privacy_policy','0','yes'),(458197,'show_comments_cookies_opt_in','0','yes'),(527374,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1584366430;}}','no'),(538281,'yoast_migrations_free','a:1:{s:7:\"version\";s:6:\"15.6.2\";}','yes'),(477976,'wordfence_ls_version','1.0.5','yes'),(553821,'su_option_supported_blocks','a:3:{i:0;s:14:\"core/paragraph\";i:1;s:14:\"core/shortcode\";i:2;s:13:\"core/freeform\";}','yes'),(448516,'smush-directory-path-hash-updated','1','yes'),(477966,'recovery_keys','a:0:{}','yes'),(364026,'better-font-awesome_options','a:4:{s:7:\"version\";s:6:\"latest\";s:8:\"minified\";i:1;s:18:\"remove_existing_fa\";s:0:\"\";s:18:\"hide_admin_notices\";s:0:\"\";}','yes'),(379530,'wphb-quick-setup','a:1:{s:8:\"finished\";b:1;}','yes'),(379531,'wphb_settings','a:9:{s:6:\"minify\";a:11:{s:7:\"enabled\";b:1;s:7:\"use_cdn\";b:1;s:3:\"log\";b:0;s:11:\"minify_blog\";b:1;s:4:\"view\";s:5:\"basic\";s:5:\"block\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:11:\"dont_minify\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:7:\"combine\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:8:\"position\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:5:\"defer\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:6:\"inline\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}}s:6:\"uptime\";a:1:{s:7:\"enabled\";b:0;}s:8:\"gravatar\";a:1:{s:7:\"enabled\";b:0;}s:10:\"page_cache\";a:4:{s:7:\"enabled\";b:0;s:10:\"cache_blog\";b:1;s:7:\"control\";b:0;s:9:\"detection\";s:6:\"manual\";}s:7:\"caching\";a:4:{s:10:\"expiry_css\";s:10:\"8d/A691200\";s:17:\"expiry_javascript\";s:10:\"8d/A691200\";s:12:\"expiry_media\";s:10:\"8d/A691200\";s:13:\"expiry_images\";s:10:\"8d/A691200\";}s:10:\"cloudflare\";a:9:{s:7:\"enabled\";b:0;s:9:\"connected\";b:0;s:5:\"email\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:4:\"zone\";s:0:\"\";s:9:\"zone_name\";s:0:\"\";s:4:\"plan\";s:0:\"\";s:10:\"page_rules\";a:0:{}s:12:\"cache_expiry\";i:691200;}s:11:\"performance\";a:4:{s:7:\"reports\";b:0;s:13:\"subsite_tests\";b:0;s:9:\"dismissed\";b:0;s:10:\"last_score\";i:63;}s:8:\"advanced\";a:4:{s:12:\"query_string\";b:0;s:5:\"emoji\";b:0;s:8:\"prefetch\";a:9:{i:0;s:22:\"//fonts.googleapis.com\";i:1;s:19:\"//fonts.gstatic.com\";i:2;s:21:\"//ajax.googleapis.com\";i:3;s:17:\"//apis.google.com\";i:4;s:22:\"//google-analytics.com\";i:5;s:26:\"//www.google-analytics.com\";i:6;s:26:\"//ssl.google-analytics.com\";i:7;s:13:\"//youtube.com\";i:8;s:16:\"//s.gravatar.com\";}s:11:\"db_cleanups\";b:0;}s:3:\"rss\";a:2:{s:7:\"enabled\";b:1;s:8:\"duration\";i:3600;}}','yes'),(374147,'ulm_single_template_options','a:2:{s:23:\"ulm_single_template_cpt\";a:1:{i:0;s:4:\"post\";}s:24:\"ult_single_template_type\";s:4:\"page\";}','yes'),(379525,'wphb-notice-uptime-info-show','yes','no'),(428111,'new_admin_email','marketing@infosystrade.com','yes'),(362077,'ossdl_off_blog_url','https://chicagolandremodeling.com','yes'),(433208,'wpmudev_apikey','02a8f023976fb8afc539de8729e7868bb49379e8','no'),(433209,'wp_smush_api_auth','a:1:{s:40:\"02a8f023976fb8afc539de8729e7868bb49379e8\";a:2:{s:8:\"validity\";s:7:\"invalid\";s:9:\"timestamp\";i:1612490428;}}','no'),(458981,'cf7sr_key','6LeUuIsUAAAAACd4lr7kw_GC8hByN-pPbMNcSL1E','yes'),(458982,'cf7sr_secret','6LeUuIsUAAAAANPCZ0PBIjSKip8R74t3gwxvPewI','yes'),(458983,'cf7sr_message','','yes'),(374305,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(500435,'wpfssl_options','a:2:{s:8:\"wpfs_ssl\";s:3:\"yes\";s:9:\"wpfs_hsts\";s:2:\"no\";}','yes'),(500436,'wpfssl_meta','a:2:{s:13:\"first_version\";s:3:\"1.5\";s:13:\"first_install\";i:1569508360;}','yes'),(533087,'_transient_health-check-site-status-result','{\"good\":\"15\",\"recommended\":\"5\",\"critical\":\"0\"}','yes'),(553867,'secret_key','%^8 rN>nlj*EYNn/]4w)?TD:>CHV5rI|f#sTsZ?v*rnYaFp3=]q>1|cxvsPH+p,e','no'),(562170,'can_compress_scripts','1','no'),(562159,'auto_update_core_dev','enabled','yes'),(562160,'auto_update_core_minor','enabled','yes'),(562161,'auto_update_core_major','unset','yes'),(565301,'rewrite_rules','a:194:{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:39:\"index.php?yoast-sitemap-xsl=$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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"reviews/?$\";s:27:\"index.php?post_type=reviews\";s:40:\"reviews/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=reviews&feed=$matches[1]\";s:35:\"reviews/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=reviews&feed=$matches[1]\";s:27:\"reviews/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=reviews&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"reviews/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"reviews/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"reviews/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"reviews/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"reviews/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"reviews/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"reviews/([^/]+)/embed/?$\";s:40:\"index.php?reviews=$matches[1]&embed=true\";s:28:\"reviews/([^/]+)/trackback/?$\";s:34:\"index.php?reviews=$matches[1]&tb=1\";s:48:\"reviews/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?reviews=$matches[1]&feed=$matches[2]\";s:43:\"reviews/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?reviews=$matches[1]&feed=$matches[2]\";s:36:\"reviews/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?reviews=$matches[1]&paged=$matches[2]\";s:43:\"reviews/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?reviews=$matches[1]&cpage=$matches[2]\";s:32:\"reviews/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?reviews=$matches[1]&page=$matches[2]\";s:24:\"reviews/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"reviews/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"reviews/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"reviews/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"reviews/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"reviews/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:50:\"slideshow/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?slideshow=$matches[1]&feed=$matches[2]\";s:45:\"slideshow/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?slideshow=$matches[1]&feed=$matches[2]\";s:26:\"slideshow/([^/]+)/embed/?$\";s:42:\"index.php?slideshow=$matches[1]&embed=true\";s:38:\"slideshow/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?slideshow=$matches[1]&paged=$matches[2]\";s:20:\"slideshow/([^/]+)/?$\";s:31:\"index.php?slideshow=$matches[1]\";s:42:\"secondary_html/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"secondary_html/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"secondary_html/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"secondary_html/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"secondary_html/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"secondary_html/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"secondary_html/([^/]+)/embed/?$\";s:47:\"index.php?secondary_html=$matches[1]&embed=true\";s:35:\"secondary_html/([^/]+)/trackback/?$\";s:41:\"index.php?secondary_html=$matches[1]&tb=1\";s:43:\"secondary_html/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?secondary_html=$matches[1]&paged=$matches[2]\";s:50:\"secondary_html/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?secondary_html=$matches[1]&cpage=$matches[2]\";s:39:\"secondary_html/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?secondary_html=$matches[1]&page=$matches[2]\";s:31:\"secondary_html/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"secondary_html/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"secondary_html/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"secondary_html/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"secondary_html/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"secondary_html/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"bwg_gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"bwg_gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"bwg_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"bwg_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"bwg_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"bwg_gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"bwg_gallery/([^/]+)/embed/?$\";s:44:\"index.php?bwg_gallery=$matches[1]&embed=true\";s:32:\"bwg_gallery/([^/]+)/trackback/?$\";s:38:\"index.php?bwg_gallery=$matches[1]&tb=1\";s:40:\"bwg_gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?bwg_gallery=$matches[1]&paged=$matches[2]\";s:47:\"bwg_gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?bwg_gallery=$matches[1]&cpage=$matches[2]\";s:36:\"bwg_gallery/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?bwg_gallery=$matches[1]&page=$matches[2]\";s:28:\"bwg_gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"bwg_gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"bwg_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"bwg_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"bwg_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"bwg_gallery/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"bwg_album/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"bwg_album/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"bwg_album/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"bwg_album/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"bwg_album/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"bwg_album/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"bwg_album/([^/]+)/embed/?$\";s:42:\"index.php?bwg_album=$matches[1]&embed=true\";s:30:\"bwg_album/([^/]+)/trackback/?$\";s:36:\"index.php?bwg_album=$matches[1]&tb=1\";s:38:\"bwg_album/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?bwg_album=$matches[1]&paged=$matches[2]\";s:45:\"bwg_album/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?bwg_album=$matches[1]&cpage=$matches[2]\";s:34:\"bwg_album/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?bwg_album=$matches[1]&page=$matches[2]\";s:26:\"bwg_album/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"bwg_album/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"bwg_album/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"bwg_album/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"bwg_album/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"bwg_album/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"bwg_tag/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"bwg_tag/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"bwg_tag/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"bwg_tag/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"bwg_tag/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"bwg_tag/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"bwg_tag/([^/]+)/embed/?$\";s:40:\"index.php?bwg_tag=$matches[1]&embed=true\";s:28:\"bwg_tag/([^/]+)/trackback/?$\";s:34:\"index.php?bwg_tag=$matches[1]&tb=1\";s:48:\"bwg_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?bwg_tag=$matches[1]&feed=$matches[2]\";s:43:\"bwg_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?bwg_tag=$matches[1]&feed=$matches[2]\";s:36:\"bwg_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?bwg_tag=$matches[1]&paged=$matches[2]\";s:32:\"bwg_tag/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?bwg_tag=$matches[1]&page=$matches[2]\";s:24:\"bwg_tag/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"bwg_tag/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"bwg_tag/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"bwg_tag/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"bwg_tag/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"bwg_tag/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=8&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(566653,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1612492570;s:7:\"checked\";a:7:{s:6:\"chimod\";s:0:\"\";s:12:\"twentyeleven\";s:3:\"2.6\";s:14:\"twentynineteen\";s:3:\"1.2\";s:9:\"twentyten\";s:3:\"2.3\";s:12:\"twentytwelve\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"1.0\";}s:8:\"response\";a:6:{s:12:\"twentyeleven\";a:6:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"3.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentyeleven/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentyeleven.3.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.9.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:9:\"twentyten\";a:6:{s:5:\"theme\";s:9:\"twentyten\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:39:\"https://wordpress.org/themes/twentyten/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/twentyten.3.2.zip\";s:8:\"requires\";s:3:\"3.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwelve\";a:6:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.3.3.zip\";s:8:\"requires\";s:3:\"3.5\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(566654,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1612492570;s:8:\"response\";a:4:{s:31:\"photo-gallery/photo-gallery.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/photo-gallery\";s:4:\"slug\";s:13:\"photo-gallery\";s:6:\"plugin\";s:31:\"photo-gallery/photo-gallery.php\";s:11:\"new_version\";s:6:\"1.5.68\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/photo-gallery/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/photo-gallery.1.5.68.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/photo-gallery/assets/icon-256x256.png?rev=2068745\";s:2:\"1x\";s:66:\"https://ps.w.org/photo-gallery/assets/icon-128x128.png?rev=2068745\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/photo-gallery/assets/banner-1544x500.png?rev=2068745\";s:2:\"1x\";s:68:\"https://ps.w.org/photo-gallery/assets/banner-772x250.png?rev=2068745\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"wp-force-ssl/wp-force-ssl.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-force-ssl\";s:4:\"slug\";s:12:\"wp-force-ssl\";s:6:\"plugin\";s:29:\"wp-force-ssl/wp-force-ssl.php\";s:11:\"new_version\";s:4:\"1.57\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-force-ssl/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-force-ssl.1.57.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-force-ssl/assets/icon-256x256.png?rev=1593573\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-force-ssl/assets/icon-128x128.png?rev=1593573\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/wp-force-ssl/assets/banner-772x250.jpg?rev=1593573\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"15.7\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:21:{s:31:\"301-redirects/301-redirects.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/301-redirects\";s:4:\"slug\";s:13:\"301-redirects\";s:6:\"plugin\";s:31:\"301-redirects/301-redirects.php\";s:11:\"new_version\";s:3:\"0.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/301-redirects/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/301-redirects.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/301-redirects/assets/icon-256x256.png?rev=2108949\";s:2:\"1x\";s:66:\"https://ps.w.org/301-redirects/assets/icon-128x128.png?rev=2108949\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/301-redirects/assets/banner-1544x500.png?rev=2109136\";s:2:\"1x\";s:68:\"https://ps.w.org/301-redirects/assets/banner-772x250.png?rev=2109136\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/tinymce-advanced\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"5.6.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511\";s:2:\"1x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186\";s:2:\"1x\";s:71:\"https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"better-font-awesome/better-font-awesome.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/better-font-awesome\";s:4:\"slug\";s:19:\"better-font-awesome\";s:6:\"plugin\";s:43:\"better-font-awesome/better-font-awesome.php\";s:11:\"new_version\";s:5:\"1.7.4\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/better-font-awesome/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/better-font-awesome.1.7.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/better-font-awesome/assets/icon-256x256.png?rev=1186438\";s:2:\"1x\";s:72:\"https://ps.w.org/better-font-awesome/assets/icon-128x128.png?rev=1207071\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-font-awesome/assets/banner-1544x500.jpg?rev=887838\";s:2:\"1x\";s:73:\"https://ps.w.org/better-font-awesome/assets/banner-772x250.jpg?rev=887838\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";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:5:\"5.3.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"cosmick-star-rating/star-rating.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/cosmick-star-rating\";s:4:\"slug\";s:19:\"cosmick-star-rating\";s:6:\"plugin\";s:35:\"cosmick-star-rating/star-rating.php\";s:11:\"new_version\";s:5:\"1.1.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/cosmick-star-rating/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/cosmick-star-rating.1.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/cosmick-star-rating/assets/icon-256x256.jpg?rev=1139481\";s:2:\"1x\";s:72:\"https://ps.w.org/cosmick-star-rating/assets/icon-128x128.jpg?rev=1139481\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/cosmick-star-rating/assets/banner-1544x500.jpg?rev=1139481\";s:2:\"1x\";s:74:\"https://ps.w.org/cosmick-star-rating/assets/banner-772x250.jpg?rev=1139481\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"templatic-singletemplate/post_templates.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/templatic-singletemplate\";s:4:\"slug\";s:24:\"templatic-singletemplate\";s:6:\"plugin\";s:43:\"templatic-singletemplate/post_templates.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/templatic-singletemplate/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/templatic-singletemplate.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/templatic-singletemplate/assets/icon-128x128.jpg?rev=1436917\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/templatic-singletemplate/assets/banner-772x250.jpg?rev=1429043\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"disable-comments/disable-comments.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/disable-comments\";s:4:\"slug\";s:16:\"disable-comments\";s:6:\"plugin\";s:37:\"disable-comments/disable-comments.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/disable-comments.2.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=2365558\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=2365562\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=2365680\";s:2:\"1x\";s:71:\"https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=2365680\";}s:11:\"banners_rtl\";a:0:{}}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/easy-wp-smtp\";s:4:\"slug\";s:12:\"easy-wp-smtp\";s:6:\"plugin\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:11:\"new_version\";s:5:\"1.4.5\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/easy-wp-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/easy-wp-smtp.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/easy-wp-smtp/assets/icon-128x128.png?rev=1242044\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/easy-wp-smtp/assets/banner-772x250.png?rev=1650323\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"exclude-pages/exclude_pages.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/exclude-pages\";s:4:\"slug\";s:13:\"exclude-pages\";s:6:\"plugin\";s:31:\"exclude-pages/exclude_pages.php\";s:11:\"new_version\";s:4:\"1.92\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/exclude-pages/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/exclude-pages.1.92.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:57:\"https://s.w.org/plugins/geopattern-icon/exclude-pages.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:24:\"header-footer/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/header-footer\";s:4:\"slug\";s:13:\"header-footer\";s:6:\"plugin\";s:24:\"header-footer/plugin.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/header-footer/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/header-footer.3.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/header-footer/assets/icon-256x256.png?rev=1064219\";s:2:\"1x\";s:66:\"https://ps.w.org/header-footer/assets/icon-256x256.png?rev=1064219\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer/assets/banner-772x250.png?rev=1064202\";}s:11:\"banners_rtl\";a:0:{}}s:42:\"hummingbird-performance/wp-hummingbird.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/hummingbird-performance\";s:4:\"slug\";s:23:\"hummingbird-performance\";s:6:\"plugin\";s:42:\"hummingbird-performance/wp-hummingbird.php\";s:11:\"new_version\";s:5:\"2.7.0\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/hummingbird-performance/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/hummingbird-performance.2.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/hummingbird-performance/assets/icon-256x256.gif?rev=2262085\";s:2:\"1x\";s:76:\"https://ps.w.org/hummingbird-performance/assets/icon-128x128.gif?rev=2262086\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/hummingbird-performance/assets/banner-1544x500.jpg?rev=1675031\";s:2:\"1x\";s:78:\"https://ps.w.org/hummingbird-performance/assets/banner-772x250.jpg?rev=1675031\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"meteor-slides/meteor-slides-plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/meteor-slides\";s:4:\"slug\";s:13:\"meteor-slides\";s:6:\"plugin\";s:38:\"meteor-slides/meteor-slides-plugin.php\";s:11:\"new_version\";s:5:\"1.5.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/meteor-slides/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/meteor-slides.1.5.6.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/meteor-slides/assets/icon-128x128.jpg?rev=986808\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/meteor-slides/assets/banner-772x250.jpg?rev=986810\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/page-links-to\";s:4:\"slug\";s:13:\"page-links-to\";s:6:\"plugin\";s:31:\"page-links-to/page-links-to.php\";s:11:\"new_version\";s:5:\"3.3.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/page-links-to.3.3.5.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://s.w.org/plugins/geopattern-icon/page-links-to_fafafa.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/page-links-to/assets/banner-1544x500.png?rev=1889711\";s:2:\"1x\";s:68:\"https://ps.w.org/page-links-to/assets/banner-772x250.png?rev=1889711\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"post-template-select/post-template-select.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/post-template-select\";s:4:\"slug\";s:20:\"post-template-select\";s:6:\"plugin\";s:45:\"post-template-select/post-template-select.php\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/post-template-select/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/post-template-select.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/post-template-select/assets/icon-128x128.png?rev=1616853\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/post-template-select/assets/banner-772x250.jpg?rev=1616853\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/shortcodes-ultimate\";s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:6:\"plugin\";s:43:\"shortcodes-ultimate/shortcodes-ultimate.php\";s:11:\"new_version\";s:5:\"5.9.6\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/shortcodes-ultimate/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/shortcodes-ultimate.5.9.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.png?rev=1760590\";s:2:\"1x\";s:72:\"https://ps.w.org/shortcodes-ultimate/assets/icon-128x128.png?rev=1760590\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/shortcodes-ultimate/assets/banner-1544x500.jpg?rev=1760590\";s:2:\"1x\";s:74:\"https://ps.w.org/shortcodes-ultimate/assets/banner-772x250.jpg?rev=1760590\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"simple-css/simple-css.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/simple-css\";s:4:\"slug\";s:10:\"simple-css\";s:6:\"plugin\";s:25:\"simple-css/simple-css.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/simple-css/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/simple-css.1.1.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/simple-css/assets/icon-128x128.png?rev=2332555\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/simple-css/assets/banner-772x250.png?rev=2332555\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:5:\"3.8.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.3.8.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.gif?rev=2263432\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.gif?rev=2263431\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=1863697\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=1863697\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"underconstruction/underConstruction.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/underconstruction\";s:4:\"slug\";s:17:\"underconstruction\";s:6:\"plugin\";s:39:\"underconstruction/underConstruction.php\";s:11:\"new_version\";s:4:\"1.18\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/underconstruction/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/underconstruction.1.18.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/underconstruction/assets/icon-256x256.png?rev=2223095\";s:2:\"1x\";s:70:\"https://ps.w.org/underconstruction/assets/icon-128x128.png?rev=2223095\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/underconstruction/assets/banner-772x250.png?rev=2223095\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"wp-super-cache/wp-cache.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/wp-super-cache\";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.7.1\";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.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=1095422\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-super-cache/assets/icon-128x128.png?rev=1095422\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-super-cache/assets/banner-1544x500.png?rev=1082414\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-super-cache/assets/banner-772x250.png?rev=1082414\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(566618,'_transient_timeout_wp-smush-conflict_check','1612468664','no'),(566619,'_transient_wp-smush-conflict_check','a:0:{}','no'),(526237,'wdp_un_translation_updates_available','a:0:{}','no'),(524327,'_transient_timeout_wpseo_link_table_inaccessible','1614258577','no'),(524328,'_transient_wpseo_link_table_inaccessible','0','no'),(524329,'_transient_timeout_wpseo_meta_table_inaccessible','1614258577','no'),(524330,'_transient_wpseo_meta_table_inaccessible','0','no'),(510504,'admin_email_lifespan','1627844274','yes'),(566368,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.6.1\";s:7:\"version\";s:5:\"5.6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1612492570;s:15:\"version_checked\";s:5:\"5.6.1\";s:12:\"translations\";a:0:{}}','no'),(566179,'_site_transient_timeout_browser_9ac1fa0bd3b537ae262919ea6235b2f7','1612978973','no'),(566180,'_site_transient_browser_9ac1fa0bd3b537ae262919ea6235b2f7','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:11:\"90.0.4406.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(548101,'recovery_mode_email_last_sent','1595968379','yes'),(566605,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1612475733','no'),(566606,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4746;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:4680;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2709;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2578;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1988;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1843;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1824;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1502;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1500;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1498;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1475;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1469;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1464;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1307;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1241;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1217;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1211;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1149;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1115;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1036;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:928;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:918;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:893;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:885;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:855;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:814;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:804;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:793;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:790;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:768;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:757;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:733;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:724;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:716;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:709;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:696;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:673;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:660;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:655;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:645;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:643;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:642;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:641;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:603;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:594;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:592;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:585;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:585;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:574;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:569;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:563;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:559;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:558;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:556;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:550;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:541;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:538;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:537;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:535;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:528;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:510;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:499;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:496;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:491;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:490;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:484;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:473;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:469;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:467;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:464;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:452;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:450;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:447;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:444;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:442;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:438;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:433;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:433;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:429;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:424;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:416;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:412;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:406;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:404;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:402;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:400;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:400;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:389;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:389;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:384;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:380;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:379;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:368;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:363;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:361;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:357;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:356;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:350;}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\";i:346;}}','no'),(566676,'_site_transient_timeout_theme_roots','1612514703','no'),(566677,'_site_transient_theme_roots','a:7:{s:6:\"chimod\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(566674,'_site_transient_timeout_wdp_un_local_projects','1612513203','no'),(566675,'_site_transient_wdp_un_local_projects','a:2:{i:912164;a:7:{s:3:\"pid\";s:6:\"912164\";s:4:\"name\";s:9:\"Smush Pro\";s:8:\"filename\";s:25:\"wp-smush-pro/wp-smush.php\";s:4:\"path\";s:89:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/plugins/wp-smush-pro/wp-smush.php\";s:7:\"version\";s:5:\"3.2.4\";s:4:\"slug\";s:22:\"wpmudev_install-912164\";s:4:\"type\";s:6:\"plugin\";}i:119;a:7:{s:3:\"pid\";s:3:\"119\";s:4:\"name\";s:18:\"WPMU DEV Dashboard\";s:8:\"filename\";s:40:\"wpmudev-updates/update-notifications.php\";s:4:\"path\";s:104:\"C:\\__work\\websites\\chicagolandremodeling.com/wp-content/plugins/wpmudev-updates/update-notifications.php\";s:7:\"version\";s:6:\"4.10.6\";s:4:\"slug\";s:19:\"wpmudev_install-119\";s:4:\"type\";s:6:\"plugin\";}}','no'),(556639,'wp-smush-show_upgrade_modal','1','no'),(566488,'_transient_timeout_wpseo_total_unindexed_posts','1612528445','no'),(566489,'_transient_wpseo_total_unindexed_posts','60','no'),(566490,'_transient_timeout_wpseo_total_unindexed_terms','1612528445','no'),(566491,'_transient_wpseo_total_unindexed_terms','3','no'),(566492,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1612528445','no'),(566493,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(566258,'_transient_timeout_wpseo_unindexed_post_link_count','1612465327','no'),(566259,'_transient_wpseo_unindexed_post_link_count','54','no'),(566494,'_transient_timeout_wpseo_unindexed_term_link_count','1612528445','no'),(566495,'_transient_wpseo_unindexed_term_link_count','12','no'),(566070,'_site_transient_timeout_browser_5cd022c67bba483be4643a4599b579f2','1612897076','no'),(566071,'_site_transient_browser_5cd022c67bba483be4643a4599b579f2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"88.0.4324.104\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(566072,'_site_transient_timeout_php_check_744549330ad044a5e94138c3c20d7f77','1612897076','no'),(566073,'_site_transient_php_check_744549330ad044a5e94138c3c20d7f77','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(566580,'_transient_timeout_wpseo-statistics-totals','1612550861','no'),(566581,'_transient_wpseo-statistics-totals','a:1:{i:1;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts <strong>without</strong> a focus keyphrase\";s:5:\"count\";i:35;s:4:\"link\";s:110:\"https://chicagolandremodeling.com/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}','no'),(566582,'_site_transient_timeout_community-events-e718e584a809a15122f41963fcea3287','1612507661','no'),(566583,'_site_transient_community-events-e718e584a809a15122f41963fcea3287','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"37.47.41.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:41:\"Discussion Group: Using the Media Library\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/276051779/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-02-04 14:00:00\";s:8:\"end_date\";s:19:\"2021-02-04 15:00:00\";s:20:\"start_unix_timestamp\";i:1612476000;s:18:\"end_unix_timestamp\";i:1612479600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.779998779297;s:9:\"longitude\";d:-122.41999816895;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Prague\";s:3:\"url\";s:33:\"https://prague.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-02-27 10:00:00\";s:8:\"end_date\";s:19:\"2021-02-27 10:00:00\";s:20:\"start_unix_timestamp\";i:1614416400;s:18:\"end_unix_timestamp\";i:1614416400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"CZ\";s:8:\"latitude\";d:50.0755381;s:9:\"longitude\";d:14.4378005;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:66:\"Biznes w czasach pandemii. Czy zaraza dotyka WordPressa? #WTF2020.\";s:3:\"url\";s:47:\"https://www.meetup.com/wordup/events/276167022/\";s:6:\"meetup\";s:15:\"WordUp Warszawa\";s:10:\"meetup_url\";s:30:\"https://www.meetup.com/wordup/\";s:4:\"date\";s:19:\"2021-02-27 18:00:00\";s:8:\"end_date\";s:19:\"2021-02-27 20:00:00\";s:20:\"start_unix_timestamp\";i:1614445200;s:18:\"end_unix_timestamp\";i:1614452400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"PL\";s:8:\"latitude\";d:52.259998321533;s:9:\"longitude\";d:21.020000457764;}}}}','no'),(566454,'wpseo_taxonomy_meta','a:1:{s:8:\"category\";a:1:{i:20;a:4:{s:11:\"wpseo_title\";s:4:\"Blog\";s:13:\"wpseo_focuskw\";s:4:\"Blog\";s:13:\"wpseo_linkdex\";s:2:\"32\";s:19:\"wpseo_content_score\";s:1:\"0\";}}}','yes'),(566503,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1612485249','no'),(566504,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1612442049','no'),(566507,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1612485249','no'),(566508,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1612442049','no'),(566509,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1612485249','no'),(566510,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\'>WordPress 5.6.1 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/02/the-month-in-wordpress-january-2021/\'>The Month in WordPress: January 2021</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8\'>WPTavern: New Report Estimates WordPress’ Market Share of US Higher Education Institution Websites at 40.8%</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/fse-and-wordpress-themes-what-does-the-mvp-look-like?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fse-and-wordpress-themes-what-does-the-mvp-look-like\'>WPTavern: FSE and WordPress Themes: What Does the MVP Look Like?</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\'>WordPress.org blog: WordPress 5.6.1 Maintenance Release</a></li></ul></div>','no'),(566501,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1612485249','no'),(566502,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 21:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.7-beta1-50176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.6.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 21:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9574\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:468:\"WordPress 5.6.1 is now available! This maintenance release features&#160;20 bug fixes as well as&#160;7 issues fixed for the&#160;block&#160;editor. These bugs affect WordPress version 5.6, so you’ll want to upgrade. You can&#160;download WordPress 5.6.1 directly, or visit the&#160;Dashboard → Updates&#160;screen&#160;and click&#160;Update Now. If your sites support automatic background updates, they’ve already started the update process. WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8347:\"\n<p>WordPress 5.6.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.6.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">20 bug fixes</a> as well as&nbsp;7 issues fixed for the&nbsp;block&nbsp;editor. These bugs affect WordPress version 5.6, so you’ll want to upgrade.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.6.1.zip\">download WordPress 5.6.1 directly</a>, or visit the<strong>&nbsp;Dashboard → Updates</strong>&nbsp;screen&nbsp;and click&nbsp;<strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.6.1 is a short-cycle maintenance release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/5-7/\">version 5.7</a>.</p>\n\n\n\n<p>To see a full list of changes, you can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.6.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">list on Trac</a>, read the&nbsp;<a href=\"https://make.wordpress.org/core/2021/01/28/wordpress-5-6-1-rc1/\">5.6.1 RC1</a>&nbsp;post, or visit the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-6-1/\">5.6.1 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.6.1 release was led by <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> and <a href=\'https://profiles.wordpress.org/whyisjake/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>whyisjake</a>. Thanks to <a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a> and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for running bug scrubs, <a href=\'https://profiles.wordpress.org/planningwrite/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>planningwrite</a> and <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for their help on the release post.</p>\n\n\n\n<p>Props to everyone who helped make WordPress 5.6.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ifnoob/\">ifnoob</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/majhajob/\">majhajob</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: January 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/02/the-month-in-wordpress-january-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 15:01:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9632\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:382:\"For WordPress, 2021 started on a high note. Read on to learn about updates from last month.&#160; WordPress release updates WordPress project executive director — Josepha Haden (@chanthaboune) shared big picture goals for WordPress in 2021. Highlights include shipping&#160; Full Site Editing&#160; — first on the Gutenberg plugin in April 2021&#160; and later in core [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11651:\"\n<p>For WordPress, 2021 started on a high note. Read on to learn about updates from last month.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>WordPress project executive director — Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">shared big picture goals for WordPress in 2021</a>. Highlights include shipping&nbsp; Full Site Editing&nbsp; — first on the Gutenberg plugin in April 2021&nbsp; and later in core (with WordPress 5.8), improved learning opportunities on learn.wordpress.org, and better tooling for contributors. As per the updated <a href=\"https://wordpress.org/about/roadmap/\">WordPress roadmap</a>, WordPress version 5.7 is planned to launch in March 2021 and WordPress 5.8 in June 2021. Some related updates:</p>\n\n\n\n<ul><li>Contributor teams are working on <a href=\"https://make.wordpress.org/core/2021/01/29/introducing-css-custom-properties/\">an updated admin color palette for WordPress 5.7</a> that will be more accessible and easy to read.&nbsp;</li><li>The Core team is working on a proposal to <a href=\"https://make.wordpress.org/core/2021/01/12/recap-and-proposal-align-the-wordpress-release-cycle-with-the-industry-standard/\">align WordPress release cycles with industry standards</a>.&nbsp;</li><li>WordPress 5.6.1 <a href=\"https://make.wordpress.org/core/2021/01/28/wordpress-5-6-1-rc1/\">Release Candidate 1</a> is out. This release is set to launch by<a href=\"https://make.wordpress.org/core/2021/02/02/a-week-in-core-february-1-2021/\"> February 3, 2021</a>. Questions and answers for <a href=\"https://github.com/wpmarketingteam/WP5.6Marcomms\">WordPress 5.6</a> are now <a href=\"https://github.com/wpmarketingteam/WP5.6Marcomms\">available on GitHub</a>. Contact the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel in the WordPress Slack, if you would like to contribute.</li><li>The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">WordPress 5.7 Beta 1</a> release is out! Download the <a href=\"https://wordpress.org/wordpress-5.7-beta1.zip\">zip file</a> or use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> to test it out.&nbsp;</li></ul>\n\n\n\n<p>Want to be involved in the next release? You can help build WordPress Core by following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a> and joining the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal to return to in-person WordPress events in safe locations</h2>\n\n\n\n<p>The Community team is <a href=\"https://make.wordpress.org/community/2021/01/26/proposal-update-decision-making-checklist-for-safe-in-person-meetups/\">discussing an updated proposal</a> to create a decision-making checklist for meetup organizers. The proposal is aimed at locations that have more effectively contained COVID-19 (such as New Zealand and Taiwan, for instance) so that local meetup groups in these areas can organize safe, in-person events. According to the proposal, in-person meetup organizers should review local/global health instructions based on resources and complete a checklist — which recommends whether to organize an event or not based on the organizer’s inputs and other factors. Compulsory safety precautions should be taken for any in-person meetup, and participants/organizers can share event feedback with WordCamp Central. The proposal is still being discussed, so if you have any thoughts, please<a href=\"https://make.wordpress.org/community/2021/01/26/proposal-update-decision-making-checklist-for-safe-in-person-meetups/\"> share them in the comments</a>. <strong>Please note: WordPress meetups and WordCamps are still online at this time and will continue to remain online until further notice.</strong></p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog</a>, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RQC7RN\">#community-events</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a local WordPress community event, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>.&nbsp;</p>\n\n\n\n<h2>Gutenberg 9.7 and 9.8</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">Version 9.7</a> on January 6th and <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">Version 9.8</a> on January 20th. Version 9.7 allows users to drag block patterns from the inserter right into a desired position within the editor. It also has a new block variations feature and several improvements to reusable blocks. Version 9.6 makes the spacer block semi-transparent, adds a variation icon to the block switcher, adds site editor content to an iframe, and stabilizes Full Site Editing (FSE) by removing the auto drafts feature. </p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. You can find out more about the Gutenberg roadmap in the latest <a href=\"https://make.wordpress.org/core/2021/02/01/whats-next-in-gutenberg-february-2021/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<h2>Inviting Learn WordPress Contributors</h2>\n\n\n\n<p>Contributor teams working on the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> initiative are asking for <a href=\"https://learn.wordpress.org/contribute/\">new workshop presenters and discussion group facilitators</a>. The Training Team is recruiting<a href=\"https://make.wordpress.org/training/2021/01/27/learn-wordpress-working-group-call-for-handbook-volunteers/\"> volunteers for the Learn WordPress handbook</a> and has put up a <a href=\"https://make.wordpress.org/training/2021/01/29/request-for-testing-slides-plugin/\">call for testing for the slides plugin</a> to identify a simplified way to present slides. The Polyglots Team has floated a proposal to <a href=\"https://make.wordpress.org/polyglots/2021/01/13/proposal-translating-learn-wordpress/\">translate Learn WordPress</a>. The Meta Team is exploring the possibility of <a href=\"https://make.wordpress.org/meta/2021/01/03/protecting-childrens-privacy-on-wordpress-through-the-lens-of-coppa/\">making Learn WordPress (and wordpress.org) COPPA-compliant</a> to host workshops aimed at kids. </p>\n\n\n\n<p>Want to contribute to the Training team? Follow the <a href=\"https://make.wordpress.org/training/\">Training team</a> blog, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RW657Q\">#training</a> channel in the Make WordPress Slack.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">Round 1</a> of the Full Site Editing (FSE) outreach program <a href=\"https://make.wordpress.org/test/2021/01/15/fse-program-template-editing-testing-summary/\">has wrapped up</a>. As a result, gaps were identified in the Gutenberg 9.6 template-switching experience &#8211; you can follow the issues in GitHub. You can follow issues in GitHub and submit questions to the team. The program identified gaps in the current template-switching experience that shipped with Gutenberg 9.6. You can follow the <a href=\"https://github.com/WordPress/gutenberg/issues/27814\">issues reported in GitHub</a>. Do you have questions about the FSE program? You can now <a href=\"https://make.wordpress.org/test/2021/02/02/fse-program-bring-your-questions/\">submit them here as part of the outreach program</a>.</li><li><a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> — A cross-team initiative led by the Marketing team to highlight WordPress contributors is back with <a href=\"https://wordpress.org/news/2021/01/people-of-wordpress-thelma-mutete/\">a post featuring Thelma Muelte of Zimbabwe</a>. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the Marketing Team with the #ContributorStory tag to be featured in the series.</li><li>Joseph Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) launched a podcast titled <a href=\"https://wordpress.org/news/2021/02/welcome-to-your-wp-briefing/\">WP Briefing</a> which is aimed at WordPress users, builders, and contributors of all levels. The podcast &#8211; which is available on all major platforms, will include overviews of WordPress philosophy, community success stories, and major updates. </li><li>The Plugin team has added a requirement that <a href=\"https://make.wordpress.org/plugins/2021/01/26/reminder-plugins-must-not-interfere-with-updates/\">plugins in the WordPress repository must not make changes to the default auto-update settings on a site</a>. The only exception to this requirement is for those plugins that manage auto-updates.</li><li><a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> — a regional online WordCamp has begun. It’s running over three weekends and started with <a href=\"https://india.wordcamp.org/2021/workshops/\">Multilingual workshop sessions on January 30 and 31</a>. The workshops <a href=\"https://india.wordcamp.org/2021/workshops/\">can be found on the event site</a> and will soon be featured on <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. <a href=\"https://india.wordcamp.org/2021/tickets/\">Tickets are still available</a> for the event —which will have a contribution event on February 6-7, followed by sessions on February 13th and 14th. </li><li>The WordPress Foundation has <a href=\"https://wordpressfoundation.org/2021/do_action-hackathons-and-open-source-workshops-in-2021/\">invited applications for online do_action hackathons and encouraged folks to organize online open-source workshops</a> in 2021.</li><li>The Themes Team shared a post on the usage of the “Report this theme” button in 2020. The team is also <a href=\"https://make.wordpress.org/themes/2021/01/25/call-for-maintainers-theme-unit-test/\">looking for maintainers</a> for its <a href=\"https://codex.wordpress.org/Theme_Unit_Test\">Theme unit test</a>.</li><li>The Meta Team has launched an initiative to <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">facilitate automated theme testing</a> and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">requesting feedback</a>.</li><li>Members of the Core Team are <a href=\"https://make.wordpress.org/core/2021/01/14/stale-issues-in-gutenberg-repository/\">considering a “stale bot”</a> to close out stale issues in the Gutenberg GitHub repository.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.7 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Feb 2021 22:31:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9599\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"WordPress 5.7 Beta 1 is now available for testing! ? This software is still in development,&#160;so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.7 Beta 1 in two ways: Install/activate the WordPress Beta Tester [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7831:\"\n<p>WordPress 5.7 Beta 1 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 1 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the&nbsp;<code>Bleeding edge</code>&nbsp;channel and the&nbsp;<code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta1.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>five weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<p>So what’s new? <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f914.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<h2><strong>Improvements in Core</strong></h2>\n\n\n\n<p><strong>Lazy-load iframes</strong><br>Now you can enable lazy-loading of iframes by adding the <code>loading=\"lazy\"</code> attribute to iframe tags on the front-end.&nbsp;</p>\n\n\n\n<p><strong>Migrating from HTTP to HTTPS is streamlined</strong><br>Switching a WordPress site from HTTP to HTTPS has proven to be a pain for all involved. While on the surface, the Site Address and WordPress Address have to be updated, content with embedded HTTP URLs remains unchanged in the database. With this release, migrating a site to HTTPS is now a one-click interaction. URLs in the database are automatically replaced when the Site and WordPress Address are both using HTTPS.&nbsp; Also, Site Health now includes an HTTPS status check.</p>\n\n\n\n<p><strong>Standardize colors used in WP-Admin CSS to a single palette</strong><br>This change collapses all colors used in the CSS to one of the available shades of blue, green, red, yellow, grey, black, and white. The palette makes it simpler than ever to build components your users can read, because half the range gives you great contrast with white type and a half with black, according to current accessibility guidelines.</p>\n\n\n\n<p><strong>Ongoing cleanup after update to jQuery 3.5.1</strong><br>jQuery deprecations in WordPress Core and bundled themes show up a lot less often, and the notifications make more sense to the user.</p>\n\n\n\n<p><strong>New Robots API</strong><br>The new Robots API allows the filter directives to be included in the ‘robots’ meta tag. Also, the directive <code>max-image-preview:large</code> is now included by default to allow large image previews to be displayed in search engines (unless the blog is marked as not being public).</p>\n\n\n\n<h2><strong>Improvements in the Editor</strong></h2>\n\n\n\n<ul><li>Inserter drag and drop: Blocks and block patterns can now be dragged directly from the inserter into the post canvas.</li><li>Full height alignment: Blocks such as the Cover block now can have an option to expand to fill the entire viewport.</li><li>Block variations: The icon and description of a block variation is now shown in the block inspector, and a new dropdown in the block inspector lets you switch between block variations.</li><li>Reusable blocks: Several enhancements to the usability and stability of reusable blocks have been made, and reusable blocks are now saved at the same time that the post is saved.</li><li>Buttons block: The Buttons block now supports vertical alignments, and you can set the width of a button to a preset percentage.</li><li>Social Icons block: You can now change the size of the icons in the Social Icons block.</li><li>Font size in more places: You can now change the font size in the List and Code blocks.</li><li>Many many other enhancements and bug fixes. To see all of the features for each release in detail check out the Gutenberg release posts: <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">9.3</a>, <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">9.4</a>, <a href=\"https://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">9.5</a>, <a href=\"https://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a>, <a href=\"https://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">9.7</a>, <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">9.8</a>, and 9.9 (link forthcoming).</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=..02%2F03%2F2021&amp;milestone=5.7&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">143 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=..02%2F03%2F2021&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.7&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\">68 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricker</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, and <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> for your peer revisions and <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, and <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> for final review on this exciting news.</em></p>\n\n\n\n<p>____________________________________</p>\n\n\n\n<p><em>New Year, new goals<br>Each day, one small step<br>It’s the little things&#8230;</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Thelma Mutete\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/01/people-of-wordpress-thelma-mutete/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 16:40:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"ContributorStory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"Web developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9518\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"From writing her first line of code when she was 16, Thelma Mutete knew she wanted to work in IT. She shares her journey in web development and her discovery of WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8707:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of those lesser-known, amazing stories.</em></p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/01/Thelma-Mutete.jpg?resize=500%2C750&#038;ssl=1\" alt=\"Thelma Mutete at a WordCamp\" class=\"wp-image-9564\" width=\"500\" height=\"750\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/01/Thelma-Mutete.jpg?w=667&amp;ssl=1 667w, https://i1.wp.com/wordpress.org/news/files/2021/01/Thelma-Mutete.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>From a young age Thelma was encouraged by her father to ‘work hard, and dream big’. In High School, she pursued a career in Computer Science. She said: “I did not know what I would be doing or how I would get there but I just knew that I was going to pursue a career in information technology.”</p>\n\n\n\n<p>She wrote her first line of code at the age of 16 living in Zimbabwe, Africa. This was to mark the beginning of her enthusiasm for computer programming.</p>\n\n\n\n<p>When she joined the school’s computer class, Thelma thought she would learn Excel and Word. Instead, the assignment was to write her first program in C. She said: “It was not easy, but it was very exciting. l remember writing up simple code for a Video Club – a check-in/out for VHS tapes and CDs. Thus began my fascination with computers.”</p>\n\n\n\n<p>Seven years later, she went on to university to study for a Bachelors in Business Management and Information Technology. Her third year internship was at a local web design and hosting company. Though she had hoped her placement would be at a local bank or telecommunications company, the chance to discover website design turned out to be the best thing that could have happened.&nbsp;</p>\n\n\n\n<p>In 2017, Thelma went on to work for a company designing websites using HTML, CSS, PHP, JavaScript and Joomla. She had heard about WordPress but had not used it. She recalls: “People have this misconception that WordPress is not for real developers and it is not secure and at that time I was one of those people.”</p>\n\n\n\n<h2>Finding a local community</h2>\n\n\n\n<p>From a discussion with a member of the local WordPress community, <a href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\">Thabo Tswana</a>, about a striking swag gift from a WordCamp, Thelma’s interest was sparked.&nbsp;</p>\n\n\n\n<p>She started to find out more about WordPress and WooCommerce, and visited her local WordCamp Harare website. She was delighted to find that she could learn more about WordPress without needing any pre-existing knowledge, and wanted to be involved. So instead of just attending the camp, she volunteered too!&nbsp;</p>\n\n\n\n<p>Her response to her first WordPress event mirrors the experience of many others in the community. She said: “I only started using WordPress because of the awesome people that l had met at that WordCamp. Everyone was so welcoming.”</p>\n\n\n\n<p>A week later, with help from Thabo, she designed her first website using WordPress.</p>\n\n\n\n<p>She soon became more involved with the community and Meetups. Thelma participated in the first-ever ‘Women Who WordPress’ Meetup in 2018, with lots of women getting involved from bloggers to developers.&nbsp;</p>\n\n\n\n<p>She said: “We were free to talk and discuss a lot of things. We had more time to discuss the difference between WordPress.com and WordPress.org, we shared views on how to handle discrimination at work, how to promote your website and a whole lot of other things.”</p>\n\n\n\n<h2>Establishing roots in WordPress</h2>\n\n\n\n<p>In 2018, WordCamp Harare had its first-ever female Lead Organizer <a href=\"https://tapiwanashe.com/\">Tapiwanashe Manhobo</a>. Thelma was part of the organising team that year and was assigned to handle Harare’s first Kids Camp to take place eight months later. You can read more about her experiences of organizing a <a href=\"https://thelmachido.wordpress.com/2019/11/21/wordpress-juniours-first-edition/\"><strong>Kids Camp</strong></a> on her blog.</p>\n\n\n\n<p>She said: “After the first Kids Camp, we had several people in the local Zimbabwean WordPress community who were enthusiastic about encouraging young people to embrace ICT. In 2019, we had not planned to have a Kids Camp because of financial constraints but to our surprise, we had some anonymous donations and we managed to have a WordPress Community outreach to a youth centre, <a href=\"https://cttzim.org/\"><strong>Centre for Total Transformation</strong></a>, a week after our WordCamp. It is a non-formal school that caters for underprivileged and vulnerable children. The group were able to share practical skills about using WordPress, computer hardware and software.</p>\n\n\n\n<p>Thelma shares that she became hooked on WordPress because of its community. “I enjoy attending WordCamps, meeting new people and just learning new stuff. I have a huge list of WordCamps I would like to attend. Last year I managed to cross WordCamp Johannesburg off my list. When everything is back to normal my plan to travel to WordCamps will proceed (fingers crossed).”</p>\n\n\n\n<h2>Reaping the fruits of ongoing learning</h2>\n\n\n\n<p>Thelma is committed to ongoing development training. She said: “Even though I can still cook up code in C and Java, for now, I have also included WordPress PHP functions to the mix. It was not easy to get to this point, daring myself got me to this slightly better stage. I try to do my best where I can and I am happy to say it has paid off so far.”</p>\n\n\n\n<p>Thelma has continued her journey working in design and digital marketing last year with Trust Nhokovenzo who works in digital marketing and is active in&nbsp; the WordPress Community. He came across her name as a developer from talking with others involved in WordPress. She went to work with his team at a marketing agency.</p>\n\n\n\n<p>Her interest in the development of WordPress continued and she joined the <a href=\"https://wordpress.org/news/2020/12/simone/\">5.6 Release Squad</a> in the mid 2020.&nbsp;At the end of 2020, she moved to become a Happiness Engineer working with WordPress.com. Thelma’s fascination with the platform and the community continues to grow and her contributor story is ongoing.</p>\n\n\n\n<p>Find out more about the <a href=\"https://www.meetup.com/Harare-WordPress-Meetup\">Harare WordPress community</a> in Zimbabwe.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>) and Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>), and Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>). Thank you to Thelma Mutete (<a href=\'https://profiles.wordpress.org/thelmachido/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thelmachido</a>) for sharing her #ContributorStory.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh4.googleusercontent.com/s24EVZGKbxVeafljPU1ubF1DjIwn98E3-wGx1LD2CWYk7zYQppFhXNpb0aUhGe01TStMdTwXrcYaxBZQHRgZJ10lvW2hsg61Ce37_pBGJuTRQlJ6r9iUxlJtvuDuwLhIvPo1MVEb\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on </em><a href=\"https://heropress.com/essays/hello-world-discovering-the-world-through-wordpress/\"><em>an article originally published on HeroPress.com</em></a><em>, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. HeroPress highlights people in the WordPress community</em>.</p>\n\n\n\n<p>#ContributorStory #HeroPress</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: December 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2021/01/the-month-in-wordpress-december-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 10:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9508\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"We bid goodbye to 2020 in style with the release of WordPress 5.6 and the launch of Learn WordPress. But these weren’t the only exciting updates from WordPress in December. Read on to learn more! WordPress 5.6 is here The latest major WordPress release, version 5.6 “Simone”, came out on December 8. The release ships [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11612:\"\n<p>We bid goodbye to 2020 in style with the release of WordPress 5.6 and the launch of Learn WordPress. But these weren’t the only exciting updates from WordPress in December. Read on to learn more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 is here</h2>\n\n\n\n<p>The latest major WordPress release,<a href=\"https://wordpress.org/news/2020/12/simone/\"> version 5.6</a> “Simone”, came out on December 8. The release ships with a new default theme called <a href=\"https://wordpress.org/themes/twentytwentyone/\">Twenty Twenty One</a>. It offers a host of features, including:</p>\n\n\n\n<ul><li>Greater layout flexibility</li><li>More block patterns</li><li>Video captioning support</li><li>Auto-updates</li><li>Beta-compatibility for PHP 8.0</li><li>Application password support for the REST API</li><li>Updates to jQuery</li></ul>\n\n\n\n<p>In addition, WordPress 5.6 is now available in 55 languages. You can find more information about the release in the <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">field guide</a>, and you can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it directly from WordPress.org. A total of 605 people hailing from 57 different countries contributed to the development of WordPress 5.6. <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> has <a href=\"https://jeanbaptisteaudras.com/en/2020/12/wordpress-5-6-core-stats-contributions-by-country-company/\">compiled many more stats like that</a>, showing what a tremendous group effort this was—they’re well worth a read!</p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a> to learn the <a href=\"https://make.wordpress.org/core/2020/12/21/wordpress-5-7-planning-roundup/\">latest on WordPress 5.7</a>, which is <a href=\"https://wordpress.org/about/roadmap/\">slated to be out by March 9, 2021</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 a.m.</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 p.m.</a> UTC.</p>\n\n\n\n<h2>Watch the State of the Word 2020 recording</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/\">State of the Word 2020</a>, the annual keynote address delivered by WordPress co-founder Matt Mullenweg, was streamed online for the first time on December 17. It was followed by a live Q&amp;A from community members all across the world. You can find the stream recording on <a href=\"https://www.youtube.com/watch?v=QI3qCoiuG3w\">YouTube</a>, <a href=\"https://www.facebook.com/WordPress/videos/1281447442248369\">Facebook</a>, and <a href=\"https://twitter.com/i/broadcasts/1dRKZNvnrmdKB\">Twitter</a>. The <a href=\"https://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word/\">State of the Word</a> video and the <a href=\"https://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word-qa/\">Q&amp;A session</a> are also available on WordPress.tv.&nbsp;</p>\n\n\n\n<h2>Learn WordPress has launched</h2>\n\n\n\n<p>Learn WordPress, a new free, on-demand WordPress learning resource, launched officially on December 15. It offers <a href=\"https://learn.wordpress.org/workshops/\">workshops</a>, <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a>, quizzes, and <a href=\"https://learn.wordpress.org/courses/\">courses</a> for anyone interested in publishing with, building for, or contributing to WordPress. WordPress enthusiasts can also <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a> focused on specific topics to learn with and from each other.</p>\n\n\n\n<p>Want to participate in Learn WordPress? <a href=\"https://learn.wordpress.org/contribute/\">Here are four ways you can do so</a>! Additionally, contributors have <a href=\"https://make.wordpress.org/training/2020/12/03/learn-wordpress-blue-sky-thinking/\">launched a discussion</a> on the future of <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>—feel free to share your thoughts in the comments. To help promote Learn WordPress, check out the <a href=\"https://make.wordpress.org/marketing/\">Marketing Team</a>’s <a href=\"https://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">materials</a>, which detail a <a href=\"https://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">range of fun and creative ways</a> to share this new resource.</p>\n\n\n\n<h2>Give feedback on the Full Site Editing project</h2>\n\n\n\n<p>Contributor teams have kicked off the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) outreach program</a> for anyone who is building or maintaining a WordPress site so that they can give feedback on the upcoming <a href=\"https://make.wordpress.org/design/handbook/focuses/full-site-editing/\">FSE feature</a> that will be part of Gutenberg Phase 2. Your feedback will go a long way in improving FSE user flows. To participate, <a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">check out the initial testing call</a> on the <a href=\"https://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel.<br><br>Want to follow updates on the FSE project? Check out <a href=\"https://make.wordpress.org/core/2020/05/20/ways-to-keep-up-with-full-site-editing-fse/\">this blog post</a>. You can find <a href=\"https://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">2020 updates to the FSE project</a> in the Make/Core blog.</p>\n\n\n\n<h2>BuddyPress 7.0 “Filippi” and 7.10 are now available</h2>\n\n\n\n<p><a href=\"https://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">BuddyPress version 7.0</a> went live on December 9. Its features include:&nbsp;</p>\n\n\n\n<ul><li>New administration screens to manage Member and Group Types</li><li>New BP blocks for posts and pages</li><li>A default profile image for network sites</li><li>Improved BuddyPress Noveau support for the Twenty Twenty One theme.&nbsp;</li></ul>\n\n\n\n<p>A BuddyPress maintenance release (<a href=\"https://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">version 7.1</a>) launched on December 21.&nbsp;</p>\n\n\n\n<p>Want to provide feedback or suggestions for BuddyPress? Share your comments on the announcement posts for <a href=\"https://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">7.0</a> or <a href=\"https://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">7.1</a>. If you find a bug, please report it in the <a href=\"https://buddypress.org/support/\">support forums</a>.&nbsp;</p>\n\n\n\n<h2>Gutenberg 9.5 and 9.6 released</h2>\n\n\n\n<p>The Core team launched <a href=\"https://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">version 9.5</a> and <a href=\"https://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a> of Gutenberg last month. Both versions include several improvements to FSE flows, bug fixes, and feature upgrades. Version 9.5 introduces features like full height alignment and support for font sizes in the code block. Version 9.6 includes features like the ability to drag blocks from the inserter and a vertical layout for buttons.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Community team <a href=\"https://make.wordpress.org/community/2020/12/01/discussion-how-can-the-wordpress-community-return-to-hosting-safe-in-person-events/\">kicked off a discussion</a> about what the WordPress Community can do to host safe, in-person events again, in light of the continuing pandemic. </li><li>The Polyglots team published its <a href=\"https://make.wordpress.org/polyglots/2020/12/30/polyglots-team-end-of-year-post-2020/\">end-of-year post</a>, along with the <a href=\"https://make.wordpress.org/polyglots/author/evarlese/\">results of its 2020 translator survey</a>.</li><li><a href=\"https://sevilla.wordcamp.org/2020/\">WordCamp Sevilla 2020</a> was held online from December 26-29. You can catch the recorded livestream playback on <a href=\"https://www.youtube.com/c/wordpresssevilla/live\">YouTube</a>. Videos of the event will <a href=\"https://wordpress.tv/event/wordcamp-sevilla-2020/\">soon be available on WordPress.tv</a>.</li><li>WordPress project executive director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> and project co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> will be jointly hosting <a href=\"https://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">quarterly office and listening hours</a> in 2021. Sign-ups for the <a href=\"https://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">first ones in January 2021</a> are almost filled up.</li><li>The Core team <a href=\"https://make.wordpress.org/core/2020/12/02/wp-notify-project-review/\">published updates</a> on the <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a>, which seeks to <a href=\"https://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">improve the notifications system</a> in WordPress Core.</li><li>The Support team <a href=\"https://make.wordpress.org/support/2020/12/handling-potential-jquery-issues-in-wordpress-5-6/\">published a post</a> detailing jQuery issues in WordPress 5.6.</li><li><a href=\"https://india.wordcamp.org/2021/\">WordCamp India Online 2021</a> will be held over three weekends between January 30 and February 14. There will be workshops, a contributor event, and sessions (in that order). The calls for <a href=\"https://india.wordcamp.org/2021/call-for-sponsors/\">sponsors</a>, <a href=\"https://india.wordcamp.org/2021/call-for-workshops/\">workshop presenters</a>, <a href=\"https://india.wordcamp.org/2021/call-for-contributor-team-leads/\">contributor team leads</a>, and <a href=\"https://india.wordcamp.org/2021/call-for-volunteers/\">volunteers</a> are now open. Don’t forget to grab your <a href=\"https://india.wordcamp.org/2021/tickets/\">free tickets</a>!</li><li>The Documentation team <a href=\"https://make.wordpress.org/docs/2020/12/01/external-linking-policy-1st-review-of-plugin-developer-handbook/\">shared a first review</a> of its <a href=\"https://make.wordpress.org/docs/tag/external-linking-policy/\">external linking policy</a>. It is using the <a href=\"https://developer.wordpress.org/plugins/\">plugin developer handbook</a> as a test.</li></ul>\n\n\n\n<p><br><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Introducing Learn WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/news/2020/12/introducing-learn-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Dec 2020 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"learnwordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"learnwp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9444\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"Learn WordPress is a learning resource providing workshops, quizzes, courses, and lesson plans to help you to do more with WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10336:\"\n<p><strong><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a learning resource providing workshops, quizzes, courses, lesson plans, and discussion groups so that anyone, from beginners to advanced users, can learn to do more with WordPress. Learning how to use, build for, and contribute to WordPress is essential for anyone wanting to dive deeper into the software and its community.&nbsp;</strong></p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link\" href=\"https://learn.wordpress.org/\">Learn WordPress</a></div>\n</div>\n\n\n\n<p>This cross-team initiative is part of the WordPress.org network and features content from contributors from the global community. It will be updated weekly and will help connect new and existing WordPress users with the broader community while they learn.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"331\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=632%2C331&#038;ssl=1\" alt=\"\" class=\"wp-image-9457\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=1024%2C537&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=300%2C157&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=768%2C403&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=1536%2C806&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?w=1700&amp;ssl=1 1700w, https://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>What can you learn about WordPress?</h2>\n\n\n\n<p>On Learn WordPress you can find a range of material and opportunities to use at the time which works for you.</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/workshops/\"><strong>Workshops</strong></a> are practical, skills-based videos that show viewers how to do new things with WordPress, whether you publish, manage, develop with, or contribute to WordPress. Most workshops include quizzes for you to test your newly gained knowledge.</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/discussion-groups/\"><strong>Discussion groups</strong></a> provide an opportunity for further collaborative learning with participants meeting together to discuss the workshop content &#8211; they take place online, either in video calls or Slack and accommodate all time zones.</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/lesson-plans/\"><strong>Lesson plans</strong></a> are guides for facilitators to use while presenting at events or within educational environments. Facilitators will find learning objectives (telling people what they are going to learn), any prerequisite skills, assets such as screenshots and slide decks, and learning assessments.&nbsp;</p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/courses/\"><strong>Courses</strong></a> are a series of interconnected lesson plans to be presented by a facilitator that will strategically focus on defined learning outcomes. Participants can go through these courses individually or as part of a group. After completing the learning, attendees should be able to apply their skills in the real world.</p>\n\n\n\n<p>In addition to the wealth of valuable content available on Learn WordPress, the platform provides an opportunity for individuals to learn alongside other community members and become connected with a global network of WordPress users, developers, and contributors.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' width=\'632\' height=\'356\' src=\'https://www.youtube.com/embed?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent&#038;listType=playlist&#038;list=PLCVEqsAbLffeEXhn9T1yBVTMaHIMtlzFj\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe>\n</div></figure>\n\n\n\n<p><a href=\"https://www.youtube.com/playlist?list=PLCVEqsAbLffeEXhn9T1yBVTMaHIMtlzFj\">Why you should use Learn WordPress</a> &#8211; videos from our community.</p>\n\n\n\n<h2>How can you get involved?</h2>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link\" href=\"https://learn.wordpress.org/\">Start learning today!</a></div>\n</div>\n\n\n\n<p>Learn WordPress is an open-source platform available for anyone to contribute content in any areas mentioned above. <a href=\"https://learn.wordpress.org/contribute/\">Find out more about how you can get involved</a> with this initiative.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">Take part in our fun promotion campaigns</a> on social and with your local community.</p>\n\n\n\n<p><em>Hundreds of people spanning a number of years have contributed to the development of learning materials. Thanks to everyone who worked so hard to make Learn WordPress a reality.&nbsp;</em></p>\n\n\n\n<p><strong><em>Particular thanks to</em></strong>:</p>\n\n\n\n<p><strong><em>Training:</em></strong><em> <a href=\'https://profiles.wordpress.org/courane01/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courane01</a>, <a href=\'https://profiles.wordpress.org/azhiyadev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azhiyadev</a>, <a href=\'https://profiles.wordpress.org/geheren/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>geheren</a>, <a href=\'https://profiles.wordpress.org/webtechpooja/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webtechpooja</a>, <a href=\'https://profiles.wordpress.org/jessecowens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jessecowens</a>, <a href=\'https://profiles.wordpress.org/onealtr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>onealtr</a>, <a href=\'https://profiles.wordpress.org/rastaban/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rastaban</a>, <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a>, <a href=\'https://profiles.wordpress.org/manzwebdesigns/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>manzwebdesigns</a></em><br><strong><em>Meta: </em></strong><em><a href=\'https://profiles.wordpress.org/coreymckrill/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>coreymckrill</a>, <a href=\'https://profiles.wordpress.org/dufresnesteven/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dufresnesteven</a>, <em><a href=\'https://profiles.wordpress.org/jonoaldersonwp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jonoaldersonwp</a></em></em><br><strong><em>Community:</em></strong><em> <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a>, <a href=\'https://profiles.wordpress.org/camikaos/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>camikaos</a>, <a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'https://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a>, <a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a>, <a href=\'https://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a>, <a href=\'https://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a>, <a href=\'https://profiles.wordpress.org/rmarks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmarks</a>, <a href=\'https://profiles.wordpress.org/sippis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sippis</a></em><br><strong><em>Marketing: </em></strong><em><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>,  <a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, <a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>, <a href=\'https://profiles.wordpress.org/megphillips91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>megphillips91</a>, <a href=\'https://profiles.wordpress.org/marks99/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marks99</a>, <em><a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a></em></em>, <em><a href=\'https://profiles.wordpress.org/antialiasfactory/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>antialiasfactory</a>, <a href=\'https://profiles.wordpress.org/herculespekkas/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>herculespekkas</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a></em><br><strong><em>Design:</em></strong><em> <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a> </em></p>\n\n\n\n<p><em>For a fuller list of the contributors who have been involved in training and Learn WordPress, visit <a href=\"https://make.wordpress.org/community/2020/08/12/learn-wordpress-is-live/\">the initial beta launch post</a>. Thanks to everyone who has been involved to date and will be in the future.&nbsp;</em></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tag/learnwordpress\">#LearnWordPress</a> <a href=\"https://learn.wordpress.org/tag/learnwp\">#LearnWP</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 5.6 “Simone”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2020/12/simone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2020 19:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9325\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone. Fire up a playlist with her best work and read on to discover what WordPress 5.6 has in store for you. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:66195:\"\n<p>Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone, who is known for tunes like &#8220;Feeling Good&#8221;, &#8220;Young, Gifted and Black&#8221;, and &#8220;Four Women&#8221;. Fire up a playlist with her best work and read on to discover what we have in store for you. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"633\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=632%2C633&#038;ssl=1\" alt=\"WordPress 5.6 Simone with a photo of Nina Simone\" class=\"wp-image-9416\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=1022%2C1024&amp;ssl=1 1022w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=768%2C769&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">Welcome to WordPress 5.6</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">Sharing your stories has never been easier.</h3>\n</div></div>\n\n\n\n<p>WordPress 5.6 brings you countless ways to set your ideas free and bring them to life. With a brand-new default theme as your canvas, it supports an ever-growing collection of blocks as your brushes. Paint with words. Pictures. Sound. Or rich embedded media.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"234\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=632%2C234&#038;ssl=1\" alt=\"colored circles\" class=\"wp-image-9346\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=1024%2C379&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=300%2C111&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=768%2C284&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Greater layout flexibility</h3>\n\n\n\n<p>Bring your stories to life with more tools that let you edit your layout with or without code. Single column blocks, designs using mixed widths and columns, full-width headers, and gradients in your cover block—make small changes or big statements with equal ease!</p>\n\n\n\n<h3>More block patterns</h3>\n\n\n\n<p>In some themes, preconfigured block patterns make setting up standard pages on your site a breeze. Let the power of patterns streamline your workflow and save you clicks. Plus, share these features with clients, editors, and more.</p>\n\n\n\n<h3>Better video captioning</h3>\n\n\n\n<p>To help you add subtitles or captions to your videos, you can now upload them within your post or page. This makes it easier than ever to make your videos accessible for anyone who needs or prefers to use subtitles.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"120\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=632%2C120&#038;ssl=1\" alt=\"black vertical line\" class=\"wp-image-9347\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=1024%2C194&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=300%2C57&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=768%2C146&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Twenty Twenty-One is here!</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"714\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=632%2C714&#038;ssl=1\" alt=\"Examples of block patterns available in Twenty Twenty-One.\" class=\"wp-image-9426\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=907%2C1024&amp;ssl=1 907w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=266%2C300&amp;ssl=1 266w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=768%2C867&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1360%2C1536&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1814%2C2048&amp;ssl=1 1814w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1975&amp;ssl=1 1975w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Twenty Twenty-One is a blank canvas for your ideas, and the block editor is the best brush. It is built for the block editor and packed with brand-new block patterns you can only get in the default themes. Try different layouts in a matter of seconds, and let the theme’s eye-catching, yet timeless design make your work shine.&nbsp;</p>\n\n\n\n<p>What’s more, this default theme puts accessibility at the heart of your website. It conforms to the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">WordPress accessibility-ready guidelines</a> and addresses several more specialized standards from the <a href=\"https://www.w3.org/WAI/WCAG2AAA-Conformance\">Web Content Accessibility Guidelines (WCAG) 2.1 at level AAA</a>. It will help you meet the highest level of international accessibility standards when you create accessible content and choose plugins which are accessible too!</p>\n\n\n\n<h3>A rainbow of soft pastels</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"167\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=632%2C167&#038;ssl=1\" alt=\"A mobile screenshot of each included color palette in Twenty Twenty-One, going in ROYGBIV order.\" class=\"wp-image-9424\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1024%2C270&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=300%2C79&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=768%2C202&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1536%2C405&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=2048%2C540&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Perfect for a new year, Twenty Twenty-One gives you a range of pre-selected color palettes in pastel, all of which conform to AAA standards for contrast. You can also choose your own background color for the theme, and the theme chooses accessibility-conscious text colors for you — automatically!</p>\n\n\n\n<p>Need more flexibility than that? You can also choose your own color palette from the color picker.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"151\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=632%2C151&#038;ssl=1\" alt=\"colored circles\" class=\"wp-image-9351\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=1024%2C245&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=300%2C72&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=768%2C183&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Improvements for everyone</h2>\n\n\n\n<h3>Expanding auto-updates</h3>\n\n\n\n<p>For years, only developers have been able to update WordPress automatically. But now you have that option, right in your dashboard. If this is your first site, you have auto-updates ready to go, right now! Upgrading an existing site? No problem! Everything is the same as it was before.</p>\n\n\n\n<h3>Accessibility Statement&nbsp;</h3>\n\n\n\n<p>Even if you’re not an expert, you can start letting others know about your site’s commitment to accessibility! The new <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">feature plugin</a> includes template copy for you to edit and publish, and it’s written to support different contexts and jurisdictions.&nbsp;&nbsp;</p>\n\n\n\n<h3>Built-in Patterns</h3>\n\n\n\n<p>If you’ve not had the chance to play with block patterns yet, all default themes now feature a range of block patterns that let you master complex layouts with minimal effort. Customize the patterns to your liking with the copy, images, and colors that fit your story or brand.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"185\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=632%2C185&#038;ssl=1\" alt=\"colored and textured rectangles\" class=\"wp-image-9352\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=1024%2C300&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=300%2C88&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=768%2C225&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>For developers</h2>\n\n\n\n<h3>REST API authentication with Application Passwords</h3>\n\n\n\n<p>Thanks to the API’s new Application Passwords authorization feature, third-party apps can connect to your site seamlessly and securely. This new REST API feature lets you see what apps are connecting to your site and control what they do.&nbsp;</p>\n\n\n\n<h3>More PHP 8 support</h3>\n\n\n\n<p>5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services, and sites can support the latest PHP version. For more information about what to expect next, <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">read the PHP 8 developer note</a>.</p>\n\n\n\n<h3>jQuery</h3>\n\n\n\n<p>Updates to jQuery in WordPress take place across three releases 5.5, 5.6, and 5.7. As we reach the mid-point of this process, <a href=\"https://wordpress.org/plugins/wp-jquery-update-test/\">run the update test plugin to check your sites for errors</a> ahead of time.&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>If you find issues with the way your site looks ( e.g. a slider doesn’t work, a button is stuck — that sort of thing), install <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">the jQuery Migrate plugin</a>.</p>\n\n\n\n<h3>Check out the Field Guide</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">Read about the latest version of WordPress in this guide.</a> It highlights developer notes for each change in the release.&nbsp;</p>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">“It’s a new day, it’s a new life for me&#8230;.and I’m feeling good.”</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">~Nina Simone</h3>\n</div></div>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.6 release comes to you from an all-women and non-binary identifying release squad:  </p>\n\n\n\n<ul><li><strong>Release Lead:</strong> Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>).&nbsp; Cohort: Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Angela Jin (<a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a>).</li><li><strong>Release Coordinator:</strong> Dee Teal (<a href=\"https://profiles.wordpress.org/thewebprincess/\">@thewebprincess</a>).&nbsp; Cohort: Thelma Mutete (<a href=\"https://profiles.wordpress.org/thelmachido/\">@thelmachido</a>) and Laura Nelson (<a href=\"https://profiles.wordpress.org/laurora/\">@laurora</a>).</li><li><strong>Triage Lead:</strong> Tonya Mork (<a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>).&nbsp;</li><li><strong>Core Tech Lead:</strong> Helen Hou-Sandì (<a href=\"https://profiles.wordpress.org/helen/\">@helen</a>).&nbsp; Cohort: Amy Kamala (<a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a>) and Ebonie Butler (<a href=\"https://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>).</li><li><strong>Editor Tech Lead:</strong> Isabel Brison (<a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a>).&nbsp; Cohort: Chandrika Guntur (<a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>), Anchen le Roux (<a href=\"https://profiles.wordpress.org/anchenlr/\">@anchenlr</a>), and Rebecca Hum (<a href=\"https://profiles.wordpress.org/rebasaurus/\">@rebasaurus</a>).</li><li><strong>Design Leads:</strong> Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>) and Tammie Lister (<a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a>).&nbsp; Cohort: Anyssa Ferreira (<a href=\"https://profiles.wordpress.org/anyssa/\">@anyssa</a>), Estela Rueda (<a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>), Tracy Apps (<a href=\"https://profiles.wordpress.org/tray/\">@tray</a>), and Sophia DeRosia (<a href=\"https://profiles.wordpress.org/eringoblog/\">@eringoblog</a>).</li><li><strong>Design Tech Lead:</strong> Shital Marakana (<a href=\"https://profiles.wordpress.org/shital-patel/\">@shital-patel</a>).</li><li><strong>Accessibility Lead:</strong> Sarah Ricker (<a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricke<strong>r</strong></a>).&nbsp;Cohort: Hauwa Abashiya (<a href=\"https://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>).</li><li><strong>Marketing &amp; Communications Leads:</strong> Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>).&nbsp;Cohort: Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\">@ogleckler</a>), Larissa Murrillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Michelle Frechette (<a href=\"https://profiles.wordpress.org/michelleames/\">@michelleames</a>), Breann McDede (<a href=\"https://profiles.wordpress.org/bmcdede/\">@bmcdede</a>), and Afshana Diya (<a href=\"https://profiles.wordpress.org/afshanadiya/\">@afshanadiya</a>).</li><li><strong>Documentation Lead: </strong>Shawntelle Coker (<a href=\"https://profiles.wordpress.org/sncoker/\">@sncoker</a>). Cohort: Daisy Olsen (<a href=\"https://profiles.wordpress.org/daisyo/\">@DaisyO</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Winstina Hughes (<a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>).</li><li><strong>Documentation Review Lead:</strong> Michele Butcher-Jones (<a href=\"https://profiles.wordpress.org/m_butcher/\">@m_butcher</a>).&nbsp; Cohort: Nidhi Jain (<a href=\"https://profiles.wordpress.org/jainnidhi/\">@jainnidhi</a>), Laura Byrne Cristiano (<a href=\"https://wordpress.org/support/users/newyorkerlaura/\">@newyorkerlaura</a>).</li><li><strong>Default Theme Design Lead:</strong> Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\">@melchoyce</a>).&nbsp; Cohort: Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>).</li><li><strong>Default Theme Development Lead:</strong> Carolina Nymark (<a href=\"https://profiles.wordpress.org/poena/\">@poena</a>).&nbsp; Cohort: Kelly Choyce-Dwan (<a href=\"https://profiles.wordpress.org/ryelle/\">@ryelle</a>) and Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Default Theme Wrangler:</strong> Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Test Lead:</strong> Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\">@monikarao</a>).&nbsp; Cohort: Allie Nimmons (<a href=\"https://profiles.wordpress.org/alliennimmons/\">@alliennimmons</a>).</li><li><strong>Support Lead:</strong> Bet Hannon (<a href=\"https://profiles.wordpress.org/bethannon1/\">@bethannon1</a>).</li></ul>\n\n\n\n<p>As always, this release reflects the hard work of 605 generous volunteer contributors. They collaborated on nearly 350 tickets on Trac and over 1,000 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a>, <a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/a5hleyrich/\">A5hleyRich</a>, <a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/pokhriyal/\">Abhishek Pokhriyal</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/adriandegrafreak/\">Adri&#225;n de Grafreak</a>, <a href=\"https://profiles.wordpress.org/adriantirusli/\">Adrianti Rusli</a>, <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/elgameel/\">Ahmed Elgameel</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/ajensen/\">ajensen</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/aktasfatih/\">aktasfatih</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/alexstandiford/\">Alex Standiford</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/alliennimmons/\">Allie Nimmons</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"https://profiles.wordpress.org/anchenlr/\">Anchen le Roux</a>, <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andr&#233; Maneiro</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/baicusandrei/\">Andrei Baicus</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/andystitt829/\">Andy Stitt</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/anuj2/\">anuj2</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/archduck/\">archduck</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arippberger/\">arippberger</a>, <a href=\"https://profiles.wordpress.org/arjendejong/\">arjendejong</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/akkspro/\">Arslan Ahmed Kalwar</a>, <a href=\"https://profiles.wordpress.org/asvinballoo/\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/austyfrosty/\">Austin Passy</a>, <a href=\"https://profiles.wordpress.org/austin880625/\">austin880625</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/ayesh/\">ayesh</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/benmeredithgmailcom/\">Ben Meredith</a>, <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bethannon1/\">Bet Hannon</a>, <a href=\"https://profiles.wordpress.org/bethsoderberg/\">Beth Soderberg</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/hareshlive/\">Bhagvan Mangukiya</a>, <a href=\"https://profiles.wordpress.org/bhautikvirani/\">bhautikvirani</a>, <a href=\"https://profiles.wordpress.org/bananastalktome/\">Billy S</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boldgrid/\">BoldGrid</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/bmcdede/\">Breann McDede</a>, <a href=\"https://profiles.wordpress.org/bmillersw/\">Brent Miller</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calin/\">Calin Don</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/campusboy1987/\">campusboy</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/carolinegeven/\">Caroline</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chadreitsma/\">Chad Reitsma</a>, <a href=\"https://profiles.wordpress.org/cguntur/\">Chandrika Guntur</a>, <a href=\"https://profiles.wordpress.org/cpapazoglou/\">Charalampos Papazoglou</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/alexandec/\">Chris Alexander</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/ctmartin0/\">Christian Martin</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claudiulodro/\">Claudiu Lodromanean</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a>, <a href=\"https://profiles.wordpress.org/cranewest/\">cranewest</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/ctmartin/\">ctmartin</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">D&#225;vid Szab&#243;</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a>, <a href=\"https://profiles.wordpress.org/dantahoua/\">dantahoua</a>, <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidjlaietta/\">David Wolfpaw</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/p00ya/\">Dean</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris (Demetris Kikizas)</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/designer023/\">Designer023</a>, <a href=\"https://profiles.wordpress.org/dfenton/\">dfenton</a>, <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dharmin16/\">Dharmin Shah</a>, <a href=\"https://profiles.wordpress.org/dhruvin/\">Dhruvin</a>, <a href=\"https://profiles.wordpress.org/dhulwells/\">Dhul Wells</a>, <a href=\"https://profiles.wordpress.org/dietpawel/\">dietpawel</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/djzone/\">DjZoNe</a>, <a href=\"https://profiles.wordpress.org/dogwithblog/\">dogwithblog</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donsony/\">donsony</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/erikjandelange/\">erikjandelange</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/eringoblog/\">eringoblog</a>, <a href=\"https://profiles.wordpress.org/eroraghav/\">eroraghav</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/thegp/\">EugeneBos</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">Evangelos Athanasiadis</a>, <a href=\"https://profiles.wordpress.org/fabifott/\">Fabian</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/ferkho/\">Ferenc Forgacs</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/flymike/\">flymike</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/subscriptiongroup/\">George</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/glauberglauber/\">Glauber Mota</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldenapples/\">goldenapples</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a>, <a href=\"https://profiles.wordpress.org/guidooffermans/\">guidooffermans</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/isharis/\">Haris Zulfiqar</a>, <a href=\"https://profiles.wordpress.org/harrym/\">harrym</a>, <a href=\"https://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hoasi/\">HoaSi</a>, <a href=\"https://profiles.wordpress.org/hongnizzle/\">Hong Nga Nguyen</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ifnoob/\">ifnoob</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/gsayed786/\">Imran Sayed</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"https://profiles.wordpress.org/ireneyoast/\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"https://profiles.wordpress.org/jamescollins/\">James Collins</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jaredcobb/\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a>, <a href=\"https://profiles.wordpress.org/jellypixel/\">jellypixel</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jeslen/\">Jeslen Bucci</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jfoulquier/\">jfoulquier</a>, <a href=\"https://profiles.wordpress.org/jimyaghi/\">jimyaghi</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelyoder/\">Joel Yoder</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseaneto/\">joseaneto</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshlevinson/\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karthikbhatb/\">Karthik Bhat</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/kelsu02/\">Kelly R</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/kellylawrence/\">kellylawrence</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kipperlenny/\">Kipperlenny</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjbenk/\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/komagain/\">komagain</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/latifi/\">latifi</a>, <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"https://profiles.wordpress.org/laurora/\">Laura Nelson</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/leutrimh/\">Leutrim Husaj</a>, <a href=\"https://profiles.wordpress.org/limera1n/\">lim3ra</a>, <a href=\"https://profiles.wordpress.org/lpointet/\">Lionel Pointet</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/llizard/\">llizard</a>, <a href=\"https://profiles.wordpress.org/louislaugesen/\">Louis</a>, <a href=\"https://profiles.wordpress.org/lucagrandicelli/\">Luca Grandicelli</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lumne/\">Lumne</a>, <a href=\"https://profiles.wordpress.org/mager19/\">mager19</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/shamimmoeen/\">Mainul Hassan Main</a>, <a href=\"https://profiles.wordpress.org/majhajob/\">majhajob</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/manzwebdesigns/\">manzwebdesigns</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/marks99/\">Mark Smallman</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/mattoperry/\">mattoperry</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/mgrenierfarmmedia/\">mgrenierfarmmedia</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikelopez/\">mikelopez</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/eemitch/\">Mitchell Bennis</a>, <a href=\"https://profiles.wordpress.org/mmarco9/\">mmarco9</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mopsyd/\">mopsyd</a>, <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/musicaljoeker/\">musicaljoeker</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/n5hzr/\">n5hzr</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/navanathbhosale/\">Navanath Bhosale</a>, <a href=\"https://profiles.wordpress.org/naveenkharwar/\">Naveen Kharwar</a>, <a href=\"https://profiles.wordpress.org/lcyh78/\">Neil James (lcyh78)</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/arealnobrainer/\">Netravnen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikolam/\">Nikola</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/njbrown/\">njbrown</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/noahshrader/\">noahshrader</a>, <a href=\"https://profiles.wordpress.org/nourma/\">nourma</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/oolleegg55/\">oolleegg55</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovenall/\">ovenall</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/jhonqwerty/\">pabloselin</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pekz0r/\">Peter Elmered</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/decrecementofeliz/\">Pilar Mera</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/pishmishy/\">pishmishy</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/prashanttholia/\">prashanttholia</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redstar504/\">redstar504</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">ribaricplusplus</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roikles/\">roikles</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/saqibameen/\">Saqib Ameen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sawanoboly/\">sawanoboly</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/l3rady/\">Scott Cariss</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/senning/\">Senning</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/sncoker/\">Shawntelle Coker</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shramee/\">shramee</a>, <a href=\"https://profiles.wordpress.org/sresok/\">Simon Resok</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sproutchris/\">sproutchris</a>, <a href=\"https://profiles.wordpress.org/stulab/\">St&#233;phane Treilhou</a>, <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/garubi/\">Stefano Garuti</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/sudoshreyansh/\">sudoshreyansh</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/techboyg5/\">techboyg5</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/thefarlilacfield/\">thefarlilacfield</a>, <a href=\"https://profiles.wordpress.org/thelmachido/\">Thelma Mutete</a>, <a href=\"https://profiles.wordpress.org/thib3113/\">thib3113</a>, <a href=\"https://profiles.wordpress.org/thijsvanloef/\">thijsvanloef</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomaslhotta/\">thomaslhotta</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a>, <a href=\"https://profiles.wordpress.org/tray/\">tracy apps</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, <a href=\"https://profiles.wordpress.org/treibstoff/\">treibstoff</a>, <a href=\"https://profiles.wordpress.org/trisha_cornelius/\">Trisha Cornelius</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/tzafrir/\">tzafrir</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/uxkai/\">uxkai</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/contact-banker/\">Varun Sharma</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/ravivaddweb/\">vidhiaddweb</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, <a href=\"https://profiles.wordpress.org/vinita29/\">Vinita Tandulkar</a>, <a href=\"https://profiles.wordpress.org/usestrict/\">Vinny</a>, <a href=\"https://profiles.wordpress.org/virgodesign/\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/webmigrates/\">Webmigrates Technologies</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"https://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, and <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>.\n\n\n\n<p></p>\n\n\n\n<p>In addition, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who helped make WordPress 5.6. available in 38 languages at the time of release. Our community translators are hard at work ensuring more languages are on their way (70 are already at 90%). If contributing to WordPress appeals to you, it’s easy to learn more. Check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2020/12/state-of-the-word-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Dec 2020 22:55:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9296\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"State of the Word will be streamed on Facebook, YouTube, and Twitter on Thursday, Dec 17th, 2020  at 1600 UTC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1225:\"\n<p>State of the Word is an annual keynote address delivered by the project co-founder, Matt Mullenweg. Catch this year&#8217;s keynote in the video below!</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' width=\'632\' height=\'356\' src=\'https://www.youtube.com/embed/QI3qCoiuG3w?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe>\n</div></figure>\n\n\n\n<h3>New to State of the Word?</h3>\n\n\n\n<p>If this is your first time hearing of this talk, you’re in luck! Check out previous recordings below.</p>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 &#8211; WordCamp US, St. Louis</a></li><li><a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 &#8211; WordCamp US, Nashville</a></li><li><a href=\"https://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9296\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: November 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2020/12/the-month-in-wordpress-november-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Dec 2020 09:13:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9283\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:304:\"November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world! WordPress 5.6 updates The Core team released WordPress 5.6 Beta 3 on Nov. 2, Beta 4 on Nov. 12, release candidate 1 on Nov. 17, and release candidate 2 on Dec. 1. You [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10892:\"\n<p>November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 updates</h2>\n\n\n\n<p>The Core team released WordPress 5.6 <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">Beta 3</a> on Nov. 2, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\">Beta 4</a> on Nov. 12, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-release-candidate/\">release candidate</a> 1 on Nov. 17, and <a href=\"https://wordpress.org/news/2020/12/wordpress-5-6-release-candidate-2/\">release candidate 2</a> on Dec. 1. You can test the Beta versions and the release candidates by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or by using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. Check out the <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 field guide</a> to understand the features of WordPress 5.6 and learn how you can incorporate them into your websites. WordPress 5.6 <a href=\"https://make.wordpress.org/core/5-6/\">will be out by Dec. 9, 2020</a>. </p>\n\n\n\n<p>But our work is never done: You can submit <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">feature suggestions for WordPress 5.7</a> by Dec. 15.&nbsp;</p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress Core dev chats on Wednesdays at 5 a.m. and 8 p.m. UTC in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-chat/\">catch up with recaps</a> on the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. If you would like to help with WordPress 5.6 outreach, contact the <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.3 and 9.4 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">Version 9.3</a> on Nov. 4 and <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">Version 9.4</a> on Nov. 18. Both versions include&nbsp; several improvements to Full Site Editing (FSE) flows, in addition to bug fixes and feature upgrades. Version 9.3 is the first release that isn’t included entirely in WordPress 5.6; the version automatically enables FSE experiments when a block-based theme is active. Version 9.4 introduces some new features like percentage width for button blocks, block variation transformations, social icon support, and font size support for the list block. You can find out more about the Gutenberg roadmap in the <a href=\"https://make.wordpress.org/core/2020/11/02/whats-next-in-gutenberg-november-2020/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress updates</h2>\n\n\n\n<p>WordPress contributor teams are all set to launch <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> in December. Community members can now watch<a href=\"https://learn.wordpress.org/workshops\"> video workshops</a> to learn about various WordPress topics, <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a>, and use <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a> for organizing their own workshops. Contributor teams have launched <a href=\"https://make.wordpress.org/community/2020/11/18/quizzes-are-now-live-on-learn-wordpress/\">quizzes</a> and are also working on <a href=\"https://make.wordpress.org/community/2020/11/18/standards-for-learn-wordpress-workshop-content/\">setting standards</a> for workshops.<br></p>\n\n\n\n<p>Want to contribute to Learn WordPress? You can now submit a <a href=\"https://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in languages other than English are welcome!), apply to become a <a href=\"https://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"https://make.wordpress.org/training/2020/11/25/high-priority-items-before-learn-wordpress-org-launch-part-2/\">help fix issues with existing lesson plans</a>.</p>\n\n\n\n<h2>WordPress 5.6 Translations and Polyglots survey</h2>\n\n\n\n<p>WordPress 5.6 is ready to be translated and is now at <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>. If you would like to contribute, <a href=\"https://make.wordpress.org/polyglots/2020/11/07/wordpress-5-6-ready-to-be-translated/\">check out these instructions</a> and ensure that <a href=\"https://make.wordpress.org/polyglots/handbook/translating/packaging-localized-wordpress/automated-release-packages/\">your locale is ready for an automated release</a>. The Polyglots team has also kicked off its <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">translator research survey</a>. Please <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">participate in the survey</a>, share the <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">survey link</a> with members of your locale, and help amplify the <a href=\"https://www.facebook.com/WPTranslationDay/posts/1275404086174610\">Facebook</a>, <a href=\"https://twitter.com/TranslateWP/status/1333342595913834496\">Twitter</a>, and <a href=\"https://www.linkedin.com/posts/wptranslationday_makewordpress-wordpress-activity-6739110862650523648-fX8R/\">LinkedIn</a> posts about it.</p>\n\n\n\n<p>Want to help WordPress speak your language? Follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://www.php.net/releases/8.0/en.php\">PHP 8</a> is out, and WordPress 5.6 <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">aims to be &#8220;beta-compatible&#8221; with the latest PHP version</a>.</li><li>Contributor teams have kicked off <a href=\"https://make.wordpress.org/themes/2020/11/18/theme-previews-in-the-time-of-blocks/\">an ongoing discussion on starter content for WordPress themes</a>. Starter content for the <a href=\"http://wp-themes.com/twentytwentyone/\">Twenty Twenty One</a>, <a href=\"http://wp-themes.com/twentytwenty/\">Twenty Twenty</a>, and <a href=\"http://wp-themes.com/twentyseventeen/\">Twenty Seventeen</a> themes are now available.</li><li>The Accessibility team is <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">testing a tool</a> to generate the structure of an accessibility statement for WordPress websites based on <a href=\"https://www.w3.org/WAI/planning/statements/generator/#create\">W3C standards</a>, and it is <a href=\"https://github.com/10degrees/accessibility-statement-plugin/issues\">requesting feedback from the community</a>.</li><li>The <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> has published a <a href=\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">report on Open Source workshops</a> that were held online in 2020, based on the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform.</li><li>The Docs team is actively <a href=\"https://make.wordpress.org/docs/2020/11/12/follow-up-on-gutenberg-developer-documentation-restructuring-proposal/\">following up</a> on a proposal to <a href=\"https://make.wordpress.org/docs/2020/08/13/plan-proposal-for-a-new-better-structured-gutenberg-developer-documentation/\">restructure the Gutenberg developer documentation</a>.</li><li>The Community team is back with <a href=\"https://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Trainings</a>. The team is <a href=\"https://make.wordpress.org/community/2020/11/16/community-team-goals-for-2021-share-your-suggestions/\">also inviting suggestions on team goals for 2021</a> with a deadline of Dec. 14.</li><li>The Support team is <a href=\"https://make.wordpress.org/support/2020/11/changing-up-the-forum-front-page/\">making changes to the forum page</a> to improve discoverability. </li><li>Two online WordCamps took place in November: <a href=\"https://finland.wordcamp.org/2020/\">WordCamp Finland Online</a> and <a href=\"https://mexico.wordcamp.org/2020/\">WordCamp Mexico Online</a>. You can find Livestream recaps of the events on their websites. Videos will soon be available on WordPress.tv as well.</li><li>The Themes team <a href=\"https://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">made some changes to WordPress theme requirements</a>. These include removing updated CSS guidelines and a proposed plan to make WordPress themes accessibility-ready. The team is also <a href=\"https://make.wordpress.org/themes/2020/11/19/feedback-requested-resolution-process-for-issues-found-in-live-themes/\">requesting feedback</a> on the resolution process for issues found in live themes.</li><li>WordPress 5.6 will feature a <a href=\"https://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">major jQuery change</a>, with the bundled jQuery version being updated to Version 3.5.1 and jQuery Migrate being updated to Version 3.3.2.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Diversity speaker training group</a> of the Community team is requesting feedback on reimagining their work. Please <a href=\"https://make.wordpress.org/community/2020/11/12/input-requested-re-imagining-the-work-of-the-diverse-speaker-training-group-wpdiversity/\">share your feedback as comments on the post</a> by Dec. 18.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.6 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/12/wordpress-5-6-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Dec 2020 22:09:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9274\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"The second release candidate for WordPress 5.6 is here! WordPress 5.6 is slated for release on December 8, 2020, and we need your help to get there—if you haven’t tried 5.6 yet, now is the time! You can test WordPress 5.6 release candidate 2 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download the release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"\n<p>The second release candidate for WordPress 5.6 is here!</p>\n\n\n\n<p>WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, and we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, now is the time!</p>\n\n\n\n<p>You can test WordPress 5.6 release candidate 2 in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>. That way, those can be figured out before the final release. </p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.6, check out the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">WordPress 5.6 beta 1 post</a>. The <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 Field Guide</a> is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>Think you found a bug?</strong> Post it to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report you can <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>. Don&#8217;t forget to check <a href=\"https://core.trac.wordpress.org/tickets/major\">the list of known bugs</a></em>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 04 Feb 2021 12:34:09 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 03 Feb 2021 21:30:51 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20201221104147\";}','no'),(566499,'_site_transient_timeout_community-events-b6d8996643831c2fbaaa399d61947f5e','1612485249','no'),(566500,'_site_transient_community-events-b6d8996643831c2fbaaa399d61947f5e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"77.254.44.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:41:\"Discussion Group: Using the Media Library\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/276051779/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-02-04 14:00:00\";s:8:\"end_date\";s:19:\"2021-02-04 15:00:00\";s:20:\"start_unix_timestamp\";i:1612476000;s:18:\"end_unix_timestamp\";i:1612479600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.779998779297;s:9:\"longitude\";d:-122.41999816895;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Prague\";s:3:\"url\";s:33:\"https://prague.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-02-27 10:00:00\";s:8:\"end_date\";s:19:\"2021-02-27 10:00:00\";s:20:\"start_unix_timestamp\";i:1614416400;s:18:\"end_unix_timestamp\";i:1614416400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"CZ\";s:8:\"latitude\";d:50.0755381;s:9:\"longitude\";d:14.4378005;}}}}','no'),(561866,'revslider-update-check','1608547268','yes'),(561867,'revslider_update_info','O:8:\"stdClass\":3:{s:7:\"checked\";i:1608547268;s:5:\"basic\";O:8:\"stdClass\":7:{s:4:\"slug\";s:9:\"revslider\";s:7:\"version\";s:5:\"6.3.3\";s:7:\"package\";s:72:\"http://updates.themepunch-ext-b.tools/revslider/download.php?stable=true\";s:6:\"tested\";s:5:\"5.6.0\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"//updates.themepunch-ext-b.tools/revslider/logo.png?rev=6.2.23\";}s:3:\"url\";s:81:\"https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380\";s:11:\"new_version\";s:5:\"6.3.3\";}s:4:\"full\";O:8:\"stdClass\":19:{s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"//updates.themepunch-ext-b.tools/revslider/banner.png?rev=6.2.23\";s:4:\"high\";s:64:\"//updates.themepunch-ext-b.tools/revslider/banner.png?rev=6.2.23\";}s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:6:\"stable\";s:5:\"4.2.0\";s:7:\"version\";s:5:\"6.3.3\";s:6:\"tested\";s:5:\"5.6.0\";s:14:\"upgrade_notice\";a:0:{}s:11:\"last_update\";s:10:\"2020-12-10\";s:12:\"last_updated\";s:10:\"2020-12-10\";s:8:\"requires\";s:3:\"3.6\";s:6:\"author\";s:51:\"<a href=\"https://www.themepunch.com\">ThemePunch</a>\";s:7:\"package\";s:72:\"http://updates.themepunch-ext-b.tools/revslider/download.php?stable=true\";s:13:\"download_link\";s:72:\"http://updates.themepunch-ext-b.tools/revslider/download.php?stable=true\";s:9:\"file_name\";s:13:\"revslider.zip\";s:15:\"active_installs\";i:7000100;s:8:\"homepage\";s:33:\"https://revolution.themepunch.com\";s:8:\"sections\";a:3:{s:11:\"description\";s:497:\"<h4>Slider Revolution WordPress Builder Plugin</h4>\n	<p>Slider Revolution 6 is a new way to build rich & dynamic content for your websites. With our powerful visual editor, you can create modern designs in no time, and with no coding experience required.</p><p>Create Sliders & Carousels, Hero Headers, Content Modules, Full Websites, Dynamic Solutions and Special FX with our amazing Add-Ons.</p>\n	<p>200+ templates are included in our online library. Cutting edge designs. Easily customized.</p>\";s:9:\"changelog\";s:151:\"<p>For Slider Revolution\'s changelog, please visit <a href=\"https://www.themepunch.com/slider-revolution/changelog/\" target=\"_blank\">this</a> site!</p>\";s:3:\"faq\";s:2190:\"<div class=\"tp-faq-content\"><div class=\"tp-faq-column tp-faq-recent\"><h4>Recent Solutions</h4><ul class=\"tp-faq-recent-content ready\"><li><a href=\"https://www.youtube.com/watch?v=sCcnw5bZqYY&amp;list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_&amp;index=2&amp;t=111s\" target=\"_blank\" title=\"Video Tutorials\">Video Tutorials</a></li><li><a href=\"https://www.themepunch.com/faq/responsive-content/\" target=\"_blank\" title=\"Responsive Content Setup\">Responsive Content Setup</a></li><li><a href=\"https://www.themepunch.com/faq/video-content-mobile/\" target=\"_blank\" title=\"Video Content &amp; Mobile Considerations\">Video Content &amp; Mobile Considerations</a></li><li><a href=\"https://www.themepunch.com/faq/how-to-change-the-timing-of-slides/\" target=\"_blank\" title=\"How to change the timing of Slides\">How to change the timing of Slides</a></li><li><a href=\"https://www.themepunch.com/faq/mouse-hovers-for-layer-content/\" target=\"_blank\" title=\"Mouse Hovers for Layer Content\"> Mouse Hovers for Layer Content</a></li></ul></div><div class=\"tp-faq-column tp-faq-popular\"><h4>Popular Solutions</h4><ul class=\"tp-faq-popular-content ready\"><li><a href=\"https://www.themepunch.com/faq/after-updating-make-sure-to-clear-all-caches/\" target=\"_blank\" title=\"After updating â Make sure to clear all caches\">After updating â Make sure to clear all caches</a></li><li><a href=\"https://www.themepunch.com/faq/purchase-code-registration-faqs/\" target=\"_blank\" title=\"Purchase Code Registration FAQâs\">Purchase Code Registration FAQâs</a></li><li><a href=\"https://www.themepunch.com/faq/ideal-image-size/\" target=\"_blank\" title=\"Ideal Image Size\">Ideal Image Size</a></li><li><a href=\"https://www.themepunch.com/faq/add-links-to-slides-and-layers/\" target=\"_blank\" title=\"How to Hyperlink Slides and Layers\">How to Hyperlink Slides and Layers</a></li><li><a href=\"https://www.themepunch.com/faq/where-to-find-the-purchase-code/\" target=\"_blank\" title=\"Where to find the Purchase Code\">Where to find the Purchase Code</a></li></ul></div><div style=\"clear: both\"></div><p><a class=\"button button-primary\" href=\"https://themepunch.com/support-center\"><strong>See All Faq\'s</strong></a></p></div>\";}s:3:\"url\";s:81:\"https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380\";s:8:\"external\";i:1;}}','yes'),(566505,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1612485249','no'),(566506,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: New Report Estimates WordPress’ Market Share of US Higher Education Institution Websites at 40.8%\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:255:\"https://wptavern.com/new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8?utm_source=rss&utm_medium=rss&utm_campaign=new-report-estimates-wordpress-market-share-of-us-higher-education-institution-websites-at-40-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2613:\"<p>A new <a href=\"https://www.eqafy.com/component/content/article/49-higher-education-research/315-us-university-and-college-content-management-systems-2021.html\">report</a> from eQAfy, a company that collects and analyzes data about higher education websites, has benchmarked which content management systems US institutions are using. The report is a snapshot of data from December 2020, sourced from the&nbsp;<a href=\"https://nces.ed.gov/\">National Center for Education Statistics</a>&nbsp;<a href=\"https://nces.ed.gov/ipeds/\">IPEDS database</a>. After scanning a list of 4,000 active institutions,  EQAfy&rsquo;s headless browser was able to detect the CMS for 3,359 homepages (83.8%).</p>\n\n\n\n<p>A market leading group of 12 content management systems made up 90% of the homepages eQAfy detected, including four open source solutions and eight proprietary solutions. WordPress captures 40.8% of the market, followed by Drupal at 19.1%, as measured across all institution types (public, private for profit, and private non-profit), levels (2-year and 4-year), and sizes.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress&rsquo; estimated market share for public institutions came in at 27%, and is much higher in the private for-profit institutions category at 55%. </p>\n\n\n\n<p>Looking at 2-year public higher education institutions by student population, WordPress falls to #3 at just 18.3%. Drupal leads the pack in that category with 29.2%, and proprietary CMS&rsquo;s take up the rest of the market. WordPress does much better in the category of 4-year private for-profit higher education institutions, capturing a staggering 75% of the market.</p>\n\n\n\n<p>When examining CMS suppliers for institutions by size, WordPress is the overall market leader but does far better in the smallest institutional size categories, with waning dominance in the large to very large categories.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The <a href=\"https://www.eqafy.com/component/content/article/49-higher-education-research/315-us-university-and-college-content-management-systems-2021.html#table-10-2-year-private-non-profit-institutions\">report</a> has more interesting data comparisons across different categories if you want to dig deeper. It&rsquo;s important to note that eQAfy only collected the main websites for these institutions, which may not be representative of the CMS that powers the schools&rsquo; ancillary websites. They are often created using a combination of platforms. This report covers only which CMS the schools preferred to use for the face of their institutions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Feb 2021 04:48:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: FSE and WordPress Themes: What Does the MVP Look Like?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/fse-and-wordpress-themes-what-does-the-mvp-look-like?utm_source=rss&utm_medium=rss&utm_campaign=fse-and-wordpress-themes-what-does-the-mvp-look-like\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8894:\"<p class=\"has-drop-cap\">Josepha Haden Chomphosy, the Executive Director of WordPress, <a href=\"https://make.wordpress.org/core/2021/02/01/full-site-editing-and-themes-where-things-are/\">posted a follow-up</a> to her <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">outline of the upcoming year</a>. Questions mounted about what a minimum viable product (MVP) looked like for Full Site Editing (FSE), which is expected to be ready in the Gutenberg plugin in April. The core team is also shooting for a June launch of FSE in WordPress when it ships WordPress 5.8.</p>\n\n\n\n<p>These seem like lofty goals, but members of the WordPress development and business community were left asking, &ldquo;What is an MVP for FSE?&rdquo; This is not a new question. Whether it is the swift pace of development, a communication breakdown, or so much of the project being hidden behind layer upon layer of GitHub issues, it can be hard to follow. There is no big webpage that spells out each step in minute detail of where the project is going. Information can sometimes feel scattered. This can give pause to third-party developers and business owners who need to know what to expect to update their products.</p>\n\n\n\n<p>Joost de Valk, the CPO of Yoast, <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/#comment-4975\">voiced his frustration</a> with the process in the comments. We later discussed this in more detail.</p>\n\n\n\n<p>&ldquo;I think FSE will change what a theme is, and, if it gets executed properly, will make it far easier to build a theme, as themes will be much smaller,&rdquo; he said. &ldquo;That brings the burden onto the community to come up with reliable methods of styling though, and conventions on class names or similar, to make styling work everywhere. I currently don&rsquo;t understand what is even considered as MVP for Full Site Editing, nor do I see any discussions about how it&rsquo;ll work with themes not purpose built for it, and that worries me.&rdquo;</p>\n\n\n\n<p>He shares some of the same concerns as others in the community who feel like there is no process in place for an MVP.</p>\n\n\n\n<p>&ldquo;And there is no such thing,&rdquo; he said. &ldquo;Vision without execution is just hallucination.&rdquo;</p>\n\n\n\n<p>Chomphosy said that she was aware of the interconnectedness. &ldquo;I also see that the information we have published isn&rsquo;t in a tidy and followable post that would help people make good decisions on behalf of 39% of the web,&rdquo; she said.</p>\n\n\n\n<p>She pointed to a <a href=\"https://github.com/WordPress/gutenberg/issues/24551\">ticket that lists six (now seven) milestones</a>. Each of those milestones, when taken together, represent where FSE needs to be for an MVP.</p>\n\n\n\n<p>&ldquo;Together they outline an architecture that allows the expression of a full theme using blocks and an editor capable of customizing that theme,&rdquo; she wrote. &ldquo;<strong>The MVP should make it possible to build a version of the Twenty Twenty-One theme, using only blocks, without any coding knowledge.</strong>&ldquo;</p>\n\n\n\n<p>The following is a breakdown of the milestones that need to reach completion before we see the first version of FSE land in WordPress:</p>\n\n\n\n<h2>Milestone 1: Infrastructure and UI</h2>\n\n\n\n<p>Perhaps the most crucial part of FSE is a <a href=\"https://github.com/WordPress/gutenberg/issues/24818\">workable site editor</a>. Merging the WordPress templating system into a cohesive UI is the foundation of the project. The underlying infrastructure handles how templates and template parts work. At this point, this foundation is in a reliable spot. It is all the features that build upon it that need more work. This milestone also includes getting the site-editing interface in place and handling multi-entity saving.</p>\n\n\n\n<p>The final leg of the milestone allows users to <a href=\"https://github.com/WordPress/gutenberg/issues/27814\">edit templates</a> from within the post editor, effectively switching between content and design editing. The FSE Outreach Program recently <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">tested this feature</a> to garner feedback after Gutenberg 9.6.</p>\n\n\n\n<h2>Milestone 2: Browsing</h2>\n\n\n\n<p>This milestone covers all of the work for <a href=\"https://github.com/WordPress/gutenberg/issues/24552\">navigating the UI</a> of the site editor. There are many moving parts, such as switching between pages, templates, template parts, global styles, and more. Users must know which element they are working on.</p>\n\n\n\n<p>This is the only milestone marked as completed. However, there is an open ticket for exploring the idea of a <a href=\"https://github.com/WordPress/gutenberg/issues/23328\">&ldquo;browsing&rdquo; mode</a> alongside the edit and select modes.</p>\n\n\n\n<h2>Milestone 3: Styling</h2>\n\n\n\n<p>For the most part, this milestone centers on the upcoming Global Styles system. The <a href=\"https://github.com/WordPress/gutenberg/issues/20331\">system creates a hierarchy</a> of how styles are applied to blocks from theme defaults to global user modifications, down to per-block style options.</p>\n\n\n\n<p>While much of the work is complete for an MVP, there are dozens of feature tickets in the backlog. This is also an area where the block system is years behind third-party page builders. Expect to see long-term feature additions based on post-launch feedback.</p>\n\n\n\n<h2>Milestone 4: Theme Blocks</h2>\n\n\n\n<p>Theme authors should keep a close eye on this ticket. The only way that block-based themes become a reality for most theme developers is if all <a href=\"https://github.com/WordPress/gutenberg/issues/22724\">template tags have a corresponding block</a> in the site editor. Or, at least if the most-used template tags do. Some of these functions are no longer applicable in the block editor. Theme developers should make sure they have the blocks they need to recreate anything they are building today.</p>\n\n\n\n<p>Admittedly, I am sad to see that blocks for Bookmarks/Links are unlikely to be moving forward. While the feature is deprecated, I am still nostalgic about the good ol&rsquo; blogroll days. Maybe this would be best left a plugin. A revival of the <a href=\"https://wordpress.org/plugins/link-manager/\">Link Manager</a> plugin could be in order.</p>\n\n\n\n<h2>Milestone 5: Query Block</h2>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/issues/24762\">Query block</a> and its corresponding Loop block are, in some ways, the most essential pieces of Full Site Editing. They handle what posts are loaded and how they are displayed. The feature is one of the more complex puzzles to solve. The Gutenberg development team has continued iterating on it for months, and it is now at a good baseline. However, it has miles to go before it can seriously handle all the things that theme authors need to do with it.</p>\n\n\n\n<p>Right now, the Query block only handles a handful of options for customizing the query. The team needs to determine what controls should be available in the sidebar for end-users and integrate the blocks with patterns for different types of post-list displays.</p>\n\n\n\n<h2>Milestone 6: Navigation Block</h2>\n\n\n\n<p>Aside from the Query block, Navigation is the only other block that requires <a href=\"https://github.com/WordPress/gutenberg/issues/27593\">its own milestone</a>. Navigation menu issues have plagued the WordPress project for well over a decade. It is one of the hardest things to get right. While nav menus in WordPress today are generally easy to work with, their design is not customizable by the end-user. The output is wholly at the theme author&rsquo;s discretion. Catering to the array of possible menu designs theme authors might want and making it customizable for the end-user is likely one of the toughest problems for the Gutenberg project.</p>\n\n\n\n<p>There are at least a couple of dozen sub-tickets that need contributors. Even then, it could be several versions later before the Navigation block is ready for the more complex patterns used in some themes today.</p>\n\n\n\n<h2>Milestone 7: Gradual Adoption</h2>\n\n\n\n<p>After the first six milestones representing the MVP are completed, WordPress needs a way to allow end-users and theme authors to gradually adopt FSE. Primarily, this would be a mix of block-based templates and traditional PHP-based templates. Developers should be allowed to update their themes without changing them wholesale, potentially leaving segments of their user base behind.</p>\n\n\n\n<p>Block-based widgets and navigation screens also fall under this milestone. Both features were punted to future releases after failing to land in 2020. However, these will be stepping stones for users who are not quite ready to switch to FSE or are unable to because of their theme.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 22:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 5.6.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8265:\"<p>WordPress 5.6.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.1&group=status&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">20 bug fixes</a> as well as&nbsp;7 issues fixed for the&nbsp;block&nbsp;editor. These bugs affect WordPress version 5.6, so you’ll want to upgrade.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.6.1.zip\">download WordPress 5.6.1 directly</a>, or visit the<strong>&nbsp;Dashboard → Updates</strong>&nbsp;screen&nbsp;and click&nbsp;<strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.6.1 is a short-cycle maintenance release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/5-7/\">version 5.7</a>.</p>\n\n\n\n<p>To see a full list of changes, you can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.6.1&group=status&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">list on Trac</a>, read the&nbsp;<a href=\"https://make.wordpress.org/core/2021/01/28/wordpress-5-6-1-rc1/\">5.6.1 RC1</a>&nbsp;post, or visit the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-6-1/\">5.6.1 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.6.1 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/whyisjake/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>whyisjake</a>. Thanks to <a href=\"https://profiles.wordpress.org/metalandcoffee/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>metalandcoffee</a> and <a href=\"https://profiles.wordpress.org/hellofromtonya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellofromtonya</a> for running bug scrubs, <a href=\"https://profiles.wordpress.org/planningwrite/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>planningwrite</a> and <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a> for their help on the release post.</p>\n\n\n\n<p>Props to everyone who helped make WordPress 5.6.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ifnoob/\">ifnoob</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/majhajob/\">majhajob</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/iamfriendly/\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 21:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: WordPress 5.7 Beta 1 Is Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"https://wptavern.com/wordpress-5-7-beta-1-is-ready-for-testing?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-beta-1-is-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3105:\"<p><a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">WordPress 5.7 Beta 1</a> was released this week on schedule and is ready for wider testing. This release will introduce <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F03%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">68 new features and enhancements</a>, dozens of bug fixes, and versions 9.3 &ndash; 9.9 of the Gutenberg plugin. </p>\n\n\n\n<p>A few of the highlights expected in 5.7 include the following: </p>\n\n\n\n<ul><li><strong>Lazy-load iframes</strong>: When WordPress 5.4 added lazy loading for images, contributors discussed extending this to iframes as well. Now that the&nbsp;<code>loading</code>&nbsp;attribute on&nbsp;<code>iframe</code>&nbsp;tags has been added to the HTML standard, it will be supported in core in 5.7. </li><li><strong>Streamlined migration from HTTP to HTTPS</strong>: WordPress can now detect if a user&rsquo;s hosting environment supports HTTPS and <a href=\"https://wptavern.com/wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https\">enables a one-click update process</a>, handling mixed content rewrites where possible. </li><li><strong>Standardize colors used in WP-Admin CSS to a single palette</strong>: WordPress is <a href=\"https://wptavern.com/skinning-the-wordpress-admin-css-custom-properties-on-the-way\">implementing a CSS custom properties system</a> that will make it easier to add custom color schemes.</li><li><strong>Ongoing cleanup after update to jQuery 3.5.1</strong></li><li><strong>New Robots API</strong>: <a href=\"https://core.trac.wordpress.org/changeset/49992\">This new API</a> allows developers to centrally manage the content of the&nbsp;<code>robots</code>&nbsp;meta tag injected into the page, and includes a setting to toggle whether search engines are allowed to display large media from the site. By default, a&nbsp;<code>max-image-preview:large</code>&nbsp;robots directive which will be injected into the&nbsp;<code>robots</code>&nbsp;meta tag based on the new setting.</li></ul>\n\n\n\n<p>These features need testing, along with the host of updates rolling over from the Gutenberg plugin. The editor is getting the most visible enhancements in 5.7, with features like dragging blocks and block patterns from the inserter into the canvas, major improvements to the buttons block, new social icons, and much more.</p>\n\n\n\n<p>The official release is expected in just under five weeks on March 9, 2021. Testing is a critical part of the process for making WordPress better with each update. The easiest way to get in on that is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (set to the&nbsp;<code>Bleeding edge</code>&nbsp;channel and the&nbsp;<code>Beta/RC Only</code>&nbsp;stream), or download and install the <a href=\"https://wordpress.org/wordpress-5.7-beta1.zip\">zip</a> of the beta version.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 18:54:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: The Month in WordPress: January 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2021/02/the-month-in-wordpress-january-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11649:\"<p>For WordPress, 2021 started on a high note. Read on to learn about updates from last month.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>WordPress project executive director — Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">shared big picture goals for WordPress in 2021</a>. Highlights include shipping&nbsp; Full Site Editing&nbsp; — first on the Gutenberg plugin in April 2021&nbsp; and later in core (with WordPress 5.8), improved learning opportunities on learn.wordpress.org, and better tooling for contributors. As per the updated <a href=\"https://wordpress.org/about/roadmap/\">WordPress roadmap</a>, WordPress version 5.7 is planned to launch in March 2021 and WordPress 5.8 in June 2021. Some related updates:</p>\n\n\n\n<ul><li>Contributor teams are working on <a href=\"https://make.wordpress.org/core/2021/01/29/introducing-css-custom-properties/\">an updated admin color palette for WordPress 5.7</a> that will be more accessible and easy to read.&nbsp;</li><li>The Core team is working on a proposal to <a href=\"https://make.wordpress.org/core/2021/01/12/recap-and-proposal-align-the-wordpress-release-cycle-with-the-industry-standard/\">align WordPress release cycles with industry standards</a>.&nbsp;</li><li>WordPress 5.6.1 <a href=\"https://make.wordpress.org/core/2021/01/28/wordpress-5-6-1-rc1/\">Release Candidate 1</a> is out. This release is set to launch by<a href=\"https://make.wordpress.org/core/2021/02/02/a-week-in-core-february-1-2021/\"> February 3, 2021</a>. Questions and answers for <a href=\"https://github.com/wpmarketingteam/WP5.6Marcomms\">WordPress 5.6</a> are now <a href=\"https://github.com/wpmarketingteam/WP5.6Marcomms\">available on GitHub</a>. Contact the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel in the WordPress Slack, if you would like to contribute.</li><li>The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">WordPress 5.7 Beta 1</a> release is out! Download the <a href=\"https://wordpress.org/wordpress-5.7-beta1.zip\">zip file</a> or use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> to test it out.&nbsp;</li></ul>\n\n\n\n<p>Want to be involved in the next release? You can help build WordPress Core by following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a> and joining the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal to return to in-person WordPress events in safe locations</h2>\n\n\n\n<p>The Community team is <a href=\"https://make.wordpress.org/community/2021/01/26/proposal-update-decision-making-checklist-for-safe-in-person-meetups/\">discussing an updated proposal</a> to create a decision-making checklist for meetup organizers. The proposal is aimed at locations that have more effectively contained COVID-19 (such as New Zealand and Taiwan, for instance) so that local meetup groups in these areas can organize safe, in-person events. According to the proposal, in-person meetup organizers should review local/global health instructions based on resources and complete a checklist — which recommends whether to organize an event or not based on the organizer’s inputs and other factors. Compulsory safety precautions should be taken for any in-person meetup, and participants/organizers can share event feedback with WordCamp Central. The proposal is still being discussed, so if you have any thoughts, please<a href=\"https://make.wordpress.org/community/2021/01/26/proposal-update-decision-making-checklist-for-safe-in-person-meetups/\"> share them in the comments</a>. <strong>Please note: WordPress meetups and WordCamps are still online at this time and will continue to remain online until further notice.</strong></p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog</a>, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RQC7RN\">#community-events</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a local WordPress community event, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>.&nbsp;</p>\n\n\n\n<h2>Gutenberg 9.7 and 9.8</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">Version 9.7</a> on January 6th and <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">Version 9.8</a> on January 20th. Version 9.7 allows users to drag block patterns from the inserter right into a desired position within the editor. It also has a new block variations feature and several improvements to reusable blocks. Version 9.6 makes the spacer block semi-transparent, adds a variation icon to the block switcher, adds site editor content to an iframe, and stabilizes Full Site Editing (FSE) by removing the auto drafts feature. </p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. You can find out more about the Gutenberg roadmap in the latest <a href=\"https://make.wordpress.org/core/2021/02/01/whats-next-in-gutenberg-february-2021/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<h2>Inviting Learn WordPress Contributors</h2>\n\n\n\n<p>Contributor teams working on the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> initiative are asking for <a href=\"https://learn.wordpress.org/contribute/\">new workshop presenters and discussion group facilitators</a>. The Training Team is recruiting<a href=\"https://make.wordpress.org/training/2021/01/27/learn-wordpress-working-group-call-for-handbook-volunteers/\"> volunteers for the Learn WordPress handbook</a> and has put up a <a href=\"https://make.wordpress.org/training/2021/01/29/request-for-testing-slides-plugin/\">call for testing for the slides plugin</a> to identify a simplified way to present slides. The Polyglots Team has floated a proposal to <a href=\"https://make.wordpress.org/polyglots/2021/01/13/proposal-translating-learn-wordpress/\">translate Learn WordPress</a>. The Meta Team is exploring the possibility of <a href=\"https://make.wordpress.org/meta/2021/01/03/protecting-childrens-privacy-on-wordpress-through-the-lens-of-coppa/\">making Learn WordPress (and wordpress.org) COPPA-compliant</a> to host workshops aimed at kids. </p>\n\n\n\n<p>Want to contribute to the Training team? Follow the <a href=\"https://make.wordpress.org/training/\">Training team</a> blog, or join them in the <a href=\"https://wordpress.slack.com/archives/C02RW657Q\">#training</a> channel in the Make WordPress Slack.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">Round 1</a> of the Full Site Editing (FSE) outreach program <a href=\"https://make.wordpress.org/test/2021/01/15/fse-program-template-editing-testing-summary/\">has wrapped up</a>. As a result, gaps were identified in the Gutenberg 9.6 template-switching experience &#8211; you can follow the issues in GitHub. You can follow issues in GitHub and submit questions to the team. The program identified gaps in the current template-switching experience that shipped with Gutenberg 9.6. You can follow the <a href=\"https://github.com/WordPress/gutenberg/issues/27814\">issues reported in GitHub</a>. Do you have questions about the FSE program? You can now <a href=\"https://make.wordpress.org/test/2021/02/02/fse-program-bring-your-questions/\">submit them here as part of the outreach program</a>.</li><li><a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> — A cross-team initiative led by the Marketing team to highlight WordPress contributors is back with <a href=\"https://wordpress.org/news/2021/01/people-of-wordpress-thelma-mutete/\">a post featuring Thelma Muelte of Zimbabwe</a>. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the Marketing Team with the #ContributorStory tag to be featured in the series.</li><li>Joseph Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) launched a podcast titled <a href=\"https://wordpress.org/news/2021/02/welcome-to-your-wp-briefing/\">WP Briefing</a> which is aimed at WordPress users, builders, and contributors of all levels. The podcast &#8211; which is available on all major platforms, will include overviews of WordPress philosophy, community success stories, and major updates. </li><li>The Plugin team has added a requirement that <a href=\"https://make.wordpress.org/plugins/2021/01/26/reminder-plugins-must-not-interfere-with-updates/\">plugins in the WordPress repository must not make changes to the default auto-update settings on a site</a>. The only exception to this requirement is for those plugins that manage auto-updates.</li><li><a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> — a regional online WordCamp has begun. It’s running over three weekends and started with <a href=\"https://india.wordcamp.org/2021/workshops/\">Multilingual workshop sessions on January 30 and 31</a>. The workshops <a href=\"https://india.wordcamp.org/2021/workshops/\">can be found on the event site</a> and will soon be featured on <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. <a href=\"https://india.wordcamp.org/2021/tickets/\">Tickets are still available</a> for the event —which will have a contribution event on February 6-7, followed by sessions on February 13th and 14th. </li><li>The WordPress Foundation has <a href=\"https://wordpressfoundation.org/2021/do_action-hackathons-and-open-source-workshops-in-2021/\">invited applications for online do_action hackathons and encouraged folks to organize online open-source workshops</a> in 2021.</li><li>The Themes Team shared a post on the usage of the “Report this theme” button in 2020. The team is also <a href=\"https://make.wordpress.org/themes/2021/01/25/call-for-maintainers-theme-unit-test/\">looking for maintainers</a> for its <a href=\"https://codex.wordpress.org/Theme_Unit_Test\">Theme unit test</a>.</li><li>The Meta Team has launched an initiative to <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">facilitate automated theme testing</a> and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">requesting feedback</a>.</li><li>Members of the Core Team are <a href=\"https://make.wordpress.org/core/2021/01/14/stale-issues-in-gutenberg-repository/\">considering a “stale bot”</a> to close out stale issues in the Gutenberg GitHub repository.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 15:01:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"HeroPress: Discover Where You Belong\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3469\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://heropress.com/essays/discover-where-you-belong/#utm_source=rss&utm_medium=rss&utm_campaign=discover-where-you-belong\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7102:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/02/020221-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I discovered that the way forward was to create spaces for others.\" /><p>My path to WordPress is, like so many stories, a twisty road lined with both struggle and good fortune. And yet, when I reflect on what led me here, it simply comes down to the common threads that bind us together as a community: the desire to make meaningful connections, the ability to do amazing things together, and the very human comfort that comes with knowing that I belong here.</p>\n<h3>It starts here</h3>\n<p>Just before I made my way into this world, my parents immigrated from Taipei, Taiwan to San Diego, USA. Growing up, I held a level of pride in being first generation which warred against a long list of discomforts that, as a kid, I couldn’t fully comprehend. That unlike my school mates, I rarely saw my extended family. That my English didn’t sound like that of my Californian friends, nor did my Mandarin mirror my Taiwanese cousins’. That cultural norms at friends’ homes were diametric experiences from my home.</p>\n<p>I realize that this sounds like I had a challenging, confusing childhood, but I assure you that I had a good time growing up. My folks are loving and made sure I had opportunities whenever possible. I always have had wonderful friends who generously share their lives and love my quirks. And, I have a brother who, despite being far smarter than I will ever be, still puts up with my big sister act.</p>\n<p>My point is that, it was painfully clear to me where I couldn’t fit in. Like many third culture kids, my perplexing cultural foundation had a profound impact on my values, and created importance around the concept of belonging, something I still hold to this day, and which pushed me along my way to WordPress.</p>\n<h3>The twisty road</h3>\n<p>I was terrible at college. I had no sense of what I wanted to do with my life, and drifted from major to major until I found myself entirely broke and rudderless. It was 2010, and with minimal job experience and 45 credits short of a degree, I desperately applied for jobs, taking the first that offered me a full time position.</p>\n<p>It was a pivotal moment in my life. The job gave me purpose, and I actually felt like I was good at something for a change. I worked closely with my boss and mentor, a highly regarded commercial real estate advisor with a warm heart and penchant for dad jokes. What set him apart was his belief in community values: the importance of education, humility, empathy, good stewardship, qualities that made him a respected leader in many circles. Over the ensuing years, I would finish my degree. But the lessons that meant the most were learned by following my mentor’s example, and would later translate well to open source leadership.</p>\n<p>Meanwhile, I began volunteering with renewed passion: sorting clothes at homeless shelters, working on literacy programs, teaching English at the library, serving meals, maintaining trails, building homes. I fund raised and coordinated volunteer events. Eventually, I joined advisory boards and committees of a few nonprofits, and became enamored of the strategic, thoughtful work that came with these roles.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/02/HfH-Nicaragua.jpg\"><img /></a>Building homes in Estelí, Nicaragua. One of my favorite volunteer memories!\n<p>Ideas around positive change and impact through community initiatives blossomed in my mind. Driven by strongly held values, I continued to help and was welcomed at every turn. I learned that it was people who could create spaces in which anyone, everyone could belong and add value by virtue of being a unique, enthusiastic human being. I wanted to create these spaces.</p>\n<h3>Finding WordPress</h3>\n<p>Now, it is a true story that I also found my way to WordPress through my partner, and that WordPress brought us together. We met through a mutual friend, and when I realized that he could build me a website, I asked him to do so for work. Arguably, one of my first experiences with WordPress could be described either as sharing what my site required with my developer, or innocently flirting with my future partner. The joke I like to tease him with is that I needed someone to maintain the site, so I married him.</p>\n<p>The other truth was that, after eight years of volunteering and lessons in leadership, my passion had turned to community building. I wanted a career in creating sustainable communities where people were openly welcomed, and members tangibly feel that they belong and experience joy in their participation.</p>\n<p>Simultaneously, working with my WordPress site also reinforced my sense of belonging to something bigger. Despite not having any technical background (y’all, my degree is in English), I was able to not just publish with WordPress, but have a functional site that worked incredibly well for my purposes. I saw WordPress as a way for anyone to have a voice online, and as a result, I was also drawn to the idea of creating these tools that non-developers, like myself, could use in an increasingly online world.</p>\n<p>By that point, my WordPress developer had become my fiancé, and he once again suggested a WordPress-based solution, this time for my career needs. Just before we married, he forwarded a job opportunity with Automattic as a sponsored community organizer within the WordPress open source project. It was a perfect match.</p>\n<p>And that is how, in 2018, after going through the standard Automattic interview process (another story that I’m happy to share with anyone interested) I found myself a community organizer for the WordPress Project.</p>\n<h3>Where do we go now?</h3>\n<p>I’ve only been in my current role for two and a half years, but during this time, my belief in the power of resilient communities has only grown, fortified by supporting meetup and WordCamp organizers, bolstered by working on diversity initiatives, and humbled by opportunities to serve teams as their lead, mentor, or member. I’ve met and worked with so many phenomenal community members, full of passion and creativity, and have loved every minute of what we do together.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/02/WCUS-2019.jpg\"><img /></a>The WordCamp US 2019 team. I miss you all so much!\n<p>More than anything, what excites me the most is that we still have so much more we can achieve together. Personally, I also still have much to learn, about community growth, about WordPress, and about every individual who seeks to add WordPress to their story.</p>\n<p>In seeking out where I belong, I found WordPress, and I discovered that the way forward was to create spaces for others &#8211; I invite you to do that with me.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/discover-where-you-belong/\">Discover Where You Belong</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 07:09:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Angela Jin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: Compounding Ice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=53641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2021/02/compounding-ice/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1899:\"<p>I learned something novel about how the ice age happened from this <a href=\"https://www.collaborativefund.com/blog/the-freakishly-strong-base/\">Freakishly Strong Base post by Morgan Housel</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The prevailing idea before [Wladimir] Köppen was that ice ages occur when the earth’s tilt supercharges the wrath of cold winters. Köppen showed that wasn’t the case. Instead, moderately cool summers are the culprit.</p><p>It begins when a summer never gets warm enough to melt the previous winter’s snow. The leftover ice base makes it easier for snow to accumulate the following winter, which increases the odds of snow sticking around in the following summer, which attracts even more accumulation the following winter. Perpetual snow reflects more of the sun’s rays, which exacerbates cooling, which brings more snowfall, and on and on.</p><p>You start with a thin layer of snow left over from a cool summer that no one pays much attention to, and after a few tens of thousands of years the entire earth is covered in miles-thick ice.</p></blockquote>\n\n\n\n<p>Fascinating! The blog goes on to apply the idea to that strong base, accumulating a bit at a time, to investing and business. The power of compounding seems appropriate to share on <a href=\"https://www.aboutamazon.com/news/company-news/email-from-jeff-bezos-to-employees\">the day Jeff Bezos announced his retirement</a>.</p>\n\n\n\n<p>I&#8217;ll leave you with one of my favorite quotes from Charlie Munger, which is also how the <a href=\"https://www.collaborativefund.com/blog/the-freakishly-strong-base/\">article ends</a>: </p>\n\n\n\n<blockquote><p>&#8216;The first rule of compounding: never interrupt it unnecessarily.&#8217;</p><cite>Charlie Munger</cite></blockquote>\n\n\n\n<p><em>The iceberg photo is one <a href=\"https://ma.tt/2011/08/glacier/\">I took near Svalbard in 2011</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Feb 2021 01:44:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.7 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7617:\"<p>WordPress 5.7 Beta 1 is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.7 Beta 1 in two ways:</p>\n\n\n\n<ul><li>Install/activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the&nbsp;<code>Bleeding edge</code>&nbsp;channel and the&nbsp;<code>Beta/RC Only</code> stream)</li><li>Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.7-beta1.zip\">zip</a>).</li></ul>\n\n\n\n<p>The current target for final release is March 9, 2021. That’s just <strong>five weeks away</strong>, so your help is vital to making sure that the final release is as good as it can be.</p>\n\n\n\n<p>So what’s new? <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f914.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2><strong>Improvements in Core</strong></h2>\n\n\n\n<p><strong>Lazy-load iframes</strong><br />Now you can enable lazy-loading of iframes by adding the <code>loading=\"lazy\"</code> attribute to iframe tags on the front-end.&nbsp;</p>\n\n\n\n<p><strong>Migrating from HTTP to HTTPS is streamlined</strong><br />Switching a WordPress site from HTTP to HTTPS has proven to be a pain for all involved. While on the surface, the Site Address and WordPress Address have to be updated, content with embedded HTTP URLs remains unchanged in the database. With this release, migrating a site to HTTPS is now a one-click interaction. URLs in the database are automatically replaced when the Site and WordPress Address are both using HTTPS.&nbsp; Also, Site Health now includes an HTTPS status check.</p>\n\n\n\n<p><strong>Standardize colors used in WP-Admin CSS to a single palette</strong><br />This change collapses all colors used in the CSS to one of the available shades of blue, green, red, yellow, grey, black, and white. The palette makes it simpler than ever to build components your users can read, because half the range gives you great contrast with white type and a half with black, according to current accessibility guidelines.</p>\n\n\n\n<p><strong>Ongoing cleanup after update to jQuery 3.5.1</strong><br />jQuery deprecations in WordPress Core and bundled themes show up a lot less often, and the notifications make more sense to the user.</p>\n\n\n\n<p><strong>New Robots API</strong><br />The new Robots API allows the filter directives to be included in the ‘robots’ meta tag. Also, the directive <code>max-image-preview:large</code> is now included by default to allow large image previews to be displayed in search engines (unless the blog is marked as not being public).</p>\n\n\n\n<h2><strong>Improvements in the Editor</strong></h2>\n\n\n\n<ul><li>Inserter drag and drop: Blocks and block patterns can now be dragged directly from the inserter into the post canvas.</li><li>Full height alignment: Blocks such as the Cover block now can have an option to expand to fill the entire viewport.</li><li>Block variations: The icon and description of a block variation is now shown in the block inspector, and a new dropdown in the block inspector lets you switch between block variations.</li><li>Reusable blocks: Several enhancements to the usability and stability of reusable blocks have been made, and reusable blocks are now saved at the same time that the post is saved.</li><li>Buttons block: The Buttons block now supports vertical alignments, and you can set the width of a button to a preset percentage.</li><li>Social Icons block: You can now change the size of the icons in the Social Icons block.</li><li>Font size in more places: You can now change the font size in the List and Code blocks.</li><li>Many many other enhancements and bug fixes. To see all of the features for each release in detail check out the Gutenberg release posts: <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">9.3</a>, <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">9.4</a>, <a href=\"https://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">9.5</a>, <a href=\"https://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a>, <a href=\"https://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">9.7</a>, <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">9.8</a>, and 9.9 (link forthcoming).</li></ul>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Watch the Make WordPress Core blog for 5.7-related developer notes in the coming weeks, which will break down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=..02%2F03%2F2021&milestone=5.7&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">143 tickets in WordPress 5.7</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&changetime=..02%2F03%2F2021&type=enhancement&type=feature+request&milestone=5.7&group=component&col=id&col=summary&col=type&col=status&col=milestone&col=changetime&col=owner&col=priority&col=keywords&order=changetime\">68 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<p><strong>Do some testing!</strong></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testing for bugs</a> is a vital part of polishing the release during the beta stage and a great way to contribute. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /></p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> area in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, file one on <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricker</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, and <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> for your peer revisions and <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, and <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> for final review on this exciting news.</em></p>\n\n\n\n<p>____________________________________</p>\n\n\n\n<p><em>New Year, new goals<br />Each day, one small step<br />It’s the little things&#8230;</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Feb 2021 22:31:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ebonie Butler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Skinning the WordPress Admin, CSS Custom Properties on the Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"https://wptavern.com/skinning-the-wordpress-admin-css-custom-properties-on-the-way?utm_source=rss&utm_medium=rss&utm_campaign=skinning-the-wordpress-admin-css-custom-properties-on-the-way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4912:\"<p class=\"has-drop-cap\">Using CSS custom properties for the WordPress admin color scheme system is listed for the WordPress 5.7 milestone. It feels low-key enough that most would pass it over as a simple upgrade to keep up with the times. However, this feature can create ripples that spread and benefit the ecosystem in the years to come.</p>\n\n\n\n<p>Kirsty Burgoine, a front-end developer at Human Made, announced the <a href=\"https://make.wordpress.org/core/2021/01/29/introducing-css-custom-properties/\">introduction of CSS custom properties</a> for the WordPress admin. The initial work landed in a ticket for <a href=\"https://core.trac.wordpress.org/ticket/49999\">iterating on the admin color schemes</a>. The first stage reduced the color palette from 199 colors down to 99, creating a more reasonable list to work from.</p>\n\n\n\n<img /><a href=\"https://codepen.io/ryelle/full/WNGVEjw\">WordPress color palette</a> by Kelly Choyce-Dwan.\n\n\n\n<p>The second stage will look at how to implement a CSS custom properties system that makes sense. That means doing the dreaded work of <em>naming things</em>. The Core CSS team is currently looking for feedback on how to best handle property names going forward and are open to alternative implementation suggestions.</p>\n\n\n\n<p>Once custom properties are in place, the new system could open a world of possibilities in the long term.</p>\n\n\n\n<h2>Thinking Ahead</h2>\n\n\n\n<p class=\"has-drop-cap\">My hopes of having WordPress admin themes have lived and died on each piece of news around custom color schemes, imaginative mockups, and the general hype of projects that never lived up to their promise. I may well be getting my hopes up again.</p>\n\n\n\n<p>Developers have been able to register custom admin color schemes since WordPress 2.5, but it was never an ideal system.</p>\n\n\n\n<p>One of my favorite plugins is <a href=\"https://wordpress.org/plugins/admin-color-schemes/\">Admin Color Schemes</a>, which is maintained by designers from the core WordPress team. It adds several schemes for users to choose from.</p>\n\n\n\n<img />Cruise scheme from the Admin Color Schemes plugin.\n\n\n\n<p>Sass, which is used to generate the admin color schemes in core today, has simplified the process. However, third-party developers still need to make sure their custom schemes remain updated between WordPress versions. The system is not built to protect against future compatibility issues.</p>\n\n\n\n<p>CSS custom properties change the game. With their widespread use and compatibility with modern browsers, custom admin theming &mdash; at least color scheming &mdash; is much more of a reality.</p>\n\n\n\n<p>I have not been this excited about the possibility of something new since Tung Do released his <a href=\"https://wptavern.com/dp-dashboard-an-alternative-wordpress-admin-design\">short-lived DP Dashboard plugin</a> in 2013. Now, a few days shy of eight years since its initial beta testing phase, I once again have some hope.</p>\n\n\n\n<img />Original beta design of the DP Dashboard plugin.\n\n\n\n<p>Given the little wisdom I have accumulated over the years, I now see that completely custom admin themes never led to the right path. I am happy we never went down it. Administration UIs need to work consistently for users and adapt to changes over time. Custom themes were a maintenance nightmare every time WordPress added a feature. However, a system built on CSS custom properties means that customizations do not break &mdash; or break far less often &mdash; as the software&rsquo;s UI evolves.</p>\n\n\n\n<p>While the focus right now is on color schemes, nothing is stopping WordPress from moving onto other features in the future. It is possible to set up a global styles system for designers to skin the admin in all kinds of interesting ways without breaking anything. Minor options like the border-radius of buttons, font-family choices, or heading font-sizes would be easy to roll in over time.</p>\n\n\n\n<p>As the block system continues to replace parts of the WordPress admin, custom admin skins will be far easier to maintain. Because everything in the block system is built as a component, it better future-proofs against back-compatibility issues.</p>\n\n\n\n<p>There is a long and winding path toward a feature-complete admin skinning system. However, it is not outside the realm of possibility.</p>\n\n\n\n<p>I look forward to the day when theme authors can easily roll out admin designs that match the front end. Perhaps integration with the block system&rsquo;s <code>theme.json</code> is a possibility. I would not mind seeing a separate admin theme directory in the future either. The use case may be too niche at this point, but it never hurts to keep the idea in the back of everyone&rsquo;s mind.</p>\n\n\n\n<p>If nothing else, the move to custom properties lets the team clean up the admin CSS and makes it easier to add custom color schemes. That is a win for the WordPress project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Feb 2021 22:16:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WordPress 5.7 Will Make It Easier to Migrate From HTTP to HTTPS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2593:\"<p>The next major release of WordPress will make it much easier for users to <a href=\"https://core.trac.wordpress.org/changeset/50131\">migrate their sites from HTTP to HTTPS</a>. It introduces new capabilities to detect if the user&rsquo;s hosting environment has support for HTTPS and provides a one-click update process, handling mixed content rewrites where possible.</p>\n\n\n\n<p>&ldquo;A major pain point in WordPress has been the migration of a WordPress site from HTTP to HTTPS: While changing the Site Address and WordPress Address to use HTTPS is trivial, updating references to the old URLs in existing content is not,&rdquo; WordPress Core Committer Felix Arntz said in the <a href=\"https://core.trac.wordpress.org/ticket/51437\">ticket</a> proposing the feature. &ldquo;It cannot be accomplished within core UI and requires use of more advanced tools, such as WP-CLI or plugins like Better Search Replace, which is a no-go for most users.&rdquo;</p>\n\n\n\n<p>In WordPress 5.6, there is no clear guidance in the Site Health screen about how to migrate to HTTPS, even though it shows as an issue. The user would need to learn more about how to update it manually, starting with changing the site URLs. </p>\n\n\n\n<p>In WordPress 5.7, if HTTPS is supported, the Site Health Status screen will notify users and guide them with a new button that updates the site with a single click. It also migrates the site content on the fly to use HTTPS for URLs. Arntz recorded a video demo of the update:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>This change also comes with new environment variables and filters that allow hosting providers to change the URLs linked in the HTTPS status check in Site Health, so they can more effectively manage it for their customers&rsquo; hosting options. This is similar to how hosts can modify URLs for updating the PHP version, which has had a positive impact on getting sites running on supported versions of PHP.</p>\n\n\n\n<p>It&rsquo;s important to note that the streamlined HTTP to HTTPS migration in 5.7 does not handle updating content in the database. Also, if a site&rsquo;s URLs are controlled by constants, the update is not possible to complete automatically. In these instances, the HTTPS status check on the Site Health screen will inform the user why the site would need to be manually updated.</p>\n\n\n\n<p>More technical details are available in the <a href=\"https://core.trac.wordpress.org/ticket/51437\">ticket</a> and<a href=\"https://core.trac.wordpress.org/changeset/50131\"> commit message</a>, and a dev note should be forthcoming.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Feb 2021 19:08:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: Block Manager Redesign Coming Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111349\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://wptavern.com/block-manager-redesign-coming-soon?utm_source=rss&utm_medium=rss&utm_campaign=block-manager-redesign-coming-soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4379:\"<p>WordPress&rsquo; block management interface was <a href=\"https://wptavern.com/gutenberg-5-3-introduces-block-management-adds-nesting-to-the-cover-block\">introduced in Gutenberg 5.3</a>, released in March 2019, and is due for an update. In case you haven&rsquo;t explored the editor&rsquo;s Tools menu, the block manager setting allows you to select which blocks will be shown or hidden in the block inserter.</p>\n\n\n\n<p>Last week, Automattic engineer Nik Tsekouras opened a new issue in the Gutenberg repository for tracking <a href=\"https://github.com/WordPress/gutenberg/issues/28572\">block manager enhancements</a>. A few planned enhancements are already on deck, including moving the block manager into the Preferences Modal, redesigning it to use panels, and adding support for <a href=\"https://github.com/WordPress/gutenberg/issues/27708\">toggling block variations</a> on and off.</p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/pull/28329\">updated Preferences Modal</a> is expected in the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/milestone/141\">Gutenberg 9.9</a>&nbsp;milestone, which will be included in WordPress 5.7. (Gutenberg versions 9.3 &ndash; 9.9 will be rolled into the release.) Moving the block manager into its future home inside the Preferences modal will be completed in a follow-up PR, since it needs to be refactored to use the panels design. Tsekouras shared a gif of the design plan for this update:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/ccaOScZFCHe\"><img src=\"https://cldup.com/AlD8gnb5Wn.gif\" alt=\"Block manager update\" width=\"3002\" height=\"2288\" /></a>\n</div>\n\n\n\n<p>In the discussion on the tracking issue, Birgit Pauli-Haack requested that the updated block manager also include information about how many times each particular block is used on the site. She <a href=\"https://github.com/WordPress/gutenberg/issues/28572?mc_cid=e944847429&mc_eid=68ffa9a210#issuecomment-770220305\">described</a> a common scenario where this feature could be helpful:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We recently took a site live were multiple team members collaborated designing the site and adding content, each aiming for the best outcome with blocks.</p><p>Some installed additional blocks from plugins to test and provide options or just do a proof of concept.</p><p>Before we took the site live, we noticed there are now 148 blocks available over 4 additional plugins + core.</p><p>We now have no way to find out which blocks were used over 40 pages and posts. I looked at a few Block managers plugins and none seems to be able to provide an answer to a fairly basic question:<br />Which blocks did we actually use throughout the site?</p><p>We would need the information to decide on which plugin can we safely uninstall.and which should we keep.</p><p>A revamp of Block managers could &ndash; and should- provide an answer.</p></blockquote>\n\n\n\n<div class=\"wp-block-image\"><img />An example of instances displayed in the Find My Blocks plugin</div>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/find-my-blocks/\">Find My Blocks</a> plugin, created by Eddy Sims, offers a more advanced version of what Pauli-Haack is requesting. It has its own dedicated settings page for displaying a list of the block types in use on the site, along with the number of times each has been used, posts/pages where the blocks are in use, if it is a reusable block, a nested block, and much more information. Pauli-Haack suggests the block manager simply show the number of instances where the block is in use.</p>\n\n\n\n<p>As the block editor becomes more widely adopted, it is going to become imperative for users to be able to see, at a glance, the number of instances where a block is in use. Right now, even those who adopted the block editor right away haven&rsquo;t been using it for more than a few years. Long term, after years of adding blocks, people are going to need more information when managing them, and they may not know about utility plugins like Find My Blocks. </p>\n\n\n\n<p>Discussion is still open on the topic Pauli-Haack raised regarding block manager enhancements. You can subscribe to the new block manager enhancements <a href=\"https://github.com/WordPress/gutenberg/issues/28572\">tracking issue</a> if you want to follow the progress on updates coming in the next few months.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Feb 2021 04:14:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordPress Launches WP Briefing Podcast, Episodes Expected Every 2 Weeks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111330\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/wordpress-launches-wp-briefing-podcast-episodes-expected-every-2-weeks?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-launches-wp-briefing-podcast-episodes-expected-every-2-weeks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5097:\"<p class=\"has-drop-cap\">True to its name, the <a href=\"https://wordpress.org/news/podcast/welcome-to-your-wp-briefing/\">first WP Briefing podcast</a> lasted just over 12 minutes. Josepha Haden Chomphosy, the Executive Director of WordPress, jump-started the second month of 2021 with a show that should arrive on the our doorstep every two weeks. With what seems to be overwhelming <a href=\"https://twitter.com/WordPress/status/1356271101559656453\">positive support on Twitter,</a> the podcast was welcomed by the WordPress community.</p>\n\n\n\n<p>This will be different from many other podcasts in the WordPress ecosystem. It will not cater specifically to a developer audience. Chomphosy also said there would be no hot-takes <a href=\"https://twitter.com/JosephaHaden/status/1356277030921244672\">on Twitter</a>. &ldquo;Just bite-sized chunks about the WordPress OSS project and the how/why around what it does.&rdquo;</p>\n\n\n\n<p>The show promises to be short. And, because it will only come around every fortnight, it gives people time to keep up to date at their leisure.</p>\n\n\n\n<p>&ldquo;You can think of this as a sort of WordPress appreciation for any level &mdash; and honestly, all levels of WordPress awareness,&rdquo; said Chomphosy of the podcast&rsquo;s purpose. &ldquo;Bite-sized insights into what makes it all work. &ldquo;</p>\n\n\n\n<p>Chomphosy will be running the show every couple of weeks and plans to follow a specific format of three segments:</p>\n\n\n\n<ol><li>An easy-to-digest overview of a cool WP philosophy.</li><li>A highlight of a community success story or a noteworthy contributor.</li><li>A small list of big things to know about (or do) in the coming weeks.</li></ol>\n\n\n\n<p>Guest speakers may join the show from time to time to cover specific topics when their expertise is warranted.</p>\n\n\n\n<p>A common theme in the past few years, particularly as the pace of block development has quickened, is that many people find it hard to keep up with the project. Even those who are neck-deep in WordPress development can feel a little lost at times. A podcast built on the idea of keeping the community in the loop may even be a bit overdue.</p>\n\n\n\n<p>&ldquo;It&rsquo;s been on my list of needs since late 2017, but hasn&rsquo;t been my highest priority during that time,&rdquo; said Chomphosy. &ldquo;It&rsquo;s been years since WordPress has been small enough for any single, part-time contributor to keep track of what&rsquo;s next. Contributors across the project are doing excellent work to communicate efficiently about the work we&rsquo;re all focused on, but it never hurts to lend some clarification where possible.&rdquo;</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/seriously-simple-podcasting/\">Seriously Simple Podcasting</a> plugin currently powers the podcast. The plugin is developed by Castos, which is a podcasting host and analytics service. It has over 20,000 active installs and a 4.8-star rating.</p>\n\n\n\n<p>Chomphosy said they chose Seriously Simple Podcasting because the WP Briefing crew was already familiar with it. &ldquo;I didn&rsquo;t want to ask folks to learn an entirely new software while we&rsquo;re still working out the process.&rdquo;</p>\n\n\n\n<p>The first episode focused on an introduction to WP Briefing. The overview segment covered three trends in action from Matt Mullenweg&rsquo;s <a href=\"https://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing\">State of the Word 2020</a> address. Dave Loodts was this week&rsquo;s success story after sharing how he &ldquo;blindly&rdquo; chose a career in freelance web development and is still going strong after 15 years (<em>congrats, Dave!</em>). Chomphosy wrapped up the podcast with notes on Full Site Editing, <a href=\"https://wptavern.com/learn-wordpress-platform-launches-with-free-courses-workshops-and-lesson-plans\">Learn WordPress</a>, and automation tools to help contributor teams.</p>\n\n\n\n<p>It is definitely worth a listen if you can spare a few minutes. I am excited to see where this project goes in the future and see how it helps keep more of the community in <em>the loop</em>.</p>\n\n\n\n<p>If I had one feature request, it would be for the development team to put the podcast player in the WordPress embed, which is easy enough to do with a custom embed template. This would let bloggers embed the show on their pages and share it with more people.</p>\n\n\n\n<p>However, there may be ways to embed it via third-party services down the road. &ldquo;It just went live and we&rsquo;re working on getting it listed everywhere,&rdquo; said Automattician Marcus Kazmierczak in response to <a href=\"https://twitter.com/gkurushin/status/1356273579273428995\">whether it would be on Google Podcasts or Spotify</a>. &ldquo;Hopefully it&rsquo;ll be showing up shortly.&rdquo;</p>\n\n\n\n<p><strong>Update:</strong> the embed now includes the audio player:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/news/podcast/welcome-to-your-wp-briefing/\">Welcome to your WP Briefing</a></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Feb 2021 21:52:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Upsells, Barriers, and the End/Beginning of the Quality $free Themes Era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/upsells-barriers-and-the-end-beginning-of-the-quality-free-themes-era?utm_source=rss&utm_medium=rss&utm_campaign=upsells-barriers-and-the-end-beginning-of-the-quality-free-themes-era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14535:\"<blockquote class=\"wp-block-quote\"><p>The WordPress.org theme directory is becoming little more than a crippleware distributor. I suppose it was inevitable given its reach, which can be worth $1,000s/month for theme authors.</p><cite>Justin Tadlock <a href=\"https://twitter.com/justintadlock/status/1147472529113698311\">via Twitter</a></cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">As I think back on that tweet from 2019, I realize how unfair it was to refer to the themes coming into the directory as &ldquo;crippleware.&rdquo; At the time, I was a part of the Themes Team (formerly the Theme Review Team). However, there were real cases of crippleware submitted to the directory when I wrote that.</p>\n\n\n\n<p>To define crippleware: some themes blocked core WordPress features and made them available via the &ldquo;pro&rdquo; versions. It was one of the more blatant abuses of the free themes directory I had seen for a profit.</p>\n\n\n\n<p>However, the term does not represent the majority of themes submitted. Most of what we see today are &ldquo;lite&rdquo; themes. Some of them are well-designed themes that provide value to end-users at no cost. Others are stripped-down versions of what you would typically see from a starter theme. While they are fully functional &mdash; the Themes Team&rsquo;s rules have been strict on this requirement &mdash; the real value of the theme is in the upsell.</p>\n\n\n\n<p>This is not the start of an anti-commercial theme rant. When WordPress developers and agencies are successful, it benefits the whole ecosystem. But, how do we balance that with providing value &mdash; which is subjective, I know &mdash; to the free theme directory? How do we transition the theme directory to something flowing with more artistic or even experimental ideas?</p>\n\n\n\n<h2>Guidelines and Stumbling Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">Matt Mullenweg, WordPress co-founder and project lead, posted the following on the Post Status Slack <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1610310645240600\">two weeks ago</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The .org theme directory is particularly bad when you compare it to any half-decent commercial theme marketing page, or the designs available on other site building services or Themeforest directories. The .org theme directory rules and update mechanism have driven out creative contributions, it&rsquo;s largely crowded out by upsell motived contributions.</p></blockquote>\n\n\n\n<p>There is a lot to unpack in his statement. I agree with most of it. The Themes Team agrees with at least some of it. However, its members lack direct control over the system outside of the guidelines.</p>\n\n\n\n<p>&ldquo;I actually agree with this in a sense,&rdquo; said Themes Team rep William Patton. &ldquo;Creativity has not prospered in the directory, and I think a large part of it is the barrier of entry. &lsquo;Don&rsquo;t do bad things&rsquo; is the overarching guideline for the theme directory, but that can be viewed very subjectively. If it were the only guideline we would see a lot of things that might not be best suited here. If we want to encourage creativity then more freedom to express it would likely be a good way to start bringing it back. However, it can be hard to know where the line should be placed.&rdquo;</p>\n\n\n\n<p>The team sometimes gets pulled in two different directions. When the project lead asks for things to be more open, many members rally around that idea. On the other hand, the call for <a href=\"https://wptavern.com/why-accessibility-matters-for-wordpress-themes-and-their-users\">stricter accessibility requirements</a>, for example, are popular with others in the community. It is a choice between two ends of the spectrum that are tough to pull together as the gatekeepers to the official directory.</p>\n\n\n\n<p>&ldquo;Why couldn&rsquo;t it be more like the plugin directory?&rdquo; asked Mullenweg. &ldquo;That has all the same potential issues and has been working pretty well. I&rsquo;d like it to work just like the plugin directory, with direct access for authors, and most reviews being post-review vs. pre-review.&rdquo;</p>\n\n\n\n<p>The Themes Team is not against the idea. More than anything, they just need the help to make any significant change.</p>\n\n\n\n<p>&ldquo;Having the themes directory work like the plugins directory would be great!&rdquo; said Themes Team rep Ari Stathopoulos. &ldquo;And, in fact, it&rsquo;s something we&rsquo;ve all been asking for years, but there are many technical challenges because they are built fundamentally differently. Plugin authors have access to their plugin&rsquo;s SVN while themes don&rsquo;t. Theme reviews are public while plugin reviews are private and closed. There would need to be lots of changes in systems and meta. Not to mention that, as far as I know, plugins don&rsquo;t do post-reviews, they do pre-reviews the first time a plugin is uploaded and post-reviews for updates (which is exactly what happens in themes too).&rdquo;</p>\n\n\n\n<p>The team has created tickets, asked for help, and have generally awaited a champion to push innovative ideas &mdash; or any ideas &mdash; forward. <em><a href=\"https://meta.trac.wordpress.org/ticket/215\">Seven-year-old ticket</a> to support the standard readme files available to plugins?</em> No takers as of yet. <em><a href=\"https://meta.trac.wordpress.org/ticket/5504\">Allowing block-based themes</a> to be uploaded?</em> Maybe we can make that happen sometime soon.</p>\n\n\n\n<p>The guidelines are likely less crippling than the outdated Trac review system, uploading ZIP files for updates (which Mullenweg mentioned), the limitation of a <code>style.css</code> header for the theme description, and the lackluster theme previewer.</p>\n\n\n\n<img />Theme review system on Trac.\n\n\n\n<p>For the most part, nearly every guideline has been put in place in hindsight. The team finds consistent abuse or issues and course-corrects.</p>\n\n\n\n<p>&ldquo;I don&rsquo;t think that Matt&rsquo;s idea of a creative theme is a theme that is not secure or not compatible with GPL,&rdquo; said team repo Carolina Nymark. &ldquo;Creativity is not limited by being asked to sanitize options. It is not limited by making sure that your theme can be translated. If the reviewers saw creative, beautiful themes that lacked in some other aspect like basic accessibility, then the team could help explain to the theme author what kind of changes are necessary. But that is not the kind of themes that are being submitted.&rdquo;</p>\n\n\n\n<h2>Financial Incentive</h2>\n\n\n\n<p class=\"has-drop-cap\">In the mid-2000s, the average theme developer could get away with building an entire theme on a lazy weekend afternoon. WordPress was far less complicated. Theme development was not a race to the bottom, bundling every feature imaginable.</p>\n\n\n\n<p>Today, we live in the era of the multi-purpose theme. To soar to the top of the popular list, most themes need to handle everything from being the online face of a pizza restaurant to masonry grids for artist portfolios. They also either need good luck, name recognition, or good marketing. That is the reality for the average theme developers trying to make a name for themselves.</p>\n\n\n\n<p>It makes for boring themes in a free theme directory. If the theme author has any financial motivation behind creating a WordPress theme, they need to bundle the <em>nicer</em> features into a paid package.</p>\n\n\n\n<p>As Eric Karkovack wrote in his piece for Speckyboy, <a href=\"https://speckyboy.com/are-high-quality-free-wordpress-themes-a-thing-of-the-past/\">Are High-Quality Free WordPress Themes a Thing of the Past?</a>, &ldquo;Money changed the equation.&rdquo;</p>\n\n\n\n<p>There is not much incentive to push a free theme out to the directory just for fun. Most themers are spending a month or more of their time in today&rsquo;s ecosystem to build a theme. The days of the weekend-afternoon project seem all but gone.</p>\n\n\n\n<p>Even releasing a theme to give back can often be a letdown. There is little chance of any name recognition as the developer&rsquo;s creation is swamped by the hordes of lite themes in control of the directory. There is no way for unknown players to get any exposure through the directory except in the brief moments their theme lands in the latest themes list. It is that one make-or-break moment that could potentially help best the algorithm and slip into the nearly unattainable popular list.</p>\n\n\n\n<p>In comparison to Themeforest, the WordPress.org directory is lacking. Themeforest is inviting to users because it provides the backend tools for theme authors to market their themes. They can load up custom demos, provide screenshots, use a modern categorization system, and provide all sorts of extra data to end-users. They&rsquo;re in the business of selling a product to users. </p>\n\n\n\n<img />WordPress themes on ThemeForest\n\n\n\n<p>While WordPress.org may be free, it should still be selling the promise of a beautiful website to its users. I have always said it, the themes available on WordPress.org are the face of WordPress.</p>\n\n\n\n<p>Users deserve better. Theme authors deserve better tools to make it happen.</p>\n\n\n\n<p>Even with better tools and a better-designed directory in place, there is no guarantee of an uptick of creative contributions or a better overall balance that keeps pure upsells in check.</p>\n\n\n\n<p>&ldquo;I think that due to the reach a theme or plugin that becomes popular quickly commands, monetization is a necessity to be able to properly &lsquo;support&rsquo; such an endeavor,&rdquo; said Joost de Valk, CPO of Yoast, in response to Mullenweg&rsquo;s statement on Post Stats. &ldquo;I think the community also &lsquo;demands&rsquo; a certain stability and a certain level of support that is simply unfeasible to expect from any non paid contributor. Because WordPress.org has no way of doing that monetization &lsquo;on platform,&rsquo; this is what you end up with.&rdquo;</p>\n\n\n\n<p>He also argued that something akin to an app store would make things like the &ldquo;balkanization from non-G-based site builders&rdquo; less attractive to theme authors. Such a store has little or no chance of becoming a reality.</p>\n\n\n\n<p>&ldquo;I think we first need to agree on what the theme directory should be,&rdquo; he said. &ldquo;We need a &lsquo;mission statement,&rsquo; of sorts. And I think we probably need less control than we currently have, be much more like the plugin directory. But if we have a vision of what it should be, then we could work towards that.&rdquo;</p>\n\n\n\n<p>There is an opportunity to turn things around. Full Site Editing will leave ample room for releasing creative, fully-featured themes with upsells. There is plenty of reason to be excited about pattern design and template packs, <a href=\"https://wptavern.com/block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors\">better value-adds</a> for theme authors who want to upsell. The problem is going to be getting authors to abandon traditional themes and explore new terrain.</p>\n\n\n\n<h2>Changes Are Coming, Maybe, Hopefully</h2>\n\n\n\n<img />Popular listing on the WordPress theme directory.\n\n\n\n<p class=\"has-drop-cap\">For some, this is a song and dance they already know the lyrics and steps to. It is a years-long conversation that has netted little in return.</p>\n\n\n\n<p>However, the WordPress.org theme directory may be forced to change one way or another. Block-based themes are not arriving in some distant future; they are knocking at the door. Full Site Editing is slated to <a href=\"https://wptavern.com/wordpress-roadmap-update-full-site-editing-targeted-for-5-8-release-in-june-2021\">land in WordPress 5.8</a> this June.</p>\n\n\n\n<p>With this change, the WordPress.org theme directory needs to be prepared. Even with a move today, it will be a mad scramble to get systems ready in a handful of months. If waiting for the last minute, it is just asking for chaos. Block-based themes should already be <a href=\"https://meta.trac.wordpress.org/ticket/5504\">allowed to be uploaded</a>, for example.</p>\n\n\n\n<p>As we saw earlier this week, Automattic launched its <a href=\"https://wptavern.com/automattic-launches-the-blank-canvas-wordpress-theme-for-building-single-page-websites\">Blank Canvas</a> theme. It is designed to work on single-page websites. It does not support commenting out of the box, which is a requirement for inclusion into the official directory.</p>\n\n\n\n<p>Block-based themes will forever change the system. In the past, traditional themes needed to cover all their bases, integrating with every front-end feature of WordPress. In the future, that is not necessarily the case. Because everything will be built from blocks and users will have direct access to customize those blocks, a theme has no need to cover everything. The user can add and remove features at their leisure.  The review guidelines need to be molded for this future.</p>\n\n\n\n<p>Full Site Editing almost seems purpose-built for outside-the-box theme designers. Whether it is a simple, one-page wedding invitation or an author&rsquo;s book landing page, there are more possibilities upcoming than there ever were in the past. And, these things will be far easier to build on the theme-design side of things. It will remove a lot of burden from developers and from the Themes Team during reviews.</p>\n\n\n\n<p>&ldquo;Regarding the FSE themes: to be honest all my hopes are there,&rdquo; said Stathopoulos. &ldquo;They are very different, and it&rsquo;s a fresh start for the repository. New theme paradigm, a different set of rules (with of course some overlap for basic things), and a new way of doing things and thinking about themes. However, if they are presented in the same way in the same repo we have now, then nothing will change. the theme repo <em>needs</em> to change, and there&rsquo;s no way around that. But that&rsquo;s a decision that will have to be made from the WordPress leadership and implemented by meta.&rdquo;</p>\n\n\n\n<p>As always, I remain optimistic about the future of WordPress themes, hoping for the ushering in of a new era. I get the sense that the Themes Team shares some of that enthusiasm, at least cautiously so. More than anything, they need the community, particularly theme authors, to chip in and shape that vision of what the WordPress theme directory should be.</p>\n\n\n\n<p>Perhaps today, the stars are nearing alignment. Mullenweg plans to chat with the team and gather feedback in the coming weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Jan 2021 22:53:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: GitLab Drops Bronze/Starter Tier in Pricing Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111219\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://wptavern.com/gitlab-drops-bronze-starter-tier-in-pricing-update?utm_source=rss&utm_medium=rss&utm_campaign=gitlab-drops-bronze-starter-tier-in-pricing-update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5745:\"<p>This week GitLab <a href=\"https://about.gitlab.com/blog/2021/01/26/new-gitlab-product-subscription-model/\">announced</a> a pricing change that eliminates its Bronze/Starter tier in favor of a three-tier subscription model. The Starter tier, previously offered at $4/month, included features like single-team project management, next day business support, and 2,000 CI/CD minutes.</p>\n\n\n\n<img />GitLab Pricing prior to Jan 26, 2021 Update\n\n\n\n<p>GitLab&rsquo;s updated <a href=\"https://about.gitlab.com/pricing/\">pricing</a> page shows the benefits that were included in the Starter plan are now only available in the Premium tier at a 5x price increase, introducing a larger gap between free accounts and paying customers. The change specifically impacts those who were happy to pay for a few extras but don&rsquo;t need the full array of premium features.</p>\n\n\n\n<img />\n\n\n\n<p>GitLab is offering to transition customers at a discount, where existing customers have the option to renew at the current price for an additional year or upgrade to Premium at a discount. The company also makes a case for the free tier, which it says includes 89% of the features in Bronze/Starter, with 450 new features added last year. </p>\n\n\n\n<p>&ldquo;The Bronze/Starter tier does not meet the&nbsp;<a href=\"https://www.investopedia.com/terms/h/hurdlerate.asp\">hurdle rate</a>&nbsp;that GitLab expects from a tier and is limiting us from investing to improve GitLab for all customers,&rdquo; GitLab co-founder and CEO Sid Sijbrandij said. &ldquo;Ending availability of the Bronze/Starter tier will help us accelerate development on&nbsp;customers&rsquo; priority needs&nbsp;such as improving usability, availability, performance, and delivering enterprise-grade security and compliance.&rdquo;</p>\n\n\n\n<p>It makes sense that GitLab is turning its attention to factors like &ldquo;hurdle rate,&rdquo; as Sijbrandij told <a href=\"https://www.cnbc.com/2021/01/15/gitlab-ceo-eyes-public-market-after-secondary-valued-it-at-6-billion-.html\">CNBC</a> that he&rsquo;s still looking to take the company public after a late 2020 employee share sale, which valued the company at $6 billion. GitLab passed $150 million in annual recurring revenue in 2020, but is tightening up its subscription model as the company tailors commercial offerings for those who need DevOps features.</p>\n\n\n\n<p>GitLab did not share the pricing update announcement on Twitter, perhaps in anticipation of how controversial it would be. The company posted the link in the <a href=\"https://forum.gitlab.com/t/new-gitlab-product-subscription-model/45923\">GitLab forums</a> where customers expressed disappointment in the change.</p>\n\n\n\n<p>&ldquo;We are currently paying Bronze level because there are some features that we find interesting,&rdquo; Riccardo Padovani said. He specifically referenced issue weights, iterations, multiple issue assignees, and issue dependencies.</p>\n\n\n\n<p>&ldquo;These features are now in the premium level. We were not interested in the previous &lsquo;silver&rsquo; level. On the long term, this is basically a 5 times price increase. Being a vocal supporter of GitLab in my company,&nbsp;<strong>I am not happy about this, at all</strong>.&rdquo;</p>\n\n\n\n<p>One customer said the change &ldquo;feels like a bit of a kick in the teeth,&rdquo; while another noted that GitLab&rsquo;s mid-tier offering costs just one dollar less than <a href=\"https://github.com/pricing\">GitHub&rsquo;s enterprise plan</a>. Many of GitLab&rsquo;s existing Starter tier customers have a large number of users who are not developers and do not have access to code or pipeline features. They are supporting staff who check bug reports or project management teams that create issues. Without the ability to pay per user role, upgrading every seat in the team to Premium doesn&rsquo;t make sense for these types of use cases. </p>\n\n\n\n<p>Customers who had recently convinced their organizations to go with GitLab, along with those who have invested time developing processes around the Starter tier features, are some of the most vocal opponents to the change. Some <a href=\"https://forum.gitlab.com/t/new-gitlab-product-subscription-model/45923/42\">found the announcement off-putting</a>, as it made it seem like paying Starter plan customers were actually costing GitLab money, requiring the tier to be eliminated. Many expressed that they only signed up for the tier to support GitLab and that they only used a handful of the features.</p>\n\n\n\n<p>&ldquo;It&rsquo;s worth pointing out that you say that &lsquo;many Bronze/Starter customers adopted Gitlab just for source code management,&rsquo; &ndash; yes &ndash; that&rsquo;s exactly what we use Gitlab for,&rdquo; one customer said. &ldquo;We don&rsquo;t use CI, Issue Tracking, or any other features offered even in the free version, but we do want to have a couple of the SCM features offered in the Bronze/Starter tier. Do you really think that customers like us that are only looking for SCM are going to pay more for unnecessary features?&rdquo;</p>\n\n\n\n<p>The GitLab employees in the thread seemed ready to defend the decision against the onslaught of criticism. While a few said they will take customers&rsquo; concerns and feedback under consideration, most were prepared to assure critics that the decision was made &ldquo;through extensive research,&rdquo; which likely leaves those most affected further alienated, if the 5x cost increase didn&rsquo;t already make the decision for them. Bronze/Starter tier customers who are still examining their options can find the various transition paths in the pricing change <a href=\"https://about.gitlab.com/blog/2021/01/26/new-gitlab-product-subscription-model/\">announcement</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Jan 2021 19:16:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WordPress Foundation: do_action hackathons and open-source workshops in 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=172229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wordpressfoundation.org/2021/do_action-hackathons-and-open-source-workshops-in-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6654:\"<p>In 2020, we saw do_action events and open-source workshops move online. Around the world, community members organized 5 do_action hackathons (<a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">4 of which were online</a>) and a handful of <a href=\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">open-source workshops</a> last year. In moving these events online, community organizers not only brought their WordPress community closer together, but they were also able to make a positive impact on their local or regional community in an exceptionally-difficult year.&nbsp;&nbsp;</p>\n\n\n\n<p>Seeing this impact, we would like to help more organizers host even more of these online charity hackathons (do_action events) and Introduction to Open Source workshops in 2021. This post shares more information for community organizers who would like to organize do_action events in 2021.</p>\n\n\n\n<h3>do_action charity hackathons</h3>\n\n\n\n<p>Based on feedback from the community members, <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">do_action events so far have been quite impactful</a> in how they bring participants together to help non-profits establish an online presence, something all the more significant in 2021. Here is how we plan to support do_action events in 2021:</p>\n\n\n\n<ul><li><strong>Improving the online do_action event documentation: </strong>The community team is currently working on revamping the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/organising-an-online-do_action-event/\">documentation for online do_action events</a> to include tips on remote collaboration, using collaboration tools, remote project management etc. Additionally, we will be reaching out to past do_action organizers to share recaps and help share task lists to help organizers get used to the online event format.&nbsp;</li><li><strong>Sponsored accounts:</strong> Organizers can reserve and use <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/getting-started/special-virtual-events-zoom-request/\">Community-sponsored Zoom Pro accounts</a> for their events.&nbsp;</li><li><strong>Countrywide do_action events: </strong>There were <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">a few countrywide do_action</a> events in 2020. More regional/countrywide events are encouraged.&nbsp;</li><li><strong>Linking do_action events with WordCamps and mentoring: </strong>Since WordCamps are also online, organizers can organize do_action events in tandem with their online WordCamps, for more impact. Similarly, new do_action organizers will get mentoring from past organizers/mentors/community deputies.</li><li><strong>Technology changes: </strong>The following changes will be implemented on the doaction.org website in 2021 to support our organizers in a better way:&nbsp;<ul><li>doaction.org to Google Workspace / G Suite (so that organizers can use custom emails &#8211; get access to a branded Google Workspace account) &#8211; <em>Due March 2021</em></li><li>Doaction.org will be modified to support multiple event dates. &#8211; <em>Due June 2021</em></li><li>The do_action application will be moved to doaction.org.- <em>Due June 2021</em></li></ul></li></ul>\n\n\n\n<p>Does all of this sound exciting? If you would like to organize a do_action event in your locality, please <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/do_action-event-application/\">send in your application through this form</a>! Community deputies will get back to you shortly to take it forward.</p>\n\n\n\n<h3>Introduction to Open-source workshops</h3>\n\n\n\n<p>Introduction to Open Source workshops help spread knowledge and understanding of the open web and open source. They have also been instrumental in onboarding new contributors to WordPress. With the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> workshops on<a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\"> Introduction to Open-source</a>, meetup groups could host a watch party of the recorded workshop or <a href=\"https://make.wordpress.org/community/2020/12/08/tuesday-trainings-how-to-organize-a-successful-discussion-group/\">organize a discussion group</a>. Here’s how community members can organize open-source workshops in 2021.&nbsp;</p>\n\n\n\n<ul><li>Community members can now host <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-source workshop</a> discussion groups in the <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">Learn WordPress meetup group</a>. If you would like to host a discussion group for a global audience, please <a href=\"https://learn.wordpress.org/discussion-groups/\">apply to become a discussion group leader</a>.</li><li><a href=\"https://github.com/wptrainingteam/what-is-open-source\">Lesson</a> <a href=\"https://github.com/wptrainingteam/what-you-can-do-with-wordpress\">plans</a> for the Introduction to Open-source workshops are available! Any meetup group can plan their open-source workshop based on the lesson plans.&nbsp;</li><li>Meetup groups worldwide are also encouraged to<a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\"> organize an Introduction to WordPress watch party + discussion group</a> (based on the Learn WordPress workshop on <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-source</a>) as part of their meetup (it does not need any prior approval).&nbsp;</li></ul>\n\n\n\n<p>Organizers can feature these workshops and discussion groups in the WordPress Foundation blogs by <a href=\"https://make.wordpress.org/community/contact/\">reaching out to the community team</a>. Since open-source workshops are online, there is no cost involved in organizing them, but organizers can always <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/getting-started/special-virtual-events-zoom-request/\">request paid zoom accounts for their event</a>.&nbsp;</p>\n\n\n\n<p>The WordPress community has the power to uplift and empower people across the world by organizing these events. Our community organizers have already done stellar work in 2020, despite the challenges posed by the COVID-19 pandemic. As we step into 2021, we look forward to supporting and seeing what organizers do with these online events to help their communities!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Jan 2021 12:55:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hari Shanker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"WPTavern: WP Lookout Lets WordPress Users Track and Receive Notifications for Their Preferred Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/wp-lookout-lets-wordpress-users-track-and-receive-notifications-for-their-preferred-plugins-and-themes?utm_source=rss&utm_medium=rss&utm_campaign=wp-lookout-lets-wordpress-users-track-and-receive-notifications-for-their-preferred-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8074:\"<p class=\"has-drop-cap\"><em>Should WordPress notify users of plugin ownership changes?</em> That was the question that Ian Atkins asked two months ago. WP Tavern readers seemed to think it was a good idea, at least those who commented on our <a href=\"https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes\">coverage of it</a>. However, the original <a href=\"https://meta.trac.wordpress.org/ticket/5509\">Trac ticket</a> has not seen any movement since.</p>\n\n\n\n<p>There are real technical issues with automating the process. A change of ownership does not necessarily equate to a change of the plugin author. This is often the case when someone acquires a company and maintains the brand.</p>\n\n\n\n<p>Tracking such changes does not necessarily need to go through WordPress. Chris Hardie built a service called <a href=\"https://wplookout.com/\">WP Lookout</a> that notifies users of such changes and much more. It has also been available since August of 2020.</p>\n\n\n\n<p>&ldquo;WP Lookout watches for interesting changes to the WordPress themes and plugins that someone cares about,&rdquo; said Hardie. &ldquo;I created WP Lookout for professional WordPress developers, consultants, and site managers who want to stay more informed about the plugins and themes that they (and their clients) depend on.&rdquo;</p>\n\n\n\n<p>While WP Lookout faces the same challenges with plugin ownership changes, it does have an advantage. It also <a href=\"https://wplookout.com/2020/12/tracking-mentions-in-wordpress-news/\">tracks WordPress news organizations</a>, including WP Tavern and <a href=\"https://poststatus.com/\">Post Status</a>. Even if the ownership change is not reflected on the plugin&rsquo;s WordPress.org page, the story may be picked up in the news.</p>\n\n\n\n<p>Hardie launched the news-tracking feature in early December 2020. It includes the <a href=\"https://www.wordfence.com/blog/category/vulnerabilities/\">Wordfence vulnerabilities blog</a> and <a href=\"https://ithemes.com/category/wordpress-vulnerability-roundup/\">iThemes vulnerabilities roundup blog</a> as a part of the service&rsquo;s security notification system. The service also scans change logs for keywords related to security.</p>\n\n\n\n<p>Notifications do not stop there. The WP Lookout tracks plugin, theme, and core WordPress updates. It also supports several commercial plugins such as Advanced Custom Fields Pro, Gravity Forms, and WP Rocket.</p>\n\n\n\n<p>&ldquo;When we first decide to use a theme or plugin on a WordPress site, we hopefully research it thoroughly &mdash; code quality, ratings, support responsiveness, new release history, speed of security fixes, and so on &mdash; but once it&rsquo;s installed it&rsquo;s easy to neglect those important bits of &lsquo;health&rsquo; information over time,&rdquo; said Hardie. &ldquo;Auto-updates are great from many perspectives, but I think anyone who has had to manage and troubleshoot a non-trivial WordPress site over time knows that it&rsquo;s also important to stay aware of, for example, what&rsquo;s happening in the change log or whether ownership of a plugin has changed hands. But nobody wants to log in to wp-admin on a bunch of sites every week to gather that info.&rdquo;</p>\n\n\n\n<p>Hardie said WP Lookout will always have a robust free option for people who just want a daily email notification for a handful of plugins and themes. However, there are paid tiers for customers to access more features. They allow users to track more plugins and themes and get immediate alerts through email, RSS, Slack, or custom webhooks.</p>\n\n\n\n<p>&ldquo;The middle tier supports up to 50 themes/plugins, immediate email notifications, and a personalized RSS feed,&rdquo; he said. &ldquo;The Builder tier supports up to 200 themes/plugins and adds in Slack and custom webhook support along with the option to just get security-related notifications. With more real-world user feedback, we may adjust what&rsquo;s in each tier over time.&rdquo;</p>\n\n\n\n<p>All users get access to the Builder tier for a few weeks after signing up. After that, they must subscribe or stick with the free tier features.</p>\n\n\n\n<h2>How the Service Works</h2>\n\n\n\n<img />Single plugin tracking history.\n\n\n\n<p class=\"has-drop-cap\">WP Lookout allows users to search for and add a tracker for individual plugins. The service primarily relies on the public WordPress.org API for getting plugin and theme data. This is the same system that WordPress uses to check to see if updates are available.</p>\n\n\n\n<p>&ldquo;But it also goes beyond what the API offers,&rdquo; said Hardie. &ldquo;For example, there&rsquo;s no standard yet for theme authors to provide .ORG theme change logs, and so that information doesn&rsquo;t show up when you go to update a theme in wp-admin; you&rsquo;d have to go poking around in Trac or source files to find it. So WP Lookout follows the trail to the change log details and <a href=\"https://wplookout.com/2020/08/wordpress-theme-changelog-details/\">puts that right in front of you</a>.&rdquo;</p>\n\n\n\n<img />Active plugin trackers.\n\n\n\n<p>There is also a <a href=\"https://wordpress.org/plugins/wp-lookout/\">WP Lookout plugin</a> available in the plugin directory. It uses an API key, which users can get from the WP Lookout website. The plugin then lets the WP Lookout service know what plugins and themes are installed and adds them as trackers. Using the plugin is far more efficient than manually adding individual plugins and themes.</p>\n\n\n\n<p>For plugins and themes that are not on WordPress.org, the service uses custom update APIs provided by the third-party developers. If that is not sufficient, it uses webpage scraping. For news sources, it parses RSS feeds.</p>\n\n\n\n<p>&ldquo;It&rsquo;s been interesting to see the wide variety of ways that WordPress theme and plugin authors do or don&rsquo;t manage and present data publicly about their products,&rdquo; said Hardie. &ldquo;Some have API endpoints that return the same level of detail as the .ORG API, others have change log/version documents generated by some internal tools, and still others don&rsquo;t bother doing much at all. I think an argument could be made to standardize on something here for the long-run to help boost the culture of keeping software updated, even/especially if it eventually makes the need for a tool like WP Lookout obsolete.&rdquo;</p>\n\n\n\n<h2>The Future of WP Lookout</h2>\n\n\n\n<p class=\"has-drop-cap\">Hardie has no plans of sitting on what he has already built. One of the next goals is regularly adding new themes and plugins that are not on WordPress.org. This will mean connecting with development teams and figuring out how users can get notifications of things that often have no public APIs. The lack of standardization in the space could be a tough hurdle to jump.</p>\n\n\n\n<p>&ldquo;I have a long list of features I&rsquo;m planning to add, including things like integrating tracking GitHub repo releases, bringing some helpful data points from WP Lookout into the wp-admin interface, WordPress Packagist integration, allowing per-tracker Slack channel configurations, better internationalization, and better handling of change logs that theme/plugin authors chose to maintain outside of their .org code repositories,&rdquo; he said.</p>\n\n\n\n<p>Hardie does not want to get too far ahead of himself with feature ideas. He said he is excited to get more feedback from users about what they find useful. Currently, there are 80 users, which is publicly available data. WP Lookout maintains an <a href=\"https://wplookout.com/open/\">open data and financial transparency page</a>.</p>\n\n\n\n<p>&ldquo;Despite having paid options for more advanced users, I mostly think of this as a service I want to operate for the WordPress community, and I&rsquo;ll always have a robust set of free functionality,&rdquo; he said. &ldquo;I&rsquo;m also committed to participation in Five for the Future, bringing what I&rsquo;ve learned here back into improvements that might benefit all WordPress users, whether they take advantage of WP Lookout or not.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Jan 2021 21:56:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: ElasticPress.io Service Considers Next Move after Elasticsearch Abandons Open Source Licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:253:\"https://wptavern.com/elasticpress-io-service-considers-next-move-after-elasticsearch-abandons-open-source-licensing?utm_source=rss&utm_medium=rss&utm_campaign=elasticpress-io-service-considers-next-move-after-elasticsearch-abandons-open-source-licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6933:\"<p>Elastic, makers of the search and analytic engine&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.elastic.co/what-is/elasticsearch\" target=\"_blank\">Elasticsearch</a>, have re-licensed its core product so that it is no longer open source. The company is moving new versions of both Kibana and Elasticsearch from the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.apache.org/licenses/LICENSE-2.0\" target=\"_blank\">Apache 2.0-license</a>&nbsp;to be dual-licensed under the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.mongodb.com/licensing/server-side-public-license\" target=\"_blank\">Server Side Public License (SSPL)</a>&nbsp;and the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt\" target=\"_blank\">Elastic License</a>, which do not meet the <a href=\"https://opensource.org/osd\">Open Source Definition</a>. </p>\n\n\n\n<p>In a post titled &ldquo;<a href=\"https://www.elastic.co/blog/why-license-change-AWS\">Amazon: NOT OK &ndash; why we had to change Elastic licensing</a>,&rdquo; Elastic blames Amazon for the license change:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our license change is aimed at preventing companies from taking our Elasticsearch and Kibana products and providing them directly as a service without collaborating with us.</p><p>Our license change comes after years of what we believe to be Amazon/AWS misleading and confusing the community &ndash; enough is enough.</p></blockquote>\n\n\n\n<p>Elastic claims AWS&rsquo;s behavior has &ldquo;forced&rdquo; the company to abandon its open source licensing, citing examples of what they perceive to be &ldquo;ethically challenged behavior.&rdquo; In 2019, Amazon created an Open Distro for Elasticsearch, and Elastic claims they used code copied by a third party from their commercial code, further dividing the community.</p>\n\n\n\n<p>As a result of the license change, Amazon <a href=\"https://aws.amazon.com/blogs/opensource/stepping-up-for-a-truly-open-source-elasticsearch/\">announced</a> its intention to officially fork Elasticsearch and Kibana, with plans to roll the forks into its Open Distro distributions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our forks of Elasticsearch and Kibana will be based on the latest ALv2-licensed codebases, version 7.10. We will publish new GitHub repositories in the next few weeks. In time, both will be included in the existing Open Distro distributions, replacing the ALv2 builds provided by Elastic. We&rsquo;re in this for the long haul, and will work in a way that fosters healthy and sustainable open source practices&mdash;including implementing shared project governance with a community of contributors.</p></blockquote>\n\n\n\n<p>The Open Source Initiative (OSI) <a href=\"https://opensource.org/node/1099\">reacted</a> to the news of the license change, calling the SSPL a &ldquo;fauxpen&rdquo; source license:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Fauxpen source licenses allow a user to view the source code but do not allow other highly important rights protected by the <a href=\"https://opensource.org/osd\">Open Source Definition</a>, such as the right to make use of the program for any field of endeavor. By design, and as explained by <a href=\"https://www.elastic.co/blog/licensing-change\">the most recent adopter</a>, Elastic, in a post it unironically titled &ldquo;<a href=\"https://www.elastic.co/blog/licensing-change\">Doubling Down on Open</a>,&rdquo; Elastic says that it now can &ldquo;restrict cloud service providers from offering our software as a service&rdquo; in violation of OSD6. Elastic didn&rsquo;t double down, it threw its cards in.</p></blockquote>\n\n\n\n<p>Elastic&rsquo;s license changes may affect a few companies in the WordPress ecosystem that are redistributing Elasticsearch as a commercial offering. <a href=\"https://10up.com/\">10up</a>, creators of <a href=\"https://wordpress.org/plugins/elasticpress/\">ElasticPress</a>, by far the most popular Elasticsearch plugin for WordPress, also runs the&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://elasticpress.io/\">ElasticPress.io</a>&nbsp;SaaS platform. More than 6,000 sites are using the open source plugin, but the company said these users will not be affected.</p>\n\n\n\n<p>&ldquo;No matter what this won&rsquo;t affect the EP plugin,&rdquo; 10up vice president of engineering Taylor Lovett said. &ldquo;I would say the news is definitely discouraging and not a great look for Elastic.&rdquo;</p>\n\n\n\n<p>10up <a href=\"https://wptavern.com/10up-unveils-elasticpress-io-elasticsearch-as-a-service-for-wordpress-sites\">launched</a> ElasticPress.io in 2017 and Lovett says it has become &ldquo;an active part of the business with a plethora of customers,&rdquo; and continues to grow. The company is currently seeking legal advice on how Elasticsearch&rsquo;s licensing change will affect the ElasticPress.io service. Since previous versions of Elasticsearch remain open source, the company has time to figure out a new way forward.</p>\n\n\n\n<p>&ldquo;Right now we really don&rsquo;t know what&rsquo;s going to happen,&rdquo; Lovett said. &ldquo;There is no rush for us to upgrade&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://elasticpress.io/\">ElasticPress.io</a>&nbsp;to Elasticsearch 7.11+ so we have plenty of time to decide how to address the issue.&rdquo;</p>\n\n\n\n<p>Lovett confirmed that 10up is considering using the Amazon fork as an option but has not  made a decision on the matter yet.</p>\n\n\n\n<p>&ldquo;I will say this does affect the end user in a way that they may end up having to choose between different flavors of Elasticserarch,&rdquo; Lovett said.<br /><br />&ldquo;For example, you may need to decide if you want the official Elastic distribution or if you want to go with AWS&rsquo;s fork.&rdquo;</p>\n\n\n\n<p>Unfortunately, for businesses that built services on top of redistributing the previously open source Elasticsearch, Elastic&rsquo;s creators have gone back on <a href=\"https://web.archive.org/web/20200120104750/https:/www.elastic.co/what-is/open-x-pack\">the promise they made in 2018</a> to never change the license of any of the Apache 2.0 code of Elasticsearch, Kibana, Beats, and Logstash projects.&nbsp;As a consequence, Amazon has emerged as the one to drive the truly open source option for Elasticsearch and Kibana for the future.</p>\n\n\n\n<p>&ldquo;Elastic&rsquo;s relicensing is not evidence of any failure of the open source licensing model or a gap in open source licenses,&rdquo; the OSI board of directors stated in a recent <a href=\"https://opensource.org/node/1099\">post</a> on the matter. &ldquo;It is simply that Elastic&rsquo;s current business model is inconsistent with what open source licenses are designed to do. Its current business desires are what proprietary licenses (which includes source available) are designed for.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Jan 2021 20:25:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Automattic Launches the Blank Canvas WordPress Theme for Building Single-Page Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110986\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:237:\"https://wptavern.com/automattic-launches-the-blank-canvas-wordpress-theme-for-building-single-page-websites?utm_source=rss&utm_medium=rss&utm_campaign=automattic-launches-the-blank-canvas-wordpress-theme-for-building-single-page-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7389:\"<img />Split Screen pattern from Blank Canvas.\n\n\n\n<p class=\"has-drop-cap\">On Monday, Automattic <a href=\"https://wordpress.com/blog/2021/01/25/building-single-page-websites-on-wordpress-com/\">announced its Blank Canvas theme</a> on WordPress.com. The goal is to allow end-users to build single-page websites, such as an &ldquo;about me&rdquo; or product landing page.</p>\n\n\n\n<p>Blank Canvas is a child theme of <a href=\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme\">Seedlet</a>, which Automattic&rsquo;s <a href=\"https://themeshaper.com/about/\">Theme Team</a> has been using as a launchpad. One example is its recently-released <a href=\"https://wptavern.com/automattic-releases-spearhead-a-seedlet-child-theme-aimed-at-podcasters-and-content-creators\">Spearhead</a> child theme. It also provided the foundational work for the recent Twenty Twenty-One default WordPress theme.</p>\n\n\n\n<p>One-page themes are nothing new. Theme builders have been releasing them for years in various forms.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve been working on block patterns a lot lately, and it became clear that many of the single-page websites we come across daily &mdash; collections of links, newsletter signups, etc. &mdash; are basically just simple block patterns sitting on an otherwise blank page,&rdquo; said Kjell Reigstad, the lead developer on the theme. &ldquo;That being the case, it seemed like WordPress should be able to power these sorts of single-page sites pretty easily. Blank Canvas is an attempt to try that out.&rdquo;</p>\n\n\n\n<p>WordPress is not the ideal platform for the majority of one-page sites. Doing so includes setting up a database, installing the software, and keeping everything updated. The admin interface is not well-suited to those types of sites. WordPress is a content management system. One page is not enough content to need a full-blown CMS to manage. There simply is little upside for the average user to go through the hassle of doing this on even the cheapest of shared hosting.</p>\n\n\n\n<p>However, if you have a network where someone else, such as WordPress.com, takes out all the hassle of maintaining the backend and when it does not cost you a dime, WordPress suddenly makes more sense. It becomes an ideal platform for these types of sites.</p>\n\n\n\n<p>Frankly, I do not know why they have not pushed this concept sooner. Jason Schuller has made a go of it with Leeflets in the past. Since then, he and Philip Kurth have taken that idea further and launched <a href=\"https://wptavern.com/landing-kit-for-wordpress-maps-any-post-or-page-to-a-custom-domain\">WP Landing Kit</a>, which builds on the same concept of creating multiple single-page landing sites from one WordPress installation.</p>\n\n\n\n<p>In some respects, Blank Canvas offers a glimpse into Full Site Editing. It is almost a stepping stone or a small yet limited preview of things to come. The theme puts the entire design process into a single page and a single editor. Eventually, this will be extended to the whole website.</p>\n\n\n\n<p>&ldquo;I think that&rsquo;s a great way to think about it,&rdquo; said Reigstad. &ldquo;Full Site Editing is coming soon, but in the meantime, Blank Canvas lets you do just a little bit more with Gutenberg than you could before.&rdquo;</p>\n\n\n\n<h2>About the Theme</h2>\n\n\n\n<p class=\"has-drop-cap\">The theme is called <strong>Blank</strong> Canvas for a reason. Its <a href=\"https://blankcanvasdemo.wordpress.com/\">demo page</a> is literally a blank screen with a footer message. The idea is that the end-user designs their homepage &mdash; or their entire site in the case of a single-page website &mdash; via the block editor.</p>\n\n\n\n<p>For those who need a starting point, the theme comes packaged with six block patterns:</p>\n\n\n\n<ul><li>About Me</li><li>Links</li><li>Invitation</li><li>Split Screen</li><li>Card</li><li>Email Signup</li></ul>\n\n\n\n<img />Invitation block pattern.\n\n\n\n<p>Self-hosted WordPress users can install the theme too. It is currently awaiting review for the theme directory, but they can snag the ZIP file or SVN link from its <a href=\"https://themes.trac.wordpress.org/ticket/94482\">Trac ticket</a>. For those giving it a test, be sure to disable the title and tagline via the customizer so they do not appear on the front end. That is assuming you want to use the theme as intended. It will also work as a more traditional theme because the Seedlet parent theme covers all the necessary features.</p>\n\n\n\n<p>There are differences between the theme on WordPress.com and that submitted to the WordPress.org theme directory. The .ORG version has only four block patterns. The .COM version includes an additional Card pattern, which integrates with Automattic&rsquo;s Layout Grid plugin. The Email Signup pattern needs Jetpack&rsquo;s form feature.</p>\n\n\n\n<p>Simple conditional checks for Layout Grid or Jetpack before registering the patterns would suffice for users with those plugins installed. &ldquo;That&rsquo;s planned,&rdquo; said Reigstad of adding the missing patterns, &ldquo;but we just didn&rsquo;t implement it yet.&rdquo;</p>\n\n\n\n<img />Email Signup block pattern.\n\n\n\n<p>WordPress.com users have something else to look forward to. In November, the service <a href=\"https://wptavern.com/wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow\">launched over 100 patterns</a>. &ldquo;One of the nice things is that there are already a lot of patterns out there that seem ready-made for single-page websites,&rdquo; said Reigstad.</p>\n\n\n\n<p>He did say the team is working on bundling more patterns in the future. These may include more &ldquo;link in bio&rdquo; designs that expand on the one already in the theme today.</p>\n\n\n\n<h2>Pioneering Block-Friendly Themes</h2>\n\n\n\n<p class=\"has-drop-cap\">Several of the ideas available in this theme seemed to have started from the WordPress <a href=\"https://github.com/WordPress/theme-experiments\">Theme Experiments repository</a>. It features block patterns similar in scope to the <a href=\"https://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like theme</a> Reigstad built last October.</p>\n\n\n\n<p>&ldquo;In general, building block-based themes helped redefine our idea of what a theme needed to be,&rdquo; he said. &ldquo;We&rsquo;d tended to think of a theme as a complicated piece of software that accounts for every scenario you throw at it: a blog, custom post types, category pages, search pages, the 404 page, etc.&rdquo;</p>\n\n\n\n<p>Reigstad said that the block-based themes paradigm has forced the Theme Team to start small. Because Full Site Editing is still in flux, its features not ready, the team has built proof-of-concept themes with limited functionality.</p>\n\n\n\n<p>&ldquo;The possibilities for block-based themes have grown considerably since then (as shown by TT1 Blocks, Q, Block-based Bosco, and others), but the early constraints helped spark ideas like that Carrd-inspired theme,&rdquo; he said. &ldquo;It turned out that you could build a pretty useful site with just a handful of blocks.</p>\n\n\n\n<p>&ldquo;That mindset definitely informed Blank Canvas &mdash; we started small, with just the functionality someone would need to build a single-page site. Since it&rsquo;s based on a full-featured theme (Seedlet), you can grow with it too.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jan 2021 22:11:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: Plugin Team Draws a Line: Plugins Must Not Change WordPress’ Default Automatic Update Settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=111034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/plugin-team-draws-a-line-plugins-must-not-change-wordpress-default-automatic-update-settings?utm_source=rss&utm_medium=rss&utm_campaign=plugin-team-draws-a-line-plugins-must-not-change-wordpress-default-automatic-update-settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3110:\"<p>WordPress&rsquo; plugin team has published a <a href=\"https://make.wordpress.org/plugins/2021/01/26/reminder-plugins-must-not-interfere-with-updates/\">statement</a> regarding plugins making changes to users&rsquo; update services: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Unless your&nbsp;plugin&nbsp;has the&nbsp;<em>purpose</em>&nbsp;of managing updates, you&nbsp;<strong>must not</strong>&nbsp;change the&nbsp;defaults&nbsp;of WordPress&rsquo; update settings.</p><p>You&nbsp;<em>may</em>&nbsp;offer a feature to auto-update, but it has to honor the&nbsp;core&nbsp;settings. This means if someone has set their site to &ldquo;Never update any of my plugins or themes&rdquo; you are not to change those for them unless they opt-in and request it.</p></blockquote>\n\n\n\n<p>The statement was prompted by plugins overstepping this boundary, which, up until recently, has simply been understood but not explicitly forbidden. Mika Epstein said the practice &ldquo;destroys the faith users have in you to not break their sites.&rdquo; It also reflects poorly on WordPress as a whole when plugin authors abuse core features to serve their own interests.</p>\n\n\n\n<p>&ldquo;Sadly, this happened recently to a well used plugin, and the fallout has been pretty bad,&rdquo; Epstein said. </p>\n\n\n\n<p>She did not identify the plugin in question, but one particular incident that happened last month bears a strong likeness to this description. On December 21, 2020, the <a href=\"https://wptavern.com/all-in-one-seo-plugin-turns-on-automatic-updates-without-notifying-users-removes-functionality-in-latest-release\">All in One SEO plugin turned on automatic updates without notifying its users</a>, aside from a short, ambiguous note in the changelog.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>All in One SEO was active on more than 2 million WordPress sites when it rolled out this update. Many users were frustrated to discover that their sites had been updated without permission, despite having auto updates turned off for the plugin. The plugin&rsquo;s developers removed the auto updates wrapper&nbsp;functionality from the plugin earlier this month, in favor of letting WordPress handle updates.</p>\n\n\n\n<p>After this incident, those who were affected were left with questions. Should WordPress allow this practice? Should plugin developers be required to place a notice in the dashboard if they are going to flip automatic updates on? While many users are willing to trust WordPress core to do automatic updates in a safe way, some are not willing to extend that trust to plugin developers, whose quality of updates vary widely. The plugin team offering guidance and communication on this matter was absolutely necessary to deter aggressive plugin developers from destroying what is still a fragile trust in automatic updates.</p>\n\n\n\n<p>&ldquo;At this time, we have no plans to spell this out in a guideline,&rdquo; Epstein said. &ldquo;We do currently, regularly flag plugins that go outside their dictated (self defined) boundaries, and this is not a change. Please, respect your users.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jan 2021 20:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Jetpack Launches Customer Research Project to Improve the Plugin and Reduce User Frustration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/jetpack-launches-customer-research-project-to-improve-the-plugin-and-reduce-user-frustration?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-launches-customer-research-project-to-improve-the-plugin-and-reduce-user-frustration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6244:\"<p>Jetpack&rsquo;s Design and Research Team is <a href=\"https://automattic.design/2021/01/26/were-all-ears/\">launching a new customer research panel</a> as part of an ongoing effort to collect feedback in advance of launching new features. They are allocating one day every month to talk with users:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It&rsquo;s a small step toward an important goal of better understanding what our users need, seeing and hearing first hand where they are frustrated, and learning how Jetpack can work better for them.</p><p>The relationship benefits both sides. Our customers enjoy a sneak preview of features coming down the roadmap, and are empowered to help shape the product&rsquo;s future. And our design slash research team sees first hand, how our products perform with real folks using them.</p></blockquote>\n\n\n\n<p>Jetpack is recruiting customers for 45-minute long interviews on Zoom where they will preview some new designs and talk about proposed product improvements that are already in the works. In exchange, participants receive a $25 Amazon gift card.  </p>\n\n\n\n<p>This outreach effort may help in easing the periodic friction between Automattic and the larger WordPress community, which tends to emerge like pop-up storms on social media and quickly dissipate, but not without taxing onlookers&rsquo; good will. Although Jetpack is active on more than 5 million sites, and is marketed as &ldquo;the most popular WordPress plugin for just about everything,&rdquo; its team occasionally seems out of touch with users.</p>\n\n\n\n<p>One recent example of this happened when Matt Medeiros drew attention to the wording for the Jetpack Scan upsells that appear on the plugins page in the admin.  Specifically, people took issue with the claim that &ldquo;adding plugins can expose your site to security risks.&rdquo; While this is true, participants in the resulting heated discussion said it implies that Jetpack, the plugin that claims to do &ldquo;just about everything,&rdquo; is the only safe plugin. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Everyone: WordPress is amazing because you can use plugins! <br />Jetpack: Careful, it\'s a scary place that WordPress repo is.<br />Everyone: Didn\'t you come from .org? <br />Jetpack: Just buy my protection plan. <a href=\"https://t.co/5oqbsroqSA\">pic.twitter.com/5oqbsroqSA</a></p>&mdash; I podcast a lot&#127897; (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/1352275821763948550?ref_src=twsrc%5Etfw\">January 21, 2021</a></blockquote>\n</div>\n\n\n\n<p>Some perceived it to be in violation of <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/#11-plugins-should-not-hijack-the-admin-dashboard\">#11 of the Plugin Directory guidelines</a>, which states that plugins should not hijack the admin dashboard. The guideline also recommends avoiding advertising in the admin &ldquo;as it is generally ineffective,&rdquo; as well as frustrating for users who are not looking for additional complications while solving problems.</p>\n\n\n\n<p>This particular case was resolved after Automattic product designer Jeff Golenski took the community feedback to his team. They <a href=\"https://twitter.com/jeffgolenski/status/1352417067849428993\">updated the advertisement</a> to be less fear-inspiring regarding the WordPress plugin ecosystem.</p>\n\n\n\n<p>In another potent example of disconnect from the larger community, <a href=\"https://wptavern.com/jetpack-7-1-adds-feature-suggestions-to-plugin-search-results\">Jetpack 7.1 quietly introduced suggestions to the plugin search screen</a>. The update artificially inserted a search result into the first plugin card slot, identifying the corresponding Jetpack feature if one was available. Jetpack&rsquo;s module placement in the results subtly implied that other plugins were inferior options to its existing modules. Some of the modules advertised required an upgrade. The UI did not make it clear that the artificial search result was not coming from the plugin directory&rsquo;s algorithm. The Jetpack team claimed that it was designed to be a notice but its implementation was virtually indistinguishable from an advertisement.</p>\n\n\n\n<p>In a later release, Jetpack <a href=\"https://wptavern.com/jetpack-7-2-1-removes-promotions-for-paid-upgrades-from-the-search-screen\">removed all feature suggestions that previously advertised upgrades</a>, characterizing the mistake as &ldquo;an error in judgment.&rdquo; This kind of misstep could have easily been avoided if the feature had been presented to actual users in advance. User researchers could have asked, &ldquo;How would you like it if we put some of our paid upgrades in the top search spot when you are searching for a new plugin?&rdquo; </p>\n\n\n\n<p>Historically, the company has had a few rocky launches where it seemed some product teams did not consider the community&rsquo;s perception in their marketing approaches. Most recently, this was evident in the launch of WordPress.com&rsquo;s new&nbsp;<a href=\"https://wptavern.com/wordpress-com-rattles-freelancer-community-with-new-website-building-service-launch\">website building service</a>, which failed to include important information, i.e. that the intention was to refer business out. </p>\n\n\n\n<p>The new customer research panel is a strategic move for Automattic and should allow the company to avoid a lot more frustration and miscommunication around Jetpack. It could also be valuable as a means of testing potential marketing angles, beyond just specific features the team is developing.</p>\n\n\n\n<p>&ldquo;When you have a team continually connecting with their customers, you find that they start to become internal ambassadors for the users, helping to weave the user&rsquo;s voice into product and design conversations throughout the entire product design process.&rdquo; Automattic UX/Product Designer Yvonne Doll said in the announcment.</p>\n\n\n\n<p>If you want to help the Jetpack team realize these goals and become ambassadors for their users, visit the plugin&rsquo;s <a href=\"https://jetpackresearch.blog/\">user research blog</a> and sign up to participate in upcoming interviews. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jan 2021 02:33:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: WP Buffs Finalizes First Acquisition, Purchases WP EZI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110796\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://wptavern.com/wp-buffs-finalizes-first-acquisition-purchases-wp-ezi?utm_source=rss&utm_medium=rss&utm_campaign=wp-buffs-finalizes-first-acquisition-purchases-wp-ezi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6915:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Earlier today, WP Buffs <a href=\"https://wpbuffs.com/wp-ezi-acqusition/\">announced that it had acquired WP EZI</a>, a WordPress maintenance and support service. It was a five-figure acquisition for 64 active subscriptions and 343 total customers. Paul Tselekidis, the former owner of WP EZI, is <a href=\"https://wpezi.com/joining-wp-buffs/\">stepping away from the project</a>.</p>\n\n\n\n<p>WP Buffs offers 24/7 WordPress website management. Its team works directly with website owners and startups. They also work with white-label partners in the WordPress space. Agencies, freelancers, and hosting companies resell the WP Buffs subscription services instead of hiring a global team of their own.</p>\n\n\n\n<p>This is the first acquisition for the company and was done through their new <a href=\"https://wpbuffs.com/acquisitions/\">Business Acquisition Unit</a>.</p>\n\n\n\n<p>For WP EZI users, nothing should change about how they use the service. &ldquo;The day-to-day of the folks at WP EZI (aside from Paul) will continue unchanged as they&rsquo;ve all decided to stay on board and are excited for this new chapter of the business,&rdquo; said Joe Howard, the Founder and CEO of WP Buffs. &ldquo;For the time being, they will continue to function as team members of WP EZI, although they&rsquo;ll, of course, be given a warm welcome as new members of the WP Buffs family.&rdquo;</p>\n\n\n\n<p>At the moment, none of the pre-acquisition WP Buffs staff will move over to any WP EZI projects or vice versa. The two brands will remain separate.</p>\n\n\n\n<p>&ldquo;Mostly, this is for current WP EZI subscription clients, as keeping them happy and unbothered is our top priority,&rdquo; said Howard.</p>\n\n\n\n<p>One change coming to WP EZI is that it will no longer offer new care plan subscriptions. The goal is to send those leads to WP Buffs. WP EZI will continue serving current care plan customers and handle one-off projects.</p>\n\n\n\n<p>&ldquo;The strength of WP Buffs is in our strong systems and scalable business model of selling and executing on subscription services,&rdquo; said Howard. &ldquo;That&rsquo;s why we&rsquo;ll continue to accept new care plans there and send all one-time requests to WP EZI. They have experience with this business model, so we&rsquo;re going to keep that team doing the work they&rsquo;ve proved to be strong at.&rdquo;</p>\n\n\n\n<p>Howard did not give much away in terms of long-term changes. He said that while they are mulling over some ideas, their priorities were a peaceful transition for WP EZI clients and learning from and helping the current team.</p>\n\n\n\n<p>&ldquo;Most of the benefits for WP Buffs come from acquiring an already profitable business and client base,&rdquo; he said. &ldquo;Furthermore, the acquisition allows us to funnel care plan leads into WP Buffs and more one-time work into WP EZI. These silos will allow each team to be more efficient since they&rsquo;ll be able to focus on their areas of strength.&rdquo;</p>\n\n\n\n<h2>On Acquisitions and Growth</h2>\n\n\n\n<p class=\"has-drop-cap\">On the low end, the deal was likely at least mid to upper-five figures. We know that it was a five-figure acquisition. There were 64 active customers with an $87 per month subscription or more. This also assumes a consistent active subscription count for the last year or so. This is speculation but should provide some low ballpark numbers for others looking to sell a WordPress-related business.</p>\n\n\n\n<p>While Howard did not provide an exact figure, his company provided far more information than is typical of business acquisitions in the WordPress ecosystem. Often, these deals are made only with an agreement that neither party share the sale price. The transparency from WP Buffs should come as a breath of fresh air to other small business owners. It can be overwhelming venturing into a first acquisition from either end.</p>\n\n\n\n<p>One of his goals is to be transparent with how WP Buffs is run. His <a href=\"https://wpbuffs.com/2020-year-in-review/\">2020 year in review</a> post is lengthy, but he does not hold back on mistakes and successes. It provides a lot of insight that other business owners can learn from.</p>\n\n\n\n<p>Howard has some experience scaling businesses beyond that $10,000 &ndash; $15,000 monthly recurring revenue (MRR) spot, which is where some small businesses begin to plateau. I asked him to share his experience with other business owners.</p>\n\n\n\n<p>&ldquo;WP Buffs now does $100,000+ MRR,&rdquo; he said. &ldquo;That means we don&rsquo;t have the same issues as a care plan company at the scale of WP EZI &mdash; and if we do, we can pay to make those challenges go away.&rdquo;</p>\n\n\n\n<p>With WP Buffs now in control of the WP EZI brand, they can dedicate funding where needed and use their leadership and management where needed. Because their team has been here before, it should provide the experience to push past any hurdles.</p>\n\n\n\n<p>&ldquo;The reality here is just an economics of scale,&rdquo; said Howard. &ldquo;&lsquo;Bigger&rsquo; companies can simply flex a little more muscle to get rid of roadblocks. Plus, they have more financial flexibility to experiment and get things wrong to find that one thing that makes the difference when it comes to growth.&rdquo;</p>\n\n\n\n<p>He wrapped up his advice by saying that businesses should focus on their subscription metrics:</p>\n\n\n\n<ul><li>Develop 1-2 predictable, lead acquisition channels and grow those (increase MRR growth from new sales).</li><li>Get a ton of client feedback and make fast adjustments to keep them happy (lower churn).</li><li>From the client feedback, implement new features, offerings, value to current clients so they&rsquo;ll stay with you longer and tell others about you (increase expansion revenue and lifetime value).</li></ul>\n\n\n\n<p>&ldquo;One basic piece of advice is it&rsquo;s never too early to start thinking about selling, even if it&rsquo;s not on your roadmap,&rdquo; said Howard. &ldquo;Whether you ever want to sell your business or not, the things that make the kind of business people want to purchase are the same things that simply make it a good business, so why not do them?&rdquo;</p>\n\n\n\n<p>Howard and Tselekidis had an <a href=\"https://wpmrr.com/podcast/paul-kidis-wp-ezi/\">open and honest conversation</a> about the acquisition on the WPMRR podcast. Some of it is personal, but it provides a glimpse behind the curtain of a WordPress business sale.</p>\n\n\n\n<p>Tselekidis talked about spreading himself too thin among his various projects in the podcast. After a self-analysis and reevaluating his interests, he decided to find a new home for WP EZI. This will allow him to focus on and pursue other goals. &ldquo;It&rsquo;s time to move on; like it&rsquo;s my time,&rdquo; he said of continuing work that he was not as passionate about. &ldquo;I don&rsquo;t want to do a disservice by my clients.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jan 2021 21:41:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Revue Joins Twitter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2021/01/revue-joins-twitter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2021/01/revue-joins-twitter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:591:\"<p>Very excited to share the <a href=\"https://blog.twitter.com/en_us/topics/company/2021/making-twitter-a-better-home-for-writers.html\">news that Revue is joining Twitter</a>. I’m a huge fan of the idea of better newsletters and <a href=\"https://automattic.com\">Automattic</a> was the largest investor in <a href=\"https://www.getrevue.co/\">Revue</a>. I’m looking forward to seeing what the very talented team will do as part of the Twitter network. Also many thanks to <a href=\"https://kk.org\">Kevin Kelly</a> and <a href=\"https://om.co\">Om</a> for introducing me to Revue early on. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jan 2021 18:43:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WordPress Roadmap Update: Full-Site Editing Targeted for 5.8 Release in June 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110884\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/wordpress-roadmap-update-full-site-editing-targeted-for-5-8-release-in-june-2021?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-roadmap-update-full-site-editing-targeted-for-5-8-release-in-june-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3700:\"<p>WordPress core contributors are pushing forward on an ambitious plan to land full-site editing in core before the end of the year. Josepha Haden Chomphosy, the open source project&rsquo;s executive director, published an <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">updated roadmap</a> for 2021 that aims to get an MVP of full-site editing (FSE) in the Gutenberg plugin by April, 2021. FSE v1 would then be on track for shipping with WordPress 5.8, which is anticipated in June, 2021.</p>\n\n\n\n<table><tbody><tr><th>5.7&nbsp;</th><td>April 2021 &ndash; <strong>MVP for FSE in Gutenberg plugin</strong></td></tr><tr><th>5.8</th><td>June 2021 &ndash; <strong>&nbsp;v1 in Core</strong></td></tr></tbody></table>\n\n\n\n<p>Chomphosy defined the scope of FSE as &ldquo;the ability to edit all elements of a site using Gutenberg blocks&rdquo; and said it will include &ldquo;all in-progress features designed to help existing users transition to Gutenberg as well.&rdquo;</p>\n\n\n\n<p>When asked what would be considered an MVP of full-site editing, Chomphosy pointed to <a href=\"https://github.com/WordPress/gutenberg/issues/24551\">a GitHub issue</a> that contributors are using for tracking all the milestones associated with the project. Part of the infrastructure and UI is marked as complete, as well as browsing between pages, templates, and template parts. Styling, theme blocks, the query block, and the navigation block still need more work. More progress may have been made but the tracking issue has not been updated since December 19, 2020. </p>\n\n\n\n<p>Dipping into the <a href=\"https://make.wordpress.org/core/2021/01/22/editor-chat-summary-20th-january-2021/\">notes</a> from the recent editor meetings shows a steady stream of FSE improvements, which presumably will coalesce into an MVP in approximately five weeks. Chomphosy&rsquo;s announcement avoided explicit promises regarding what features are expected at that time.  </p>\n\n\n\n<p>Related projects like the widgets and navigation block editors have new dedicated Slack channels for those interested in following and contributing: </p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C01D71823PB\" target=\"_blank\">#feature-widgets-block-editor</a></li><li><a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C01KDAZJMQ9\" target=\"_blank\">#feature-navigation-block-editor</a></li></ul>\n\n\n\n<p>If you have questions about where FSE is headed, an upcoming Gutenberg Times Live Q&amp;A episode titled &ldquo;<em>Updates on WordPress Site-Editor (FSE) and Themes</em>&rdquo; will feature a panel of people who are actively contributing in these areas. It includes Carolina Nymark, author of <a href=\"https://fullsiteediting.com/\">a course on full site editing and block based themes</a>, Ari Stathopoulos, core contributor and author of the first block-based theme in the repository, and Anne McCarthy, who is managing the FSE outreach experiment. </p>\n\n\n\n<p>The episode will air live on Friday, January 29th, 2021, at 11AM EST, hosted by Birgit Pauli-Haack, curator of the <a href=\"https://gutenbergtimes.com/\">Gutenberg Times</a>. <a href=\"https://us02web.zoom.us/webinar/register/9716061492351/WN_vtNXZ0zTTs2S0S98X0Y9og\">Registration</a> for the event is free. Pauli-Haack plans to cover all the latest updates on full-site editing, block-based themes, and global styles. The panel will also touch on the navigation and widget screens, as well as what features will most likely land in WordPress 5.7. Viewers can bring questions and participate via Zoom and YouTube live. The episode will be recorded and shared afterwards with a transcript and resources.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jan 2021 03:16:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Jump-Start a Year’s Worth of Content via the Launch With Words Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/jump-start-a-years-worth-of-content-via-the-launch-with-words-plugin?utm_source=rss&utm_medium=rss&utm_campaign=jump-start-a-years-worth-of-content-via-the-launch-with-words-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8435:\"<p class=\"has-drop-cap\">On Sunday, Bridget Willard announced her latest project, <a href=\"http://launchwithwords.com\">Launch With Words</a>. In collaboration with Ronald Huereca, who performed the development work, they built a plugin that helps clients jump-start routine, monthly blog posts. In the future, there will be premium &ldquo;content packs&rdquo; that include content for various industries.</p>\n\n\n\n<p>The Launch With Words plugin is essentially a JSON importer for blog posts. The plugin itself is simple. However, the idea is what makes this plugin special.</p>\n\n\n\n<p>&ldquo;The audience is small business owners,&rdquo; said Willard. &ldquo;So many of us in the WordPress ecosystem are overeducated. We are annoyed that clients don&rsquo;t know how to do X, Y, and Z. But that&rsquo;s not their job; it&rsquo;s ours.&rdquo;</p>\n\n\n\n<p>Willard wrote starter content for both the Twenty Nineteen and Twenty Twenty default WordPress themes. She said it occurred to her that theme starter content is great, but why was no one tackling this for blog posts?</p>\n\n\n\n<p>&ldquo;This plugin comes from something I&rsquo;ve been saying to friends for years, &lsquo;launch with words; get paid faster,\'&rdquo; she said. &ldquo;<em>Lorem ipsum</em> is such a pain. Seriously. As someone who partners with WordPress agencies and freelancers to write copy for website launches, placeholder text is my nemesis.&rdquo;</p>\n\n\n\n<p>Willard <a href=\"https://bridgetwillard.com/\">runs her own business</a>, which offers social media management, copywriting, consulting, and business coaching. She is a marketing consultant who has been writing for the web since 2001.</p>\n\n\n\n<p>&ldquo;I was a secretary by trade with a background in accounts receivables and collections,&rdquo; she said. &ldquo;After I earned my teaching credential, I spent a year teaching junior high and high school math before I realized I didn&rsquo;t like parents. But hey, that bachelor&rsquo;s degree isn&rsquo;t wasted. I decided to go back to office work and landed in accounting (hello, algebra). I excelled in accounts receivable and collections but was at the top of my salary range.&rdquo;</p>\n\n\n\n<p>She left the construction industry in 2015 and began working for an advertising agency. During this time, she helped build the GiveWP brand. She also led the WordPress Marketing Team for two years.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<img />Importing content with the Launch With Words plugin.\n\n\n\n<p class=\"has-drop-cap\">Launch With Words simply imports content. On its own, it does nothing else. Willard provides a downloadable JSON file via the Launch With Words website. This &ldquo;<a href=\"https://bridgetwillard.com/downloads/launch-with-words-starter-content-pack/\">starter pack</a>&rdquo; is available for free to everyone. It includes 12 draft blog posts to keep users blogging on their site for the next year.</p>\n\n\n\n<p>While it is geared toward freelancers and agencies working with small business owners, anyone can use the plugin and starter pack. If you are having trouble pushing out content regularly, the monthly prompts could be the injection you need to get the creative juices flowing.</p>\n\n\n\n<p>Each draft post includes a topic theme, topic type, and blog checklist. The topic theme is centered on usual events or holidays that match the month of the year. For example, the following is the theme for May:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Topic Theme: Summer is around the corner and, if your business is seasonal, you may have a bit of extra time or be swamped. It generally depends on your sales cycle.</p><p>This is a great time to go to your inspiration journal and look for a case study that can be written. Get the content published before people start going on vacations and forget about hiring a small business.</p></blockquote>\n\n\n\n<p>Just pull up each month&rsquo;s draft post, follow the topic, and go from there.</p>\n\n\n\n<img />Draft blog post for December.\n\n\n\n<p>Willard says that the plugin builds off the services she offers. &ldquo;This plugin absolutely solves the repeated issues I encounter with people &mdash; namely, &lsquo;What do I write about?\'&rdquo;</p>\n\n\n\n<p>She has not started using the Launch With Words plugin with her clients yet. In the past, she has used the <a href=\"https://bit.ly/BridgetWebQuestions\">Website Content Questionnaire</a>, a tool she built that others can copy to their Google Drive for free.</p>\n\n\n\n<p>&ldquo;What makes web copy great is having a bit of the backstory about people,&rdquo; she said. &ldquo;What makes them different? Do they like hockey? Did they start working in fast food? Are they building sites for the healthcare industry?&rdquo;</p>\n\n\n\n<h2>Premium Content Packs</h2>\n\n\n\n<p class=\"has-drop-cap\">Willard will begin offering premium content packs soon. Each will come with 12 fully-written blog post drafts for each month of the year, catering to specific industries. She plans to launch these individual packs at $497.</p>\n\n\n\n<p>&ldquo;I get asked how I come up with prices often,&rdquo; she said. &ldquo;Because I look at websites and products and SaaS services constantly, pricing is now intuitive to me. It&rsquo;s pretty easy for a developer or a small business to throw down $500 knowing it will give them content for a year. It&rsquo;s a crazy low price. I&rsquo;m not a fan of the word &lsquo;cheap.&rsquo; But this is buying in bulk. This is the Costco model.&rdquo;</p>\n\n\n\n<p>The blog posts should range between 300 and 500 words, a service in which Willard would generally charge $200.</p>\n\n\n\n<p>&ldquo;Anyone can tweak the copy to localize it or make it their own,&rdquo; she said. &ldquo;Before you ask, the only thing worse than duplicate content is no content. It&rsquo;s not novel to offer content; what&rsquo;s novel is to offer content that lives in a blog post. It&rsquo;s not an RSS feed from a syndication service that you can&rsquo;t edit. It&rsquo;s amazing how much franchises pay for boring content to distribute to their networks. Any business should have access to quality content that they can localize.&rdquo;</p>\n\n\n\n<p>One has to wonder how Willard could pace herself and produce quality content for these premium packs. However, she is no stranger to the writing process. She has published several books, writing four in the past year.</p>\n\n\n\n<p>&ldquo;I write to teach,&rdquo; she said. &ldquo;If you boil my essence down, I am a teacher. A few people have encouraged me to publish books. I have two Christian-based books out on Amazon that I did on Lulu.com, but it was so painful, I didn&rsquo;t bother.&rdquo;</p>\n\n\n\n<p>It was not until she talked with Nathan Ingram, a business coach in the WordPress space, at WordCamp Seattle in 2019 that she decided to give things another go. He introduced her to Kindle Direct Publishing, a driving factor behind her more recent publishing success.</p>\n\n\n\n<p>&ldquo;So I took a blog series idea, &lsquo;Dysfunctional Love Songs,&rsquo; and wrote and published that book in April as my COVID project. In October, &lsquo;Keys to Being Social,&rsquo; my life&rsquo;s work was published. &lsquo;The Definitive Guide to Twitter Marketing&rsquo; was written on a Sunday in January. My fourth book, &lsquo;How to Market Your WordPress Plugin&rsquo; is with my editor and will be published this year.&rdquo;</p>\n\n\n\n<p>Willard said these writing projects have helped her stay focused on positive things during the Covid-era.</p>\n\n\n\n<p>&ldquo;Otherwise, it&rsquo;s easy for things to turn dark &mdash; if we&rsquo;re all going to die, why pay off my credit cards? You know? I can&rsquo;t just sit around watching Netflix. I do, but I need an outlet.&rdquo;</p>\n\n\n\n<p>She does not plan on going it alone for all of the premium content packs. She is already in talks with writers in other fields who would be better suited to the specific subject matter. However, Willard will lean on her construction-related expertise to build some of the packs.</p>\n\n\n\n<p>&ldquo;The best advice writers give is that you should write what you know,&rdquo; she said. &ldquo;It&rsquo;s the first chapter in Anne Lamott&rsquo;s &lsquo;Bird by Bird.&rsquo; I&rsquo;ve been writing about construction for 20 years. It won&rsquo;t require very much research. I mean, if I can sit down on a Sunday and write 7,000 words on Twitter for that book, I&rsquo;m pretty sure I can write 12 blog posts fairly soon.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Jan 2021 21:57:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Ask the Bartender: How To Bulk Convert Classic WordPress Posts To Blocks?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110841\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5513:\"<blockquote class=\"wp-block-quote\"><p>I was wondering if you could help me. I want to convert all of my old posts (about 600) to Gutenberg blocks. Do you know an easy way to do that?</p><p>Philip</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">I often get these short questions via private messages. I always try my best to help other WordPress users whenever I can. This was an easy solution in Philip&rsquo;s case. After a quick chat, he actually learned that he did not need to migrate his posts to the block system. I thought it would be best to open this topic to a wider audience. Maybe it would help someone else along the way.</p>\n\n\n\n<p>There is currently an <a href=\"https://github.com/WordPress/gutenberg/issues/18645\">open ticket</a> on the Gutenberg repository for a bulk converter. It has sat dormant until a few days ago. The primary argument for including this feature in the plugin and eventually WordPress itself is that the lack of this option is an obstacle for newcomers to the block editor.</p>\n\n\n\n<p>I disagree with the notion that it is any sort of obstacle for block-editor adoption. There does not seem to be a massive call for the feature in the WordPress support forums. Web searches do not pull up too many support queries for it. It seems to be a niche use case. Or, in some cases, there is a simple misunderstanding that end-users need to do any sort of conversion or migration at all.</p>\n\n\n\n<p>However, the biggest reason it is a non-obstacle is that posts written in the classic editor are still basic HTML. Regardless of the editor, older content will output just fine on the front end, at least in most cases.</p>\n\n\n\n<p>The first question anyone should ask before deciding on bulk converting their old posts to the newer block format is whether they should do it at all. The answer for the majority of users will simply be <em><strong>no</strong></em>. There are few reasons to do so.</p>\n\n\n\n<p>Doing a mass conversion like this, especially with hundreds or more posts, is subject to broken sites. I have done enough single-post updates to know that the process does not always go smoothly. Sometimes, I need to touch up something here or do some manual changes there. On a large scale, there really is no way to know what got broken until you test every single post or page on the site. In some cases, everything is OK. In others, it is a nightmare.</p>\n\n\n\n<p>If you are thinking of going down the bulk-conversion route, make a backup first. There is a good chance that you will need it. You should also test this on a staging site.</p>\n\n\n\n<p>My recommendation for most users is to convert posts on an as-needed basis. I like to make the switch any time I edit an old post. The only reason I convert them is that I prefer working with the block editor over classic.</p>\n\n\n\n<p>Posts written in the old editor will be in the Classic block. After selecting the block that houses the content, I hit the &ldquo;Convert to blocks&rdquo; button in the block toolbar. I do a quick check of anything that might need to be fixed before hitting the update button.</p>\n\n\n\n<img />&ldquo;Convert to blocks&rdquo; button for the Classic block.\n\n\n\n<p>In most cases, there is no reason to convert old posts to blocks except when you are actually editing those posts.</p>\n\n\n\n<p>Despite claims that things will &ldquo;just work&rdquo; when switching to the block editor, that is not the day-to-day reality of all WordPress users. Some of the biggest reasons I have seen to bulk convert are around theme design issues. For example, the block system made some fundamental changes to image markup. If your theme handles left and right-aligned images added via the block editor but breaks down on your old posts, bulk converting may be an option. However, the first course of action should be checking in with your theme author about adding support for the classic markup.</p>\n\n\n\n<p>There are likely numerous other edge cases. Bulk converting posts is an invasive operation that can only be reverted by restoring a pre-conversion backup. It should be a last resort.</p>\n\n\n\n<p>If you are at the point where you know you need to convert all your old posts, there are a few options available.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/bulk-block-converter/\">Bulk Block Converter</a> plugin is likely the most-used solution at the moment. Organic Themes released it a little over a year ago but has only updated it once. User reviews have been mixed. A few of the problems seemingly stem from WordPress &mdash; the plugin extends the core WordPress block converter used in single posts.</p>\n\n\n\n<p>For those with clients who want to find a middle ground between bulk conversion and having the client manually convert their old posts, 10up&rsquo;s <a href=\"https://github.com/10up/convert-to-blocks\">Convert to Blocks</a> plugin might be the right solution. It converts posts on the fly, only making changes when a user opens the post-editing screen.</p>\n\n\n\n<p>Fr&auml;nk Klein is also working on a PHP-based bulk converter plugin named <a href=\"https://bulkconverttoblocks.com/\">Bulk Convert to Blocks</a>. It is currently in the development stage and not ready for use on live sites. It offers a screen in the WordPress admin to perform the conversion and will continue working in the background if the user leaves the page. Because it runs via PHP, developers can extend it with custom actions and filters. It also provides a WP CLI command for those who prefer to work from the command line.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jan 2021 22:39:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: TasteWP Spins Up Free WordPress Testing Sites in Seconds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/tastewp-spins-up-free-wordpress-testing-sites-in-seconds?utm_source=rss&utm_medium=rss&utm_campaign=tastewp-spins-up-free-wordpress-testing-sites-in-seconds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5318:\"<p><a href=\"https://tastewp.com/\">TasteWP</a> is a newcomer among online WordPress sandboxing solutions. The site allows users to spin up a new WordPress instance in a matter of seconds. Web-based sandboxes like these have been popular for a long time, since they are convenient to fire up and destroy when performing a quick test on a plugin or theme. It&rsquo;s easier than maintaining a local development environment, which many casual WordPress users have not taken the time to set up. </p>\n\n\n\n<p>TasteWP&rsquo;s temporary testing sites are hosted for 48 hours for non-logged-in users and 7 days for those who are logged in. The one-click setup gives you a random site URL and login credentials.</p>\n\n\n\n<img />\n\n\n\n<p>The free sites are limited to 220MB per instance. A successful set-up notice is displayed in the dashboard with information on when the site will be automatically deleted. TasteWP limits non-logged-in users to creating 2 sites and the limit is 6 for logged-in users. They can be removed or added within the site manager. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>When creating a new site, the Advanced Options allows users to set up multisite, select a PHP version, WordPress version, and choose from a number of advanced configuration options and pre-installed extensions. The PHP version can also be changed later within the site manager.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>TasteWP is reminiscent of the now defunct <a href=\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\">poopy.life</a> service. In addition to the unsavory and unforgettable name, poopy.life was laden with obtrusive upgrade ads that floated across the screen periodically. TasteWP takes a different route for promotion and includes three of its plugins pre-installed on the default testing sites.</p>\n\n\n\n<p>TasteWP is run by <a href=\"https://inisev.com/\">Inisev</a>, a 15-person company that has been developing&nbsp;WordPress&nbsp;plugins for four years.</p>\n\n\n\n<p>&ldquo;Our key motivator for starting&nbsp;TasteWP&nbsp;was a) scratching our own itch (we needed a platform ourselves to try out new plugin versions on different&nbsp;WP/PHP version combinations) and b) promoting our products,&rdquo; Inisev co-founder Nicolas Ahmann said.</p>\n\n\n\n<p>&ldquo;Having said that, if there is enough demand (and there seems to be), we&rsquo;ll also offer very affordable premium plans for non-expiring instances with bumped space soon.&rdquo;</p>\n\n\n\n<p>Ahmann said the team is currently funding their projects from their own pockets as well as a few private investors.</p>\n\n\n\n<p>&ldquo;We had some VCs knock at our door recently, and while we don&rsquo;t rule out taking them on board at some point in the future, we feel quite comfortable with our current approach where we grow organically (i.e. without too much ad spending),&rdquo; Ahmann said. &ldquo;I&rsquo;m sure, if we had taken on a lot of capital a few years ago, we would have spent a lot of marketing budget on products which weren&rsquo;t ready at the time. Instead, we were forced to make the products better. Limited budgets sharpen your mind immensely.&rdquo;</p>\n\n\n\n<p>Ahmann said the company has several enhancements planned for TasteWP, but they don&rsquo;t want to make the product more complicated to use. </p>\n\n\n\n<p>&ldquo;We developed a Linux application which copies exactly the same moves as user would do to create a website, except that we&rsquo;re omitting the front-end and graphics rendering parts which makes it much easier to process by the computer,&rdquo; he said. &ldquo;Also we inject anything that is needed into the database directly. That allows us to create those sites so fast without preparing them before (but still fully customized for each user).&rdquo;</p>\n\n\n\n<p>The company is planning to enable users to call specific URLs, such as&nbsp;<a rel=\"noreferrer noopener\" href=\"https://tastewp.com/?themeslug=slug-of-theme\" target=\"_blank\">https://tastewp.com?themeslug=slug-of-theme</a>,&nbsp;which would spin up an instance with that theme or plugin already installed. This would allow theme and plugin creators to share the link with their potential users/customers so that they can play around themselves. </p>\n\n\n\n<p>Localization is also a high priority for future TasteWP enhancements, since the company is based in Europe where many languages are spoken. </p>\n\n\n\n<p>&ldquo;We always felt that it doesn&rsquo;t get the attention as it needs, considering that approximately<a href=\"https://w3techs.com/technologies/overview/content_language\"> 40% of websites are not in English,</a>&rdquo; Ahmann said. &ldquo;It&rsquo;s often just DIY people (not devs) who are trying to create their websites. We always encourage them to learn English (as it&rsquo;s the world&rsquo;s&nbsp;language). But imagine you grew up in Turkey, for example. Nobody around you speaks English &ndash; the teachers in schools only speak it in a broken way. In those cases it&rsquo;s key that people can take their first&nbsp;WordPress&nbsp;steps in their language, and what&rsquo;s easier to&nbsp;do&nbsp;so than spinning up an instance with one click on&nbsp;TasteWP&nbsp;which is in your language? Long story short: we&rsquo;ll keep translating it into (many) more languages.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jan 2021 20:47:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"WPTavern: Gutenberg 9.8 Brings Rounded Borders To the Group Block and Moves the Site Editor Canvas Into an Inline Frame\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:283:\"https://wptavern.com/gutenberg-9-8-brings-rounded-borders-to-the-group-block-and-moves-the-site-editor-canvas-into-an-inline-frame?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-8-brings-rounded-borders-to-the-group-block-and-moves-the-site-editor-canvas-into-an-inline-frame\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6699:\"<p class=\"has-drop-cap\">Gutenberg 9.8 <a href=\"https://make.wordpress.org/core/2021/01/20/whats-new-in-gutenberg-9-8-20-january/\">launched yesterday</a> with a few minor UI improvements. The development team added an initial implementation for border-radius support for the Group block that theme authors can opt into. They also moved the site editor into an iframe element to remove CSS conflicts from the global admin styles.</p>\n\n\n\n<p>Those who have been testing Full Site Editing should be pleased that they will no longer need to deal with the seemingly never-ending creation of auto-drafts for templates and template parts. <em>Good riddance.</em> They would have inevitably caused user confusion in the long run. The change took around a <a href=\"https://github.com/WordPress/gutenberg/pull/27910\">month of discussion and work</a>, but it reduced a complex and fragile process into a more stable system for the long term.</p>\n\n\n\n<p>While the previous plugin release saw barely more than a handful of bug fixes, version 9.8 jumped back to over two dozen. A Gutenberg update without at least that many just does not feel right.</p>\n\n\n\n<h2>Minor UI Improvements</h2>\n\n\n\n<p class=\"has-drop-cap\">The latest version of the plugin improves the UI when working with the Spacer block. When a user selected the block in the past, it appeared as a light gray rectangle. Now, it is <a href=\"https://github.com/WordPress/gutenberg/pull/28103\">semi-transparent. </a>This allows whatever is in the background, such as the Cover block with a background image, to show. This change should help users more easily make size adjustments in cases where viewing the background is necessary.</p>\n\n\n\n<img />Semi-transparent Spacer block when selected.\n\n\n\n<p>While I hope the Spacer block will eventually die a slow and agonizing death as it is replaced by more appropriate margin and padding block options, this change does help in the interim.</p>\n\n\n\n<p>In a follow-up to the UI improvements in Gutenberg 9.7, work on block variations continues. Variations are when one block is used as the foundation to create multiple variations of the same block. The most common example is the Embed block, which has YouTube, Vimeo, and other variations. Before 9.7, these variations shared the same generic icon, name, and description in the block inspector and navigation instead of the variation-specific information.</p>\n\n\n\n<p>Gutenberg 9.8 builds on the trend of using the variation&rsquo;s data where it makes sense. The block switcher (transform) button in the editor toolbar now <a href=\"https://github.com/WordPress/gutenberg/pull/27903\">displays the variation&rsquo;s icon</a>.</p>\n\n\n\n<img />Variation icon in use in the block switcher.\n\n\n\n<p>It is a small change, but it shows the development team&rsquo;s continued devotion to polishing the editor interface.</p>\n\n\n\n<h2>Loading the Site Editor Canvas in an iframe</h2>\n\n\n\n<p class=\"has-drop-cap\">Gutenberg 9.8 separates the canvas area of the <a href=\"https://github.com/WordPress/gutenberg/pull/25775\">site editor into an iframe</a>. This separation means that global admin styles do not bleed into or override styles within the editor itself. The good news is this is a first step toward doing the same in the post editor too.</p>\n\n\n\n<p>This has been a change that I have been waiting for since the inception of the block editor. From a theme development and design standpoint, styling the editor to match the front end is ripe with issues. It has meant nesting CSS selectors when it should have been unnecessary. It has meant adding a few <code>!important</code> rules to overwrite what seems like oddities in the core CSS. While styling the block editor has improved by leaps and bounds in the past couple of years, it can still often be a pain.</p>\n\n\n\n<p>WordPress core committer Ella van Durpe <a href=\"https://github.com/WordPress/gutenberg/issues/20797#issue-579381499\">listed the benefits</a> of moving the canvas into an iframe:</p>\n\n\n\n<ul><li>There would be no admin CSS bleed at all. This is something we&rsquo;ve been struggling with since the beginning.</li><li>There would be no need to simulate media queries, which is arguably technically more difficult than using an iframe.</li><li>Relative units like <code>(r)em</code> and <code>vw</code>/<code>vh</code> just work.</li><li>For a full site, a theme stylesheet can be just dropped in the editor without any adjustment. I think this is important as it makes the life of theme authors much easier.</li><li>It&rsquo;s possible to have one selection per window, so one in the admin and one in the content. This is useful for e.g. the link UI where the selection in the content can be kept while the selection is also in an input element (for the URL). Maybe be useful in other cases.</li></ul>\n\n\n\n<p>While I find it tough to believe that theme stylesheets would just work without a hitch &mdash; <em>does such a world exist?</em> &ndash;, they should work far better than in the past. There are likely items theme authors will need to contend with, but they should be minimal. Developers should keep a close eye on the future development of this.</p>\n\n\n\n<h2>Border Radius Support for the Group Block</h2>\n\n\n\n<p class=\"has-drop-cap\">As part of Gutenberg&rsquo;s experimental feature set, the Group block now supports a <a href=\"https://github.com/WordPress/gutenberg/pull/27665\">border radius option</a>. However, end-users will not automatically see it in the block inspector. This is an opt-in feature for themes at the moment. Presumably, it will be a part of the default set of options for several blocks in the future.</p>\n\n\n\n<img />Setting the border-radius value for the Group block.\n\n\n\n<p>For theme authors who want to add support, they will need to drop the following code snippet into their <code>experimental-theme.json</code> file and edit the <code>radius</code> value:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"core/group\" : {\n        \"styles\" : {\n                \"border\" : {\n                        \"radius\" : \"50px\"\n                }\n        }\n}</code></pre>\n\n\n\n<p>This will allow theme authors to set the default border-radius for the group block. However, it will not hand over control to users. For that, themes will need to add the following snippet under the <code>settings</code> section of their <code>experimental-theme.json</code> file:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"border\" : {\n        \"customRadius\" : true\n}</code></pre>\n\n\n\n<p>I tested this with a modified version of the <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks </a>theme without issue. Mostly, I am looking forward to more styling options like this in future iterations of the plugin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 22:31:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.org blog: People of WordPress: Thelma Mutete\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/01/people-of-wordpress-thelma-mutete/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8322:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of those lesser-known, amazing stories.</em></p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2021/01/Thelma-Mutete.jpg?resize=500%2C750&ssl=1\" alt=\"Thelma Mutete at a WordCamp\" class=\"wp-image-9564\" width=\"500\" height=\"750\" />\n\n\n\n<p>From a young age Thelma was encouraged by her father to ‘work hard, and dream big’. In High School, she pursued a career in Computer Science. She said: “I did not know what I would be doing or how I would get there but I just knew that I was going to pursue a career in information technology.”</p>\n\n\n\n<p>She wrote her first line of code at the age of 16 living in Zimbabwe, Africa. This was to mark the beginning of her enthusiasm for computer programming.</p>\n\n\n\n<p>When she joined the school’s computer class, Thelma thought she would learn Excel and Word. Instead, the assignment was to write her first program in C. She said: “It was not easy, but it was very exciting. l remember writing up simple code for a Video Club – a check-in/out for VHS tapes and CDs. Thus began my fascination with computers.”</p>\n\n\n\n<p>Seven years later, she went on to university to study for a Bachelors in Business Management and Information Technology. Her third year internship was at a local web design and hosting company. Though she had hoped her placement would be at a local bank or telecommunications company, the chance to discover website design turned out to be the best thing that could have happened.&nbsp;</p>\n\n\n\n<p>In 2017, Thelma went on to work for a company designing websites using HTML, CSS, PHP, JavaScript and Joomla. She had heard about WordPress but had not used it. She recalls: “People have this misconception that WordPress is not for real developers and it is not secure and at that time I was one of those people.”</p>\n\n\n\n<h2>Finding a local community</h2>\n\n\n\n<p>From a discussion with a member of the local WordPress community, <a href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\">Thabo Tswana</a>, about a striking swag gift from a WordCamp, Thelma’s interest was sparked.&nbsp;</p>\n\n\n\n<p>She started to find out more about WordPress and WooCommerce, and visited her local WordCamp Harare website. She was delighted to find that she could learn more about WordPress without needing any pre-existing knowledge, and wanted to be involved. So instead of just attending the camp, she volunteered too!&nbsp;</p>\n\n\n\n<p>Her response to her first WordPress event mirrors the experience of many others in the community. She said: “I only started using WordPress because of the awesome people that l had met at that WordCamp. Everyone was so welcoming.”</p>\n\n\n\n<p>A week later, with help from Thabo, she designed her first website using WordPress.</p>\n\n\n\n<p>She soon became more involved with the community and Meetups. Thelma participated in the first-ever ‘Women Who WordPress’ Meetup in 2018, with lots of women getting involved from bloggers to developers.&nbsp;</p>\n\n\n\n<p>She said: “We were free to talk and discuss a lot of things. We had more time to discuss the difference between WordPress.com and WordPress.org, we shared views on how to handle discrimination at work, how to promote your website and a whole lot of other things.”</p>\n\n\n\n<h2>Establishing roots in WordPress</h2>\n\n\n\n<p>In 2018, WordCamp Harare had its first-ever female Lead Organizer <a href=\"https://tapiwanashe.com/\">Tapiwanashe Manhobo</a>. Thelma was part of the organising team that year and was assigned to handle Harare’s first Kids Camp to take place eight months later. You can read more about her experiences of organizing a <a href=\"https://thelmachido.wordpress.com/2019/11/21/wordpress-juniours-first-edition/\"><strong>Kids Camp</strong></a> on her blog.</p>\n\n\n\n<p>She said: “After the first Kids Camp, we had several people in the local Zimbabwean WordPress community who were enthusiastic about encouraging young people to embrace ICT. In 2019, we had not planned to have a Kids Camp because of financial constraints but to our surprise, we had some anonymous donations and we managed to have a WordPress Community outreach to a youth centre, <a href=\"https://cttzim.org/\"><strong>Centre for Total Transformation</strong></a>, a week after our WordCamp. It is a non-formal school that caters for underprivileged and vulnerable children. The group were able to share practical skills about using WordPress, computer hardware and software.</p>\n\n\n\n<p>Thelma shares that she became hooked on WordPress because of its community. “I enjoy attending WordCamps, meeting new people and just learning new stuff. I have a huge list of WordCamps I would like to attend. Last year I managed to cross WordCamp Johannesburg off my list. When everything is back to normal my plan to travel to WordCamps will proceed (fingers crossed).”</p>\n\n\n\n<h2>Reaping the fruits of ongoing learning</h2>\n\n\n\n<p>Thelma is committed to ongoing development training. She said: “Even though I can still cook up code in C and Java, for now, I have also included WordPress PHP functions to the mix. It was not easy to get to this point, daring myself got me to this slightly better stage. I try to do my best where I can and I am happy to say it has paid off so far.”</p>\n\n\n\n<p>Thelma has continued her journey working in design and digital marketing last year with Trust Nhokovenzo who works in digital marketing and is active in&nbsp; the WordPress Community. He came across her name as a developer from talking with others involved in WordPress. She went to work with his team at a marketing agency.</p>\n\n\n\n<p>Her interest in the development of WordPress continued and she joined the <a href=\"https://wordpress.org/news/2020/12/simone/\">5.6 Release Squad</a> in the mid 2020.&nbsp;At the end of 2020, she moved to become a Happiness Engineer working with WordPress.com. Thelma’s fascination with the platform and the community continues to grow and her contributor story is ongoing.</p>\n\n\n\n<p>Find out more about the <a href=\"https://www.meetup.com/Harare-WordPress-Meetup\">Harare WordPress community</a> in Zimbabwe.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>) and Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>), Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>), and Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>). Thank you to Thelma Mutete (<a href=\"https://profiles.wordpress.org/thelmachido/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>thelmachido</a>) for sharing her #ContributorStory.</p>\n\n\n\n<img src=\"https://lh4.googleusercontent.com/s24EVZGKbxVeafljPU1ubF1DjIwn98E3-wGx1LD2CWYk7zYQppFhXNpb0aUhGe01TStMdTwXrcYaxBZQHRgZJ10lvW2hsg61Ce37_pBGJuTRQlJ6r9iUxlJtvuDuwLhIvPo1MVEb\" alt=\"HeroPress logo\" />\n\n\n\n<p><em>This post is based on </em><a href=\"https://heropress.com/essays/hello-world-discovering-the-world-through-wordpress/\"><em>an article originally published on HeroPress.com</em></a><em>, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. HeroPress highlights people in the WordPress community</em>.</p>\n\n\n\n<p>#ContributorStory #HeroPress</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 16:40:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Gutenberg Contributors Consider Implementing a Bot to Close Stale Issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/gutenberg-contributors-consider-implementing-a-bot-to-close-stale-issues?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-contributors-consider-implementing-a-bot-to-close-stale-issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5386:\"<p>Gutenberg project contributors are considering <a href=\"https://make.wordpress.org/core/2021/01/14/stale-issues-in-gutenberg-repository/\">implementing a stale bot</a> to tame the repository&rsquo;s overgrown <a href=\"https://github.com/WordPress/gutenberg/issues\">issues</a> queue, which currently has 2,733 open issues. Stale bots are usually employed to automatically close &ldquo;stale&rdquo; issues and PRs based on a predefined set of parameters for inactivity. </p>\n\n\n\n<p>&ldquo;The current recommendation is to set our policy to a 180-day of no activity, so if no comments or commits are on an issue or PR in 180 days, then the bot will post a comment to the issue alerting the user it will be closed in 7-days due to inactivity,&rdquo; Marcus Kazmierczak proposed.</p>\n\n\n\n<p>One important concern is getting the tone right for the automatically-generated message. When you&rsquo;re employing bots on a widely used open source project, they had better be friendly. A chilly, indifferent bot can unwittingly turn away potential contributors with the wrong kind of messaging. Kazmierczak proposed the following message:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This is an auto-generated message to let you know that this issue has gone 180 days without any activity and meets the project&rsquo;s definition of stale. This will be auto-closed if there is no new activity over the next 7 days. If the issue is still relevant and active, you can simply comment with a &ldquo;bump&rdquo; to keep it open, or add the &ldquo;[Status] Not Stale&rdquo; label. Thanks for keeping our repository healthy!</p></blockquote>\n\n\n\n<p>Participants in the discussion on the proposal are divided on the best approach. Daniel Llewellyn, one of the most vocal opponents to using a stale bot, contends that an automatically closing issues sends the wrong message. </p>\n\n\n\n<p>&ldquo;If we care about users and that they trust that we will fix their problem then automatically closing their issue gives them the signal that we don&rsquo;t,&rdquo; Llewellyn said.</p>\n\n\n\n<p>&ldquo;If you don&rsquo;t want to fix a problem then it is better for a human to explain why the problem won&rsquo;t be fixed and personally close the issue. Automating this on the assumption that because nobody has commented in a while means it isn&rsquo;t important is bad!&rdquo;</p>\n\n\n\n<p>Joy Reynolds agreed with this assessment, noting that closing issues through any means can be discouraging.</p>\n\n\n\n<p>&ldquo;I&rsquo;ve had issues closed by humans for being stale, also, and it isn&rsquo;t any better,&rdquo; Reynolds said. &ldquo;I&rsquo;ve had issues closed because someone created a new issue on the same thing. This loses all the history and the watchers.</p>\n\n\n\n<p>&ldquo;I&rsquo;ve also had an issue closed at Launchpad for being stale (and their system used only two weeks as a time frame). That served no purpose at all. It only makes people go away, frustrated.&rdquo;</p>\n\n\n\n<p>Kazmierczak reiterated in the comments that the bot can be configured to skip issues labeled as bugs and that issues and PRs can be bumped to reset the 6-month clock.</p>\n\n\n\n<p>&ldquo;The overall goal of the proposal is to improve feedback and responses to issues by ensuring what&rsquo;s there is relevant,&rdquo; Kazmierczak said.</p>\n\n\n\n<p>Auto-closing issues is the most controversial part of the plan. The general consensus in the comments leans towards using the bot for labeling and triaging in order to manually close the issue later.</p>\n\n\n\n<p>&ldquo;My preference would be for a bot to alert humans in a&nbsp;slack&nbsp;channel when a&nbsp;ticket&nbsp;is declared stale and become progressively more insistent until a human responds,&rdquo; Peter Wilson said. </p>\n\n\n\n<p>Milana Cap suggested using a bot to nudge the ticket author as a compromise between &ldquo;being friendly and thoughtful to contributors while keeping maintainers sane.&rdquo;</p>\n\n\n\n<p>Whatever approach contributors land on, excluding tickets marked as bugs is going to be critical for making the stale bot productive. Otherwise, it becomes just a fancy way of kicking the can down the road, delaying the inevitable. </p>\n\n\n\n<p>In a recent post titled &ldquo;<a href=\"https://blog.benwinding.com/github-stale-bots/\">Github Stale Bots: A False Economy</a>,&rdquo; software developer Ben Winding wrote about why stale bots don&rsquo;t deliver what maintainers are aiming to achieve. Based on his experience with the <a href=\"https://github.com/angular/angular/issues\">Angular</a> repository&rsquo;s bot, Winding summarized the stale bot&rsquo;s effect on the issues queue: </p>\n\n\n\n<ol><li>Reduce the metric of&nbsp;<em>Open Issues</em>&nbsp;in github</li><li>Made duplicate issues far more likely</li><li>Increased friction of users reporting that the issue still exists</li><li>Ultimately decreased the quality of the software, as the issues don&rsquo;t accurately reflect reality</li></ol>\n\n\n\n<p>If the Gutenberg repository&rsquo;s stale bot can be configured not to close bugs and used to maximize human involvement, it will be less likely to deter people from reporting issues. Feedback on the <a href=\"https://make.wordpress.org/core/2021/01/14/stale-issues-in-gutenberg-repository/\">proposal</a> is open until January 29, 2021. Kazmierczak is seeking input on the bot&rsquo;s implementation, specifically its time threshold and messaging.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 16:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: New WhiteHouse.gov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=53526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2021/01/new-whitehouse-gov/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2842:\"<p>After you&#8217;ve watched <a href=\"https://www.npr.org/sections/inauguration-day-live-updates/2021/01/20/958743170/poet-amanda-gorman-reads-the-hill-we-climb\">the amazing poem from Amanda Gorman</a>, check out the <a href=\"https://www.whitehouse.gov/\">new WhiteHouse.gov that re-launched today</a> using WordPress &amp; Gutenberg with a number of cool features including dark mode, text zoom, a totally responsive layout, and a Spanish version of the site. The site is clean, <a href=\"https://twitter.com/wesbos/status/1351957829461155849\">fast</a>, and accessible. It&#8217;s exciting and an honor that the online home for the Executive branch is on Open Source software, and I&#8217;m proud WordPress can carry the torch that <a href=\"https://dri.es/whitehouse-gov-using-drupal\">Drupal lit in 2009</a>.</p>\n\n\n\n<p>Besides Gutenberg, poking around I noticed a HTTP header and HTML comment <a href=\"https://usds.gov/apply\">encouraging people to join USDS</a>, and this great #46 easter egg in the theme file:</p>\n\n\n\n<img />\n\n\n\n<p>Anyone notice any other plugins? I haven&#8217;t spoken to him directly but I&#8217;d be shocked if <a href=\"https://nacin.com/\">Nacin</a> wasn&#8217;t involved with this one. I&#8217;m also curious if any of the WP agencies were involved, it has touches of <a href=\"https://10up.com/\">10up</a> but I don&#8217;t see any mention of it on their site or <a href=\"https://twitter.com/10up\">Twitter</a>. <a href=\"https://twitter.com/HoeflerCo/status/1351984719634771970\">Hoefler&amp;Co  credits</a> <a href=\"https://wideeye.co/\">Wide Eye Creative with the design</a>.</p>\n\n\n\n<p>I noticed a few people happy that some previous pages and files on the old site were returning 404 errors, like the <a href=\"https://www.nbcnews.com/news/nbcblk/how-trump-administration-s-1776-report-warps-history-racism-slavery-n1254926\">controversial 1776 report</a>, but on this I think the webmasters of the United States of America should demand better, since <a href=\"https://www.w3.org/Provider/Style/URI\">Cool URIs Don&#8217;t Change</a>. Previous websites are <a href=\"https://www.archives.gov/presidential-libraries/archived-websites\">all saved by the National Archives</a>, but there doesn&#8217;t appear to be any sort of norm for automatically redirecting links that went to any subdirectories or addresses under WhiteHouse.gov. </p>\n\n\n\n<p>There are WP plugins that could help, like <a href=\"https://wordpress.org/plugins/redirection/\">Redirection</a>, but also perhaps the root domain itself could always redirect to a subdomain, like 46.whitehouse.gov, so we&#8217;d have a consistent domain and permalinks for everything, and then each new administration would get a new subdomain.</p>\n\n\n\n<p><a href=\"https://wptavern.com/biden-white-house-sticks-with-wordpress-for-website-relaunch\">More coverage on WP Tavern</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 01:15:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Biden White House Sticks with WordPress for Website Relaunch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110712\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/biden-white-house-sticks-with-wordpress-for-website-relaunch?utm_source=rss&utm_medium=rss&utm_campaign=biden-white-house-sticks-with-wordpress-for-website-relaunch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3896:\"<img />\n\n\n\n<p>President Joe Biden took office today and unveiled a new <a href=\"https://www.whitehouse.gov/\">whitehouse.gov</a> that has been relaunched on WordPress. The previous administration switched from Drupal to WordPress in 2017, and technologists working with the Biden administration decided to stick with the same CMS. </p>\n\n\n\n<p>In keeping with the multilingual and accessibility features implemented on <a href=\"https://wptavern.com/biden-harris-transition-website-launches-on-wordpress\">the Biden-Harris transition team website</a>, whitehouse.gov launched with toggles for contrast and font size, along with a Spanish language switcher. The relaunched site also includes an <a href=\"https://www.whitehouse.gov/accessibility/\">accessibility statement</a> with a commitment from the administration to work towards conforming to the Web Content Accessibility Guidelines (WCAG) version 2.1, level AA criteria.</p>\n\n\n\n<p>Much of the content and design from the transition website has been preserved. The transition site now forwards to whitehouse.gov, while links to the previous administration&rsquo;s pages land on a 404 page with a link to <a href=\"https://www.archives.gov/presidential-libraries/archived-websites\">archived presidential websites</a>.</p>\n\n\n\n<p>Savvy observers might notice that the typography has been updated from the transition site, flipping the Mercury and Decimal typefaces. Hoefler&amp;Co, the typeface design firm that <a href=\"https://www.typography.com/blog/biden-fonts\">created these typefaces</a> for Biden&rsquo;s 2020 campaign, <a href=\"https://twitter.com/HoeflerCo/status/1351984719634771970\">tweeted</a> about how &ldquo;the serif Mercury felt more like the voice of the institution.&rdquo;  The sans-serif Decimal functions more in a supporting role on the site.</p>\n\n\n\n<p>Web professionals kicked the tires a bit and noticed the site is putting up fairly decent Lighthouse scores.  </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://t.co/hoaioTVqE3\">https://t.co/hoaioTVqE3</a> scoring super well on lighthouse, has dark mode and font size selector<br /><br />h8ers gonna be mad that it\'s wordpress and jQuery tho <a href=\"https://t.co/tyMNjdmnTH\">pic.twitter.com/tyMNjdmnTH</a></p>&mdash; Wes Bos (@wesbos) <a href=\"https://twitter.com/wesbos/status/1351957829461155849?ref_src=twsrc%5Etfw\">January 20, 2021</a></blockquote>\n</div>\n\n\n\n<p>Under the hood, code snoopers noticed an advertisement for the <a href=\"https://www.usds.gov/\">U.S. Digital Service</a> (USDS), the group of technologists who maintain many of the federal government&rsquo;s public-facing digital services.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In addition to the message from USDS, the site&rsquo;s source code includes a link to the US government&rsquo;s analytics program at <a rel=\"noreferrer noopener\" href=\"https://analytics.usa.gov/\" target=\"_blank\">analytics.usa.gov</a>. Tim Lowden, who manages the federal government&rsquo;s aggregated web analytics initiative, <a href=\"https://twitter.com/tdlowden/status/1351939004342685697\">said</a> this data has been made available for the first time since late 2017.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The analytics service records more than 2.5 billion pageviews across federal government websites each month. The data is available to the public, but it&nbsp;<a href=\"https://www.digitalgov.gov/services/dap/common-questions-about-dap-faq/#part-4\">does not track individuals</a>, and&nbsp;<a href=\"https://support.google.com/analytics/answer/2763052?hl=en\">anonymizes the IP addresses</a>&nbsp;of visitors. It shows information for visitors&rsquo; devices, browsers, operating systems, and location broken down into cities and countries. Many of those visiting the site today are from countries other than the U.S. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 00:20:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Gary: WordPress Importers: Free (as in Speech)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5478\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://pento.net/2021/01/21/wordpress-importers-free-as-in-speech/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8227:\"<p>Back at<a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\"> the start of this series</a>, I listed four problems within the scope of the WordPress Importers that we needed to address. Three of them are largely technical problems, which I covered in previous posts. In wrapping up this series, I want to focus exclusively on the fourth problem, which has a philosophical side as well as a technical one — but that does not mean we cannot tackle it!</p>\n\n\n\n<div class=\"wp-block-group alignwide is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-text-align-center\">Problem Number 4</p>\n\n\n\n<p class=\"alignwide has-extra-large-font-size\"><strong>Some services work against their customers, and actively prevent site owners from controlling their own content.</strong></p>\n</div></div>\n\n\n\n<p>Some services are merely inconvenient: they provide exports, but it often involves downloading a bunch of different files. Your CMS content is in one export, your store products are in another, your orders are in another, and your mailing list is in yet another. It&#8217;s not ideal, but they at least let you get a copy of your data.</p>\n\n\n\n<p>However, there&#8217;s another class of services that actively work against their customers. It&#8217;s these services I want to focus on: the services that don&#8217;t provide any ability to export your content — effectively locking people in to using their platform. We could offer these folks an escape! The aim isn’t to necessarily make them use WordPress, it’s to give them a way out, if they want it. Whether they choose to use WordPress or not after that is immaterial (though I certainly hope they would, of course). The important part is freedom of choice.</p>\n\n\n\n<p>It&#8217;s worth acknowledging that this is a different approach to how WordPress has historically operated in relation to other CMSes. We provide <em>importers</em> for many CMSes, but we previously haven&#8217;t written <em>exporters</em>. However, I don&#8217;t think this is a particularly large step: for CMSes that already provide exports, we&#8217;d continue to use those export files. This is focussed on the few services that try to lock their customers in.</p>\n\n\n\n<h2>Why Should WordPress Take This On?</h2>\n\n\n\n<p>There are several aspects to <em>why</em> we should focus on this.</p>\n\n\n\n<p>First of all, it&#8217;s the <a href=\"https://wordpress.org/about/\">the WordPress mission</a>. Underpinning every part of WordPress is the simplest of statements: </p>\n\n\n\n<p class=\"has-text-align-center\"><strong>Democratise Publishing</strong></p>\n\n\n\n<p class=\"has-text-align-center\"><em>The freedom to build. The freedom to change. The freedom to share.</em></p>\n\n\n\n<p>These freedoms are the pillars of a Free and Open Web, but they’re not invulnerable: at times, they need to be defended, and that needs people with the time and resources to offer a defence.</p>\n\n\n\n<p>Which brings me to my second point: WordPress has the people who can offer that defence! The WordPress project has so many individuals working on it, from such a wide variety of backgrounds, we&#8217;re able to take on a vast array of projects that a smaller CMS just wouldn&#8217;t have the bandwidth for. That&#8217;s not to say that we can do <em>everything</em>, but when there&#8217;s a need to defend the entire ecosystem, we&#8217;re able to devote people to the cause.</p>\n\n\n\n<p>Finally, it’s important to remember that WordPress doesn’t exist in a vacuum, we’re part of a broad ecosystem which can only exist through the web remaining open and free. By encouraging all CMSes to provide proper exports, and implementing them for those that don’t, we help keep our ecosystem healthy.</p>\n\n\n\n<p>We have the ability to take on these challenges, but we have a responsibility that goes alongside. We can&#8217;t do it solely to benefit WordPress, we need to make that benefit available to the entire ecosystem. This is why it&#8217;s important to<a href=\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\"> define a WordPress export schema</a>, so that any CMS can make use of the export we produce, not just WordPress. If you’ll excuse the imagery for a moment, we can be the knight in shining armour that frees people — then gives them the choice of what they do with that freedom, without obligation.</p>\n\n\n\n<h2>How Can We Do It?</h2>\n\n\n\n<p>Moving on to the technical side of this problem, I can give you some good news: the answer is definitely <em>not</em> screen scraping. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f604.png\" alt=\"?\" class=\"wp-smiley\" /> Scraping a site is fragile, impossible to transform into the full content, and provides an incomplete export of the site: anything that&#8217;s only available in the site dashboard can&#8217;t be obtained through scraping.</p>\n\n\n\n<p>I&#8217;ve recently been experimenting with an alternative approach to solving this problem. Rather than trying to create something resembling a traditional exporter, it turns out that modern CMSes provide the tools we need, in the form of REST APIs. All we need to do is call the appropriate APIs, and collate the results. The fun part is that we can authenticate with these APIs as the site owner, by calling them from a browser extension! So, that’s what I’ve been experimenting with, and it’s showing a lot of promise.</p>\n\n\n\n<p>If you&#8217;re interested in playing around with it, <a href=\"https://github.com/pento/free-as-in-speech\">the experimental code is living in this repository</a>. It&#8217;s a simple proof of concept, capable of exporting the text content of a blog on a Wix site, showing that we can make a smooth, comprehensive, easy-to-use exporter for any Wix site owner.</p>\n\n\n\n<img width=\"904\" height=\"446\" src=\"https://pento.net/wp-content/uploads/2021/01/Screen-Shot-2021-01-20-at-5.26.38-pm.png\" alt=\"Screenshot of the \" />\n\n\n\n<p>Clicking the export button starts a background script, which calls Wix&#8217;s REST APIs <em>as the site owner</em>, to get the original copy of the content. It then packages it up, and presents it as a WXR file to download.</p>\n\n\n\n<img width=\"972\" height=\"948\" src=\"https://pento.net/wp-content/uploads/2021/01/Screen-Shot-2021-01-20-at-5.27.38-pm.png\" alt=\"Screenshot of a Firefox download dialog, showing a Wix site packaged up as a WXR file.\" class=\"wp-image-5528\" />\n\n\n\n<p>I&#8217;m really excited about how promising this experiment is. It can ultimately provide a full export of any Wix site, and we can add support for other CMS services that choose to artificially lock their customers in.</p>\n\n\n\n<h2>Where Can I Help?</h2>\n\n\n\n<p>If you’re a designer or developer who’s excited about working on something new, head on over to the repository and <a href=\"https://github.com/pento/free-as-in-speech/issues\">check out the open issues</a>: if there’s something that isn’t already covered, feel free to open a new issue.</p>\n\n\n\n<p>Since this is new ground for a WordPress project, both technically and philosophically, I&#8217;d love to hear more points of view. It’s being discussed in <a href=\"https://make.wordpress.org/core/2021/01/19/dev-chat-agenda-for-january-20-2021-january-21-2021/#comment-40563\">the WordPress Core Dev Chat this week</a>, and you can also let me know what you think in the comments!</p>\n\n\n\n<div class=\"wp-block-group is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p><em>This post is part of a series, talking about the WordPress Importers, their history, where they are now, and where they could go in the future.</em></p>\n\n\n\n<ul><li><em><a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\">Part 1: Stating the Problem</a></em></li><li><em><a href=\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\">Part 2: Getting Our House in Order</a></em></li><li><em><a href=\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\">Part 3: Defining a Schema</a></em></li><li><a href=\"https://pento.net/2021/01/21/wordpress-importers-free-as-in-speech/\"><em>Part 4: Free (as in Speech)</em></a></li></ul>\n\n\n\n<p></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jan 2021 00:14:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: First Round of the FSE Outreach Program Concludes, Identifies Template-Editing Mode Problems\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110638\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:247:\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems?utm_source=rss&utm_medium=rss&utm_campaign=first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5309:\"<p class=\"has-drop-cap\">The Full Site Editing (FSE) <a href=\"https://wptavern.com/help-steer-the-future-of-wordpress-via-the-fse-outreach-program\">Outreach Program</a> has now concluded its <a href=\"https://make.wordpress.org/test/2021/01/15/fse-program-template-editing-testing-summary/\">first round of testing</a>. Its first focus area was centered on the template-editing mode introduced in <a href=\"https://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">Gutenberg 9.6</a>. The volunteers involved with the project identified several pain points.</p>\n\n\n\n<p>Gutenberg 9.6 added a new button that allows end-users, provided they are using a block-based theme, to switch between editing their post and the template that displays the post. As Josepha Haden <a href=\"https://wptavern.com/gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens\">said last year</a>, the ultimate goal is to &ldquo;consolidate down to just one beautiful, intuitive interface.&rdquo; Essentially, this new feature merges content and design in a way we have not seen in core WordPress before. It is a step toward that lofty goal.</p>\n\n\n\n<p>Traditionally, WordPress has always separated content from design. However, these two aspects of websites are continually merging together. There is a desire for this. The adoption of page builders over the last half-decade or so has made it abundantly clear.</p>\n\n\n\n<p>The biggest issue with this new template mode is that users need a working knowledge of the WordPress template system to understand the ramifications of their edits. One of the primary questions of the focus area was whether it was clear that the user was making large-scale changes to all posts when switching to the template-editing mode.</p>\n\n\n\n<p>&ldquo;I believe it was not clear enough how those changes could impact the site,&rdquo; <a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/#comment-1307\">wrote H&eacute;ctor Prieto in response</a>. &ldquo;If you don&rsquo;t already know how templates, template parts, and global blocks like Site Title work, you might not understand how your editing will affect the rest of the site.&rdquo;</p>\n\n\n\n<p>Switching modes does create a quick popup at the bottom left of the screen that reads:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Editing template. Changes made here affect all posts and pages that use the template.</p></blockquote>\n\n\n\n<p>It is easy to miss before it fades away. There is a ticket to <a href=\"https://github.com/WordPress/gutenberg/issues/28175\">stick this message</a> on the screen and allow the user to dismiss it. There is also another ticket for clarifying when a user is <a href=\"https://github.com/WordPress/gutenberg/issues/27849\">editing a template vs. content</a>.</p>\n\n\n\n<img />Entering template-editing mode from the post editor.\n\n\n\n<p>Gutenberg&rsquo;s current method is different than what you might see in a typical page builder. When switching to template-editing mode, the user is no longer editing that single post&rsquo;s front-end output. Instead, they are making global edits. A page builder would generally save any customizations to that page alone. If this remains the same, it could be a hurdle for the average user to clear.</p>\n\n\n\n<p>A template creation feature needs to be a part of this new mode. Users should be able to fork or clone their existing single post template and save it as a new template specific to that post. Or, maybe hand them a way to save it as a reusable template (i.e., &ldquo;page&rdquo; template). Paal Joachim Romdahl <a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/#comment-1303\">shared a similar thought</a>, likening it to the &ldquo;Save As&hellip;&rdquo; feature commonly found in computer programs.</p>\n\n\n\n<p>I do question whether users should be able to edit global templates while editing a single post. The two are only related insofar as the template displays the post content on the front end. WordPress should explore any type of design work from the post-editing screen as, first and foremost, specific to that post.</p>\n\n\n\n<p>The volunteers also identified other issues. Applying changes to the template and saving drops the user back into the post editor. The &ldquo;cancel&rdquo; button is tough to find &mdash; it is in a different location than where the user clicked to go into template-editing mode.</p>\n\n\n\n<p>Switching between post and template editing feels like an FSE 2.0 type of thing. The development team has enough issues on its plate with the normal site editor. It is a far cry from being a viable, production-ready product. The team&rsquo;s focus should be on working the kinks out of that system before merging it with the post editor. Crawl before you walk. Walk before you run.</p>\n\n\n\n<p>However, I am willing to be pleasantly surprised. In the long run, it will probably be a good thing that we are getting an early look at what these two different pieces of WordPress will look like working in conjunction.</p>\n\n\n\n<p>This is also why participation in the FSE Outreach Program is vital. The community needs this more formal type of process to identify areas that need improvement.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jan 2021 23:17:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"HeroPress: Changing Careers Into WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"https://heropress.com/essays/changing-careers-into-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=changing-careers-into-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6844:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2022/01/012021-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: With WordPress skills, you have more concrete skills to offer.\" /><p>If you’re looking to change careers into technology, WordPress is a great way to do it.</p>\n<p>In 2013, I was in a career counselor’s office. Just realizing that I needed to change careers out of music, almost the only thing I had known for the last 20 years:</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2022/01/trombone-namm.jpg\"><img /></a>At NAMM in Anaheim, California\n<p>Aside from feeling like a huge failure, I knew I’d need a lot of luck to get a job.</p>\n<p>Someone would have to take a big chance on me.</p>\n<p>But there were a few problems.</p>\n<p>I was terrified of talking to strangers, much less asking them big favors. And I had almost no traditionally useful skills.</p>\n<p>Enter WordPress.</p>\n<h2>Lots Of Options</h2>\n<p>When you’re changing careers, you’ll want skills that will help no matter what you end up doing.</p>\n<p>You don’t want to deep-dive into calculus and find out that it won’t help.</p>\n<p>Learning WordPress is perfect.</p>\n<p>If you get really interested in the technical side, you can be a JS or PHP developer.</p>\n<p>If you really like content creation, that’s also great. You can start a blog or work in marketing.</p>\n<p>If none of it interests you, at least you can help people set up a website as you look for another career.</p>\n<p>So soon after meeting with the career counselor, I took Zac Gordon’s course on WordPress Theme Development.</p>\n<p>I wrote a theme based on his course, and really liked how WordPress worked.</p>\n<p>He taught me to build sites, and later write plugins.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2022/01/with-zac-gordon.jpg\"><img /></a>Zac Gordon with XWP\n<h2>Invite Yourself To The Party</h2>\n<p>The great thing about WordPress is that you can contribute right away.</p>\n<p>With some careers, you need somebody to take a chance on you before you can do much.</p>\n<p>To get experience as an investment banker or business consultant, you probably need to actually have the job.</p>\n<p>But with WordPress, you can invite yourself.</p>\n<p>You can open pull requests to Core or Gutenberg without anyone asking.</p>\n<p>You can deploy plugins to wp.org that real people use, without having a college degree.</p>\n<p>With this growing experience, I applied online to <a href=\"https://xwp.co/\">XWP</a>.</p>\n<p>Weston Ruter responded right away, and was really helpful.</p>\n<p>I started opening simple PRs to “help” with the Customizer work.</p>\n<p>In reality, my work might have slowed things down, and was really simple.</p>\n<p>But I didn’t have to wait to be invited. I invited myself to the party, and one of the PRs was merged into Core.</p>\n<p>Later, when I interviewed with <a href=\"https://xwp.co/\">XWP</a> and got the job, I could show that I had a little experience working with other developers.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2022/01/with-xwp-1.jpg\"><img /></a>XWP At WordCamp US Contributor Day, 2017\n<p>It’s still embarrassing looking back at the work I did. But WordPress allows you to contribute, regardless of your experience level.</p>\n<p>Years later, when I lived in Mexico City, one of my friends got interested in technology.</p>\n<p>He was like me. He had a degree in an unrelated field, and wanted a great career.</p>\n<p>So I showed him how much opportunity WordPress has.</p>\n<p>He did something similar to what I did.</p>\n<p>He opened PRs to an agency’s repos, and the agency asked him if he wanted to talk about a job, without him needing to apply. Years later, he’s still doing really well at his job.</p>\n<p>I did very little, other than point him to a huge opportunity: WordPress.</p>\n<h2>Concrete Skills</h2>\n<p>Changing careers is really awkward.</p>\n<p>You read about networking, which seems like you’re asking strangers for favors and sending spam DMs.</p>\n<p>You also learn to reframe things as transferable skills.</p>\n<p>So if you’ve done hard things, you can say you’re “comfortable with ambiguity.”</p>\n<p>But with WordPress skills, you have more concrete skills to offer.</p>\n<p>It’s less awkward explaining to someone why they should take a chance on you.</p>\n<p>You’ve shown you’re committed to your career path by your portfolio of plugins.</p>\n<p>And you don’t have to send spam DMs on LinkedIn.</p>\n<p>In 2014, I went to my first WordPress meetup, <a href=\"https://www.meetup.com/WPLosAngeles\">WordPress Los Angeles</a>. I was nervous, but I wasn’t trying to take any value.</p>\n<p>I could even answer a few questions.</p>\n<p>Renee Johnson and I met there. We even reunited in WordCamp Europe and Mexico City several years later when I lived there:</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2022/01/with-renee.jpg\"><img /></a>Yani Jimenez and Renee Johnson, Mexico City\n<p>With WordPress skills, you can flip from taking to giving value. Everything is much less awkward.</p>\n<p>As you probably know, there are many self-taught developers in WordPress.</p>\n<p>College degrees rarely come up in hiring conversations, at least in my experience.</p>\n<p>And I’ve found WordPress very accepting of different career backgrounds. Matt Mullenweg was a musician, famously naming every release after a jazz musician.</p>\n<p>People in WordPress are very understanding about changing careers.</p>\n<p>Now, I don’t hide it, and it’s rarely more than a footnote in conversations.</p>\n<h2>Mentorship</h2>\n<p>Don’t go it alone.</p>\n<p>It’s easy to think that you can just take online courses and eventually be ready for a job.</p>\n<p>But code reviews are one of the main ways you’ll learn. And people in WP want to help.</p>\n<p>If you contribute a few PRs to someone’s GitHub repo, they’ll probably do a quick code review of your own plugin or theme.</p>\n<p>Weston was really helpful in doing a detailed review of my theme.</p>\n<p>You also can learn a lot contributing to Gutenberg or other plugins.</p>\n<p>They’ll give you detailed reviews. And you’ll basically get the same experience as if you were getting paid.</p>\n<p>But if I were to do this again, I’d also look for more formal mentorship.</p>\n<p>Hiring someone to review your plugins and themes would probably help.</p>\n<h2>Nothing To Fix</h2>\n<p>There’s a saying in marketing “what you can’t fix, you feature.”</p>\n<p>In WordPress, you don’t have to fix your non-traditional career background.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/changing-careers-into-wordpress/\">Changing Careers Into WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jan 2021 17:50:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ryan Kienstra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Gary: WordPress Importers: Defining a Schema\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5495\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8792:\"<p>While schemata are usually implemented using language-specific tools (eg, XML uses <a href=\"https://www.w3.org/standards/xml/schema\">XML Schema</a>, JSON uses <a href=\"https://json-schema.org/\">JSON Schema</a>), they largely use the same concepts when talking about data. This is rather helpful, we don&#8217;t need to make a decision on <a href=\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\">data formats</a> before we can start thinking about how the data should be arranged.</p>\n\n\n\n<p><em>Note: Since these concepts apply equally to all data formats, I&#8217;m using &#8220;WXR&#8221; in this post as shorthand for &#8220;the structured data section of whichever file format we ultimately use&#8221;, rather than specifically referring to the existing WXR format.</em> <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2>Why is a Schema Important?</h2>\n\n\n\n<p>It&#8217;s fair to ask why, if the WordPress Importers have survived this entire time <em>without</em> a formal schema, why would we need one now?</p>\n\n\n\n<p>There are two major reasons why we haven&#8217;t needed one in the past:</p>\n\n\n\n<ul><li>WXR has remained largely unchanged in the last 10 years: there have been small additions or tweaks, but nothing significant. There&#8217;s been no need to keep track of changes.</li><li>WXR is currently very simple, with just a handful of basic elements. In a recent experiment, I was able to implement a JavaScript-based WXR generator in just a few days, entirely by referencing <a href=\"https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/export.php\">the Core implementation</a>.</li></ul>\n\n\n\n<p>These reasons are also why it would help to implement a schema for the future:</p>\n\n\n\n<ul><li>As work on WXR proceeds, there will likely need to be substantial changes to what data is included: adding new fields, modifying existing fields, and removing redundant fields. Tracking these changes helps ensure any WXR implementations can stay in sync.</li><li>These changes will result in a more complex schema: relying on the source to re-implement it will become increasingly difficult and error-prone. Following Gutenberg&#8217;s lead, it&#8217;s likely that we&#8217;d want to provide official libraries in both PHP and JavaScript: keeping them in sync is best done from a source schema, rather than having one implementation copy the other.</li></ul>\n\n\n\n<p>Taking the time to plan out a schema now gives us a solid base to work from, and it allows for future changes to happen in a reliable fashion.</p>\n\n\n\n<h2>WXR for all of WordPress</h2>\n\n\n\n<p>With a well defined schema, we can start to expand what data will be included in a WXR file.</p>\n\n\n\n<h3>Media</h3>\n\n\n\n<p>Interestingly, many of the challenges around media files are less to do with WXR, and more to do with importer capabilities. The biggest headache is retrieving the actual files, which the importer currently handles by trying to retrieve the file from the remote server, as defined in the <code>wp:attachment_url</code> node. In context, this behaviour is understandable: 10+ years ago, personal internet connections were too slow to be moving media around, it was better to have the servers talk to each other. It&#8217;s a useful mechanism that we should keep as a fallback, but the more reliable solution is to include the media file with the export.</p>\n\n\n\n<h3>Plugins and Themes</h3>\n\n\n\n<p>There are two parts to plugins and themes: the code, and the content. Modern WordPress sites <em>require</em> plugins to function, and most are customised to suit their particular theme.</p>\n\n\n\n<p>For exporting the code, I wonder if a tiered solution could be applied:</p>\n\n\n\n<ul><li>Anything from WordPress.org would just need their slug, since they can be re-downloaded during import. Particularly as WordPress continues to move towards an auto-updated future, modified versions of plugins and themes are explicitly not supported.</li><li>Third party plugins and themes would be given a filter to use, where they can provide a download URL that can be included in the export file.</li><li>Third party plugins/themes that don’t provide a download URL would either need to be skipped, or zipped up and included in the export file.</li></ul>\n\n\n\n<p>For exporting the content, WXR already includes custom post types, but doesn&#8217;t include custom settings, or custom tables. The former should be included automatically, and the latter would likely be handled by an appropriate action for the plugin to hook into.</p>\n\n\n\n<h3>Settings</h3>\n\n\n\n<p>There are a currently handful of special settings that are exported, but (as I just noted, particularly with plugins and themes being exported) this would likely need to be expanded to included most items in&nbsp;<code>wp_options</code>.</p>\n\n\n\n<h3>Users</h3>\n\n\n\n<p>Currently, the bare minimum information about users who’ve authored a post is included in the export. This would need to be expanded to include more user information, as well as users who aren’t post authors.</p>\n\n\n\n<h2>WXR for <em>parts</em> of WordPress</h2>\n\n\n\n<p>The modern use case for importers isn&#8217;t just to handle a full site, but to handle keeping sites in sync. For example, most news organisations will have a staging site (or even several layers of staging!) which is synchronised to production.</p>\n\n\n\n<p>While it&#8217;s well outside the scope of this project to directly handle every one of these use cases, we should be able to provide the framework for organisations to build reliable platforms on. Exports should be repeatable, objects in the export should have unique identifiers, and the importer should be able to handle any subset of WXR.</p>\n\n\n\n<h2>WXR Beyond WordPress</h2>\n\n\n\n<p>Up until this point, we&#8217;ve really been talking about&nbsp;WordPress→WordPress migrations, but I think WXR is a useful format beyond that. Instead of just containing direct exports of the data from particular plugins, we could also allow it to contain &#8220;types&#8221; of data. This turns WXR into an intermediary language, exports can be created from any source, and imported into WordPress.</p>\n\n\n\n<p>Let&#8217;s consider an example. Say we create a tool that can export a Shopify, Wix, or GoDaddy site to WXR, how would we represent an online store in the WXR file? We don&#8217;t want to export in the format that any particular plugin would use, since a WordPress Core tool shouldn&#8217;t be advantaging one plugin over others.</p>\n\n\n\n<p>Instead, it would be better if we could format the data in a platform-agnostic way, which plugins could then implement support for. As luck would have it, <a href=\"https://schema.org/\">Schema.org</a> provides exactly the kind of data structure we could use here. It&#8217;s been <a href=\"https://schema.org/docs/releases.html\">actively maintained for nearly nine years</a>, it supports a <a href=\"https://schema.org/docs/schemas.html\">wide variety of data types</a>, and is intentionally platform-agnostic.</p>\n\n\n\n<p>Gazing into my crystal ball for a moment, I can certainly imagine a future where plugins could implement and declare support for importing certain data types. When handling such an import (assuming one of those plugins wasn&#8217;t already installed), the WordPress Importer could offer them as options during the import process. This kind of seamless integration allows WordPress to show that it offers the same kind of fully-featured site building experience that modern CMS services do.</p>\n\n\n\n<p>Of course, reality is never quite as simple as crystal balls and magic wands make them out to be. We have to contend with services that provide incomplete or fragmented exports, and there are even services that deliberately don&#8217;t provide exports at all. In the next post, I&#8217;ll be writing about why we should address this problem, and how we might be able to go about it.</p>\n\n\n\n<div class=\"wp-block-group is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p><em>This post is part of a series, talking about the WordPress Importers, their history, where they are now, and where they could go in the future.</em></p>\n\n\n\n<ul><li><em><a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\">Part 1: Stating the Problem</a></em></li><li><em><a href=\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\">Part 2: Getting Our House in Order</a></em></li><li><em><a href=\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\">Part 3: Defining a Schema</a></em></li><li><a href=\"https://pento.net/2021/01/21/wordpress-importers-free-as-in-speech/\"><em>Part 4: Free (as in Speech)</em></a></li></ul>\n\n\n\n<p></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jan 2021 23:13:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Custom Layouts Plugin Creates a Posts Display System for Both the Classic and Block Editors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:247:\"https://wptavern.com/custom-layouts-plugin-creates-a-posts-display-system-for-both-the-classic-and-block-editors?utm_source=rss&utm_medium=rss&utm_campaign=custom-layouts-plugin-creates-a-posts-display-system-for-both-the-classic-and-block-editors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5383:\"<p class=\"has-drop-cap\">Ross Morsali, via his brand Code Amp, released the <a href=\"https://wordpress.org/plugins/custom-layouts/\">Custom Layouts</a> plugin last week. The plugin&rsquo;s goal is to provide a visual post layout builder for users of both the block and classic editors.</p>\n\n\n\n<p>For end-users, this is yet another choice between the multitude of plugins for displaying posts. After years of new plugins launching in this space, it would seem that there would be a clear front-runner, but developers are still trying to tame this wild and complex feature. The Custom Layouts plugin has its own approach, and it is worth giving it a quick spin to see if it suits you.</p>\n\n\n\n<p>I have written extensively about the <a href=\"https://wptavern.com/gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block\">upcoming Query block</a> and its role in the <a href=\"https://wptavern.com/understanding-the-query-block-and-its-importance-in-site-editing\">future of WordPress</a>. However, it is necessary to look at alternative solutions for displaying posts via the block editor. The Gutenberg development team should take note of the things that work and those that do not.</p>\n\n\n\n<p>For developers, the plugin is a noteworthy experiment that uses the block editor component system outside of the actual editor. Custom Layouts uses these various components on its custom Layout and Template Editor screens.</p>\n\n\n\n<p>The plugin is a product of Morsali learning React and the block system in the last year and a half. &ldquo;Working with Gutenberg and the Block Editor as a developer is a far superior experience to the old paradigm (the classic editor) &mdash; the learning curve is definitely greater, but once you get over the hump it seems the future is bright,&rdquo; he wrote in the <a href=\"https://codeamp.com/creating-the-custom-layouts-plugin/\">plugin&rsquo;s announcement post</a>. &ldquo;I also love the fact that we don&rsquo;t actually need to be using the Block Editor to use Gutenberg components &mdash; that means we can still build what we want and how we want it (providing we&rsquo;re using React), whilst keeping the UI in tune with the rest of WordPress.&rdquo;</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<img />Template editor screen.\n\n\n\n<p class=\"has-drop-cap\">Custom Layouts takes a different route than similar plugins, splitting its components into different screens. The terminology can be confusing to the uninitiated. The plugin introduces two parts that serve as the foundation of its system:</p>\n\n\n\n<ul><li><strong>Templates:</strong> Handles the design of individual posts.</li><li><strong>Layouts:</strong> Controls queried posts and their layout.</li></ul>\n\n\n\n<p>I have had a beta version of the plugin since late December. This has given me three weeks to decide whether I like the approach. On the one hand, the plugin caters to two different user bases. One set can implement their layouts via the Custom Layouts block. Those on the classic editor can use the Layout Editor screen. Both share the Template Editor.</p>\n\n\n\n<img />Creating a three-column grid layout.\n\n\n\n<p>The plugin&rsquo;s system is a good option for users of the classic editor. It comes with a visual interface they would otherwise not have. It also provides a shortcode for easy copying/pasting into the post editor.</p>\n\n\n\n<p>For users of the block editor, having a separate screen for the template builder will likely feel unnatural. Because the block editor is a visual interface itself, the multiple screens create a disjointed atmosphere that never feels <em>right</em>.</p>\n\n\n\n<p>However, there is a solution for that in the plugin. I recommend users skip the Template Editor and Layout Editor screens altogether. The Custom Layouts block serves as an alternative layout builder in the block editor. Plus, users can edit existing templates via a popup overlay or even create new ones without ever leaving the post-editing screen. </p>\n\n\n\n<img />Overlay for editing a template.\n\n\n\n<p>Building everything from the post editor feels like it should feel. Users get more of that instant feedback that they are accustomed to through the block editor.</p>\n\n\n\n<p>There are benefits to the multi-component system. Separating the template builder means that users can build and reuse a specific design from a single source. They can also update individual templates, which will subsequently apply to all uses of those templates across the site.</p>\n\n\n\n<p>The other benefit is that end-users are not overloaded with choices. Building a query-related block, widget, shortcode, or similar component is fraught with complexity. This is because there are three pieces of laying out a list of posts: the query to load them, the overall layout, and the design of the individual posts. Putting options for each of these pieces into the block inspector, for example, means creating a balance between sacrificing some choices and providing every possible setting to the user. This balancing act is what drove Morsali toward separating the components of the plugin.</p>\n\n\n\n<p>On the whole, Custom Layouts is a solid plugin. The downside is that there is a little bit of a learning curve because it serves two audiences. Users will need to figure out which workflow best suits them first. Once they figure that out, the plugin is pretty nice to work with.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jan 2021 21:48:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress for Android Previews New Story Posts Feature, Now in Public Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110474\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordpress-for-android-previews-new-story-posts-feature-now-in-public-beta?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-for-android-previews-new-story-posts-feature-now-in-public-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3697:\"<p>WordPress users on Android may have noticed a new prompt in the mobile app for publishing Story posts. This feature is now in public beta in the Android app, ahead of an upcoming launch on the WordPress iOS app. Stories will also coming to the Block editor on WordPress.com in early 2021. </p>\n\n\n\n<p>Early access to Story posts is available in version 16.3+ of the app, released in mid-December. The prompt appears at the bottom of the site management screen. Selecting a Story post immediately takes you to your phone&rsquo;s media where you can add photos or a video.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>\n\n\n\n<p><br />The mobile app&rsquo;s implementation of the Stories feature is different from other platforms, like Instagram and Facebook, in several key ways. Most importantly, WordPress stories are not ephemeral. They live permanently on your site and anyone can view them after they are published. WordPress.com&rsquo;s <a href=\"https://wordpress.com/support/story-block/\">documentation</a> for the block highlights a few differences: </p>\n\n\n\n<ul><li>Posts with Stories won&rsquo;t disappear after 24 hours.&nbsp;</li><li>The Story content can be added to and edited after publishing.&nbsp;</li><li>Anyone visiting your site can view the Story.&nbsp;</li><li>You can share your Story on any platform using the post&nbsp;<a href=\"https://wordpress.com/support/permalinks-and-slugs/\">permalink</a>.</li></ul>\n\n\n\n<p>After testing the feature, I can confirm a few more differences. While the WordPress app&rsquo;s implementation transcends other platforms&rsquo; limitations on the duration of the story&rsquo;s visibility, it lacks basic features that users have come to expect from other apps. It doesn&rsquo;t support animated gifs, effects, location, stickers, music, and other embellishments that make stories such a creative social medium. At the moment, the only thing you can do is add colored text with a background.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>\n\n\n\n<p>Videos work as Stories, too, but they don&rsquo;t seem to have the same preview with a thumbnail image. It&rsquo;s just a generic placeholder for now. That may be something the team is still working on, but I logged an <a href=\"https://github.com/wordpress-mobile/WordPress-Android/issues/13809\">issue</a> on GitHub for it, in case it&rsquo;s a bug. </p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>\n\n\n\n<p>In the interest of owning your own content, I can see it being useful to create stories on your own website and share them to other networks. The current implementation is basically a fullscreen slideshow. It is not yet more compelling than what social networks offer, but it looks like WordPress for iOS <a href=\"https://github.com/tumblr/kanvas-ios/projects/1\">plans to expand on these features</a> using the open source <a href=\"https://github.com/tumblr/kanvas-ios\">Kanvas library</a> from Tumblr.</p>\n\n\n\n<p>Kanvas makes it possible to add&nbsp;effects, drawings, text, stickers, and make GIFs from existing media or the camera. If you have ever used the&nbsp;<a href=\"https://apps.apple.com/us/app/tumblr/id305343404\">Tumblr iOS app</a> then you have seen Kanvas in action in the camera, media editor, GIF maker, and media posting tool. It should make for a more exciting Stories implementation on iOS, with features on par with what users have come to expect from other platforms. Something similar for Android may be in the works and this post will be updated as soon as we receive comments from the mobile team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jan 2021 23:55:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Gary: WordPress Importers: Getting Our House in Order\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15440:\"<p>The <a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\">previous post</a> talked about the broad problems we need to tackle to bring our importers up to speed, making them available for everyone to use.</p>\n\n\n\n<p>In this post, I&#8217;m going to focus on what we could do with the existing technology, in order to give us the best possible framework going forward.</p>\n\n\n\n<h2>A Reliable Base</h2>\n\n\n\n<p>Importers are an interesting technical problem. Much like you&#8217;d expect from any backup/restore code, importers need to be extremely reliable. They need to comfortable handle all sorts of unusual data, and they need to keep it all safe. Particularly considering their age, the WordPress Importers do a remarkably good job of handling most content you can throw at it.</p>\n\n\n\n<p>However, modern development practices have evolved and improved since the importers were first written, and we should certainly be making use of such practices, when they fit with our requirements.</p>\n\n\n\n<p>For building reliable software that we expect to largely run by itself, a variety of comprehensive automated testing is critical. This ensures we can confidently take on the broader issues, safe in the knowledge that we have a reliable base to work from.</p>\n\n\n\n<p>Testing <em>must</em> be the first item on this list. A variety of automated testing gives us confidence that changes are safe, and that the code can continue to be maintained in the future.</p>\n\n\n\n<p>Data formats must be well defined. While this is useful for ensuring data can be handled in a predictable fashion, it&#8217;s also a very clear demonstration of our commitment to data freedom.</p>\n\n\n\n<p>APIs for creating or extending importers should be straightforward for hooking into.</p>\n\n\n\n<h3>Performance Isn&#8217;t an Optional Extra</h3>\n\n\n\n<p>With sites constantly growing in size (and with the export files potentially gaining a heap of extra data), we need to care about the performance of the importers.</p>\n\n\n\n<p>Luckily, there&#8217;s already been some substantial work done on this front:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2015/11/18/wordpress-importer-redux/\">WordPress Importer Redux</a></blockquote>\n</div>\n\n\n\n<p>There are other groups in the WordPress world who&#8217;ve made performance improvements in their own tools: gathering all of that experience is a relatively quick way to bring in production-tested improvements.</p>\n\n\n\n<h2>The WXR Format</h2>\n\n\n\n<p>It&#8217;s worth talking about the WXR format itself, and determining whether it&#8217;s the best option for handling exports into the future. XML-based formats are largely viewed as a relic of days gone past, so (if we were to completely ignore backwards compatibility for a moment) is there a modern data format that would work better?</p>\n\n\n\n<p>The short answer&#8230; kind of. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>XML is actually well suited to this use case, and (particularly when looking at performance improvements) is the only data format for which PHP comes with a built-in streaming parser.</p>\n\n\n\n<p>That said, WXR is basically an extension of the RSS format: as we add more data to the file that clearly doesn&#8217;t belong in RSS, there is likely an argument for defining an entirely WordPress-focused schema.</p>\n\n\n\n<h3>Alternative Formats</h3>\n\n\n\n<p>It&#8217;s important to consider what the priorities are for our export format, which will help guide any decision we make. So, I&#8217;d like to suggest the following priorities (in approximate priority order):</p>\n\n\n\n<ul><li><strong>PHP Support</strong>: The format should be natively supported in PHP, thought it is still workable if we need to ship an additional library.</li><li><strong>Performant</strong>: Particularly when looking at very large exports, it should be processed as quickly as possible, using minimal RAM.</li><li><strong>Supports Binary Files</strong>: <a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/#comment-37926\">The first comments on my previous post</a> asked about media support, we clearly should be treating it as a first-class citizen.</li><li><strong>Standards Based</strong>: Is the format based on a documented standard? (Another way to ask this: are there multiple different implementations of the format? Do those implementations all function the same?</li><li><strong>Backward Compatible</strong>: Can the format be used by existing tools with no changes, or minimal changes?</li><li><strong>Self Descriptive</strong>: Does the format include information about what data you&#8217;re currently looking at, or do you need to refer to a schema?</li><li><strong>Human Readable</strong>: Can the file be opened and read in a text editor?</li></ul>\n\n\n\n<p>Given these priorities, what are some options?</p>\n\n\n\n<h4>WXR (XML-based)</h4>\n\n\n\n<p>Either the RSS-based schema that we already use, or a custom-defined XML schema, the arguments for this format are pretty well known.</p>\n\n\n\n<p>One argument that hasn&#8217;t been well covered is how there&#8217;s a definite trade-off when it comes to supporting binary files. Currently, the importer tries to scrape the media file from the original source, which is not particularly reliable. So, if we were to look at including media files in the WXR file, the best option for storing them is to base64 encode them. Unfortunately, that would have a serious effect on performance, as well as readability: adding huge base64 strings would make even the smallest exports impossible to read.</p>\n\n\n\n<p>Either way, this option would be mostly backwards compatible, though some tools may require a bit of reworking if we were to substantial change the schema.</p>\n\n\n\n<h4>WXR (ZIP-based)</h4>\n\n\n\n<p>To address the issues with media files, an alternative option might be to follow the path that Microsoft Word and OpenOffice use: put the text content in an XML file, put the binary content into folders, and compress the whole thing. </p>\n\n\n\n<p>This addresses the performance and binary support problems, but is initially worse for readability: if you don&#8217;t know that it&#8217;s a ZIP file, you can&#8217;t read it in a text editor. Once you unzip it, however, it does become quite readable, and has the same level of backwards compatibility as the XML-based format.</p>\n\n\n\n<h4>JSON</h4>\n\n\n\n<p>JSON could work as a replacement for XML in both of the above formats, with one additional caveat: there is no streaming JSON parser built in to PHP. There are 3rd party libraries available, but given <a href=\"http://seriot.ch/parsing_json.php\">the documented differences between JSON parsers</a>, I would be wary about using one library to produce the JSON, and another to parse it.</p>\n\n\n\n<p>This format largely wouldn&#8217;t be backwards compatible, though tools which rely on the export file being plain text (eg, command line tools to do broad search-and-replaces on the file) can be modified relatively easily.</p>\n\n\n\n<p>There are additional subjective arguments (both for and against) the readability of JSON vs XML, but I&#8217;m not sure there&#8217;s anything to them beyond personal preference.</p>\n\n\n\n<h4>SQLite</h4>\n\n\n\n<p>The <a href=\"https://sqlite.org/index.html\">SQLite</a> team wrote <a href=\"https://www.sqlite.org/affcase1.html\">an interesting (indirect) argument</a> on this topic: OpenOffice uses a ZIP-based format for storing documents, the SQLite team argued that there would be benefits (particularly around performance and reliability) for OpenOffice to switch to SQLite.</p>\n\n\n\n<p>They key issues that I see are:</p>\n\n\n\n<ul><li>SQLite is included in PHP, but <a href=\"https://www.php.net/manual/en/sqlite3.installation.php\">not enabled by default on Windows</a>.</li><li>While the SQLite team have a strong commitment to providing long-term support, SQLite is not a standard, and the only implementation is the one provided by the SQLite team.</li><li>This option is not backwards compatible at all.</li></ul>\n\n\n\n<h4>FlatBuffers</h4>\n\n\n\n<p><a href=\"http://google.github.io/flatbuffers/\">FlatBuffers</a> is an interesting comparison, since it&#8217;s a data format focussed entirely on speed. The down side of this focus is that it <em>requires</em> a defined schema to read the data. Much like SQLite, the only standard for FlatBuffers is the implementation. Unlike SQLite, FlatBuffers has made no commitments to providing long-term support.</p>\n\n\n\n<table class=\"has-fixed-layout\"><thead><tr><th></th><th class=\"has-text-align-center\">WXR (XML-based)</th><th class=\"has-text-align-center\">WXR (ZIP-based)</th><th class=\"has-text-align-center\">JSON</th><th class=\"has-text-align-center\">SQLite</th><th class=\"has-text-align-center\">FlatBuffers</th></tr></thead><tbody><tr><td>Works in PHP?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td></tr><tr><td>Performant?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td></tr><tr><td>Supports Binary Files?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td></tr><tr><td>Standards Based?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /> / <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td></tr><tr><td>Backwards Compatible?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td></tr><tr><td>Self Descriptive?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td></tr><tr><td>Readable?</td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /> / <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/2705.png\" alt=\"✅\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td><td class=\"has-text-align-center\"><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/274c.png\" alt=\"❌\" class=\"wp-smiley\" /></td></tr></tbody></table>\n\n\n\n<p>As with any decision, this is a matter of trade-offs. I&#8217;m certainly interested in hearing additional perspectives on these options, or thoughts on options that I haven&#8217;t considered.</p>\n\n\n\n<p>Regardless of which particular format we choose for storing WordPress exports, every format should have (or in the case of FlatBuffers, <em>requires</em>) a schema. We can talk about schemata without going into implementation details, so I&#8217;ll be writing about that in the next post.</p>\n\n\n\n<div class=\"wp-block-group is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p><em>This post is part of a series, talking about the WordPress Importers, their history, where they are now, and where they could go in the future.</em></p>\n\n\n\n<ul><li><em><a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\">Part 1: Stating the Problem</a></em></li><li><em><a href=\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\">Part 2: Getting Our House in Order</a></em></li><li><em><a href=\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\">Part 3: Defining a Schema</a></em></li><li><a href=\"https://pento.net/2021/01/21/wordpress-importers-free-as-in-speech/\"><em>Part 4: Free (as in Speech)</em></a></li></ul>\n\n\n\n<p></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jan 2021 22:50:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Kinsta Launches Free Local WordPress Development Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://wptavern.com/kinsta-launches-free-local-wordpress-development-tool?utm_source=rss&utm_medium=rss&utm_campaign=kinsta-launches-free-local-wordpress-development-tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5961:\"<p class=\"has-drop-cap\">Kinsta, a managed WordPress hosting company, announced its local development tool named <a href=\"https://kinsta.com/devkinsta/\">DevKinsta</a> earlier today. The tool allows developers to spin up new WordPress sites, including multisite support, in moments. Each site is automatically configured with Nginx, PHP, and MySQL.</p>\n\n\n\n<p>DevKinsta packages Adminer, an open-source database manager. The system also includes an SMTP server and email inbox for testing outgoing emails locally.</p>\n\n\n\n<p>&ldquo;This is the first version of the tool, let&rsquo;s say the MVP, but we have a dedicated development team supporting and adding a lot of new features to it,&rdquo; said Tom Zsomborgi, Kinsta&rsquo;s Chief Business Officer.</p>\n\n\n\n<p>Developers can run and test HTTPS support and enable <code>WP_DEBUG</code> at the flip of a switch. Kinsta web hosting customers can also deploy their sites directly from the interface.</p>\n\n\n\n<p>It took me around an hour to get the system set up and running. To be more exact, I spent 53 minutes. Close enough. Between having to sign out, restart my laptop, and waiting for various pieces to install, I at least managed to get a little laundry done in those dull, in-between moments.</p>\n\n\n\n<img />Installing DevKinsta on Windows.\n\n\n\n<p>The setup process was not a completely pain-free affair. However, the price of admission to use this tool &mdash; a little bit of my time &mdash; was well worth it.</p>\n\n\n\n<p>Let me be clear. I have tested far worse systems. Even with over 15 years of development experience under my belt, I have utterly failed at setting up other local dev environments. For DevKinsta to simply get me to the finish line is a success.</p>\n\n\n\n<p>However, I like simple things, and I prefer them to move along relatively quickly. I am accustomed to a 20-minute XAMPP setup. While it may not be as fancy or have the bells and whistles of more sophisticated development tools, it gets the job done and rarely doles out headaches.</p>\n\n\n\n<p>The holdup was setting up Windows Subsystem for Linux (WSL 2) and Docker, which are both requirements. Jump-starting DevKinsta itself was a breeze. And, as an old-school XAMPP user, DevKinsta&rsquo;s ease of use has pulled me in enough to do more than just give it a passing glance. I could actually see myself using this on a day-to-day basis.</p>\n\n\n\n<p>In short, I am sold. DevKinsta is a tool all WordPress developers should at least spin up once.</p>\n\n\n\n<p>Thus far, the <a href=\"https://twitter.com/kinsta/status/1351177344740941829\">feedback on Twitter</a> has been generally positive. However, Linux users may have to wait a bit because the tool is only available for macOS and Windows at the moment.</p>\n\n\n\n<p>&ldquo;I love seeing companies releasing local development tools but I wish more would offer their services to Linux users,&rdquo; <a href=\"https://twitter.com/chadmccullough/status/1351195217483988998\">tweeted</a> WordPress developer Chad McCullough. &ldquo;There are a lot of us developers out there running Linux.&rdquo; The Kinsta team responded that the tool will eventually support Linux and that news is forthcoming.</p>\n\n\n\n<img />Spinning up a new WordPress site.\n\n\n\n<p>The simple and straightforward UI is what makes this tool useful. Most developers do not need overly complicated configurations and options. They simply need to launch an environment that lets them work on their own projects. Anything beyond the basics far too often gets in the way.</p>\n\n\n\n<p>DevKinsta makes it easy to launch and manage multiple development installs. Developers can also switch PHP versions via a simple dropdown &mdash; versions 7.2 &ndash; 8.0 are currently supported.</p>\n\n\n\n<img />Site management screen.\n\n\n\n<p>The obvious comparison for DevKinsta will be against <a href=\"https://localwp.com/\">Local by Flywheel</a>, which has increasingly become a primary tool for many WordPress developers.</p>\n\n\n\n<p>Zsomborgi explained why the company thinks DevKinsta is a better option. &ldquo;In our case, Docker is an important part here. Local doesn&rsquo;t use virtualization in the background. Local has to install every piece of the environment to the host machine (NGINX, apache, different PHP versions, etc.). DevKinsta encapsulates these technologies into containers. Containers do make things easier for maintaining different applications without interrupting the host OS or installing many of the dependencies that are not required. We pretty much don&rsquo;t touch the host OS, but have Docker as our main dependency to run the applications on their own environments.&rdquo;</p>\n\n\n\n<p>He said this speeds up the upgrade process and makes it easier to maintain bug fixes and send out security patches. He also said that because each application runs on its own Kernel namespace, any security issues should not affect the host OS.</p>\n\n\n\n<p>&ldquo;If the user is comfortable enough with Docker, he can extend DevKinsta features,&rdquo; said Zsomborgi. &ldquo;For example, he can monitor the usage of the container, or the PHP usage specifically as an example with docker monitoring tools that comes out of the box with Docker installation. The user can install any utility inside DevKinsta containers without touching the host OS and use applications that are not supported on Windows, for example.&rdquo;</p>\n\n\n\n<p>One of the use cases he mentioned was installing a benchmark tool to get statistics about site performance. This can be installed inside the Nginx container as a sidecar or separate container.</p>\n\n\n\n<p>&ldquo;In the past, Local didn&rsquo;t use exactly Docker,&rdquo; said Zsomborgi. &ldquo;They used VirtualBox + DockerMachine. We tried it, and it was a bit painful. But without VirtualBox, DevKinsta can be more stable and scalable. So we use Docker without VirtualBox. It also needs virtualization, but nowadays, there are fewer Windows computers that have disabled virtualization by default.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jan 2021 21:07:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Gary: WordPress Importers: Stating the Problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8838:\"<p>It&#8217;s time to focus on the WordPress Importers.</p>\n\n\n\n<p>I&#8217;m not talking about tidying them up, or improve performance, or fixing some bugs, though these are certainly things that should happen. Instead, we need to consider their purpose, how they fit as a driver of WordPress&#8217; commitment to Open Source, and how they can be a key element in helping to keep the Internet Open and Free.</p>\n\n\n\n<h2>The History</h2>\n\n\n\n<p>The WordPress Importers are arguably <em>the</em> key driver to WordPress&#8217; early success. Before the importer plugins existed (before WordPress even supported plugins!) there were a handful of <code>import-*.php</code> scripts in the <a href=\"https://core.trac.wordpress.org/browser/trunk/wp-admin?rev=688\"><code>wp-admin</code> directory</a> that could be used to import blogs from other blogging platforms. When other platforms fell out of favour, WordPress already had an importer ready for people to move their site over. One of the most notable instances was in 2004, <a href=\"https://github.com/WordPress/book/blob/trunk/Content/Part%202/9-freedom-zero.md\">when Moveable Type changed their license and prices</a>, suddenly requiring personal blog authors to pay for something that had previously been free. WordPress was fortunate enough to be in the right place at the right time: many of WordPress&#8217; earliest users came from Moveable Type.</p>\n\n\n\n<p>As time went on, WordPress became well known in its own right. Growth relied less on people wanting to switch from another provider, and more on people choosing to start their site with WordPress. For <a href=\"https://core.trac.wordpress.org/ticket/13307\">practical reasons</a>, the importers were moved out of WordPress Core, and into their own plugins. Since then, they&#8217;ve largely been in maintenance mode: bugs are fixed when they come up, but since export formats rarely change, they&#8217;ve just continued to work for all these years.</p>\n\n\n\n<p>An unfortunate side effect of this, however, is that new importers are rarely written. While a new breed of services have sprung up over the years, the WordPress importers haven&#8217;t kept up.</p>\n\n\n\n<h2>The New Services</h2>\n\n\n\n<p>There are many new CMS services that have cropped up in recent years, and we don&#8217;t have importers for any of them. WordPress.com has a few extra ones written, but they&#8217;ve been built on the WordPress.com infrastructure out of necessity.</p>\n\n\n\n<p>You see, we&#8217;ve always assumed that other CMSes will provide some sort of export file that we can use to import into WordPress. That isn&#8217;t always the case, however. Some services (notable, <a href=\"https://support.wix.com/en/article/exporting-or-embedding-your-wix-site-elsewhere\">Wix</a> and <a href=\"https://godaddy.com/community/Websites-Marketing-Website/Exporting-Website-Builder-Site-to-Word-Press/td-p/124526\">GoDaddy Website Builder</a>) deliberately don&#8217;t allow you to export your own content. Other services provide incomplete or fragmented exports, needlessly forcing stress upon site owners who want to use their own content outside of that service.</p>\n\n\n\n<p>To work around this, WordPress.com has implemented importers that effectively scrape the site: while this has worked to some degree, it does require regular maintenance, and the importer has to do a lot of guessing about how the content should be transformed. This is clearly not a solution that would be maintainable as a plugin.</p>\n\n\n\n<div class=\"wp-block-group alignwide is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-text-align-center\">Problem Number 4</p>\n\n\n\n<p class=\"alignwide has-extra-large-font-size\"><strong>Some services work against their customers, and actively prevent site owners from controlling their own content.</strong></p>\n</div></div>\n\n\n\n<p>This strikes at the heart of the <a href=\"https://wordpress.org/about/#bill-of-rights\">WordPress Bill of Rights</a>. WordPress is built with fundamental freedoms in mind: all of those freedoms point to owning your content, and being able to make use of it in any form you like. When a CMS actively works against providing such freedom to their community, I would argue that we have an obligation to help that community out.</p>\n\n\n\n<h2>A Variety of Content</h2>\n\n\n\n<p>It&#8217;s worth discussing how, when starting a modern CMS service, the bar for success is very high. You can&#8217;t get away with just providing a basic CMS: you need to provide all the options. Blogs, eCommerce, mailing lists, forums, themes, polls, statistics, contact forms, integrations, embeds, the list goes on. The closest comparison to modern CMS services is&#8230; the <em>entire</em> WordPress ecosystem: built on WordPress core, but with the myriad of plugins and themes available, along with the variety of services offered by a huge array of companies.</p>\n\n\n\n<p>So, when we talk about the importers, we need to consider how they&#8217;ll be used.</p>\n\n\n\n<div class=\"wp-block-group alignwide is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-text-align-center\">Problem Number 3</p>\n\n\n\n<p class=\"alignwide has-extra-large-font-size\"><strong>To import from a modern CMS service into WordPress, your importer needs to map from service features to WordPress plugins.</strong></p>\n</div></div>\n\n\n\n<h2>Getting Our Own House In Order</h2>\n\n\n\n<p>Some of these problems don&#8217;t just apply to new services, however.</p>\n\n\n\n<p>Out of the box, WordPress exports to WXR (WordPress eXtended RSS) files: an XML file that contains the <em>content</em> of the site. Back when WXR was first created, this was all you really needed, but much like the rest of the WordPress importers, it hasn&#8217;t kept up with the times. A modern WordPress site isn&#8217;t just the sum of its content: a WordPress site has plugins and themes. It has various options configured, it has huge quantities of media, it has masses of text content, far more than the first WordPress sites ever had.  </p>\n\n\n\n<div class=\"wp-block-group alignwide is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-text-align-center\">Problem Number 2</p>\n\n\n\n<p class=\"alignwide has-extra-large-font-size\"><strong>WXR doesn&#8217;t contain a full export of a WordPress site.</strong></p>\n</div></div>\n\n\n\n<p>In my view, WXR is a solid format for handling exports. An XML-based system is quite capable of containing all forms of content, so it&#8217;s reasonable that we could expand the WXR format to contain the entire site.</p>\n\n\n\n<h2>Built for the Future</h2>\n\n\n\n<p>If there&#8217;s one thing we can learn from the history of the WordPress importers, it&#8217;s that maintenance will potentially be sporadic. Importers are unlikely to receive the same attention that the broader WordPress Core project does, owners may come and go. An importer will get attention if it breaks, of course, but it otherwise may go months or years without changing.</p>\n\n\n\n<div class=\"wp-block-group alignwide is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-text-align-center\">Problem Number 1</p>\n\n\n\n<p class=\"alignwide has-extra-large-font-size\"><strong>We can&#8217;t depend on regular importer maintenance in the future.</strong></p>\n</div></div>\n\n\n\n<p>It&#8217;s quite possible to build code that will be running in 10+ years: we see examples all across the WordPress ecosystem. Doing it in a reliable fashion needs to be a deliberate choice, however.</p>\n\n\n\n<h2>What&#8217;s Next?</h2>\n\n\n\n<p>Having worked our way down from the larger philosophical reasons for the importers, to some of the more technically-oriented implementation problems; I&#8217;d like to work our way back out again, focussing on each problem individually. In the following posts, I&#8217;ll start laying out how I think we can bring our importers up to speed, prepare them for the future, and make them available for everyone.</p>\n\n\n\n<div class=\"wp-block-group is-style-twentytwentyone-border\"><div class=\"wp-block-group__inner-container\">\n<p><em>This post is part of a series, talking about the WordPress Importers, their history, where they are now, and where they could go in the future.</em></p>\n\n\n\n<ul><li><em><a href=\"https://pento.net/2021/01/18/wordpress-importers-stating-the-problem/\">Part 1: Stating the Problem</a></em></li><li><em><a href=\"https://pento.net/2021/01/19/wordpress-importers-getting-our-house-in-order/\">Part 2: Getting Our House in Order</a></em></li><li><em><a href=\"https://pento.net/2021/01/20/wordpress-importers-defining-a-schema/\">Part 3: Defining a Schema</a></em></li><li><a href=\"https://pento.net/2021/01/21/wordpress-importers-free-as-in-speech/\"><em>Part 4: Free (as in Speech)</em></a></li></ul>\n\n\n\n<p></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jan 2021 00:25:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: MapLibre Launches as Official Open Source Successor to Mapbox GL JS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js?utm_source=rss&utm_medium=rss&utm_campaign=maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2864:\"<p>In December, Mapbox shocked its open source contributor community with the news that <a href=\"https://wptavern.com/mapbox-gl-js-is-no-longer-open-source\">Mapbox GL JS version 2.0 would be released under a proprietary license</a>. The JavaScript library powers interactive, customizable vector maps on many high profile websites like CNN, The New York Times, Ancestry, Strava, Shopify, Facebook, and more. Older versions remain open source but Mapbox will only be investing in developing new features for the proprietary version going forward.</p>\n\n\n\n<p>Multiple parties started their own forks immediately following Mapbox&rsquo;s announcement. In an effort to avoid fragmentation, the community worked together to merge their ideas under one project. One month later, <a href=\"https://github.com/maplibre/maplibre-gl-js\">MapLibre GL</a> is now the official open source successor to Mapbox GL JS. The project&rsquo;s founders represent a diverse group of companies who relied on the open source software, including MapTiler, Elastic, StadiaMaps, Microsoft, Ceres Imaging, WhereGroup, Jawg, Stamen Design, and more.</p>\n\n\n\n<p>&ldquo;In December 2020, Mapbox released the second version of their JavaScript library for publishing maps online,&rdquo; MapTiler founder and CEO Petr Pridal said. &ldquo;However, this time all the new features were overshadowed by a change in the license: previously free as in freedom, it became closed for external contributors and usage was restricted to people with active Mapbox subscriptions. One has to pay even for loading this JavaScript library.&rdquo;</p>\n\n\n\n<p>Pridal said the MapLibre project name is a shortened form of &ldquo;Map library restarted (or reinvented),&rdquo; with <em>libre</em> referring to freedom and independence. Its founders agreed that MapLibre should be provider-independent, so developers can load maps from their preferred providers or self-hosted maps.</p>\n\n\n\n<p> The community-led fork may also become home to <a href=\"https://github.com/maptiler/maplibre-gl-native\">MapLibre GL Native</a>, as contributors are considering a proposal to put MapTiler&rsquo;s open source fork of Mapbox&rsquo;s mobile map SDKs for Android and iOS under the MapLibre umbrella.</p>\n\n\n\n<p>Mapbox is used by <a href=\"https://jetpack.com/support/jetpack-blocks/map-block/\">WordPress.com</a> as well as in Jetpack for the <a href=\"https://jetpack.com/support/jetpack-blocks/map-block/\">Map block</a>. The library is also used in many&nbsp;<a href=\"https://wordpress.org/plugins/search/mapbox/\">plugins</a>&nbsp;on WordPress.org, some with tens of thousands of users. Plugin developers who have integrated Mapbox GL JS version 1.13 or older will want to check out the <a href=\"https://github.com/maplibre/maplibre-gl-js\">MapLibre</a> project as an open source alternative to Mapbox&rsquo;s proprietary 2.0 update. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Jan 2021 23:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: A Multi-Theme System, the Decade-Long Wait for Grandchild Themes, and Themeless Templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates?utm_source=rss&utm_medium=rss&utm_campaign=a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5994:\"<p class=\"has-drop-cap\">Around 2010, child theming had finally caught its stride. Bigger theme shops were starting to take note, and some were implementing advanced parent themes that were meant to serve as a &ldquo;framework&rdquo; for creating child themes. The theme development community hit a bit of a brick wall amid this explosion of child theming. Grandchild themes became a topic of debate.</p>\n\n\n\n<p>One of the use cases for child themes was to protect customizations made by end-users. When the parent theme was updated, those changes remained intact within the child theme. Users could get bug fixes and enhancements without worry. It was an ingenious system.</p>\n\n\n\n<p>However, another use case for child themes was to create vast customizations of the parent theme. Many of these child themes were marketed and sold to end-users. <em>The problem?</em> There was no way for users to protect their customizations if and when the developer updated the child theme. WordPress had no grandchild theme concept or any other sort of cascading theme system beyond the parent-child relationship.</p>\n\n\n\n<p>So, the problem remained. Unsolved.</p>\n\n\n\n<p>Some businesses such as StudioPress and its Genesis parent theme thrived over the years with this system. Others moved along. In reality, child theming became a niche feature that WordPress never expanded upon in any meaningful way. Theme authors were left to their own devices. With the arrival of the customizer and the expansion of page builders, code customizations almost disappeared. Most modifications were handled via an interface launched from the WordPress admin. The average user had little need to DIY their way through custom templates. Thus began child theming&rsquo;s drizzle into near obscurity.</p>\n\n\n\n<p>Gutenberg&rsquo;s site editor, which will likely land in WordPress this year, had seemed to be the upcoming final blow to the child theming paradigm. Everyone from developers to end-users will be able to roll out custom templates directly from the WordPress admin.</p>\n\n\n\n<p>However, should we be rethinking the role of a hierarchical theming system?</p>\n\n\n\n<p>Full Site Editing is already introducing an extra level to the hierarchy. Traditionally, WordPress theming had a two-tier template hierarchy. In the future, it will add a tier for user-created templates. If that is possible, why not go ahead and throw in grandchild themes? Or, simply do away with such arbitrary limitations altogether?</p>\n\n\n\n<p>A new pull request to the Gutenberg repository essentially <a href=\"https://github.com/WordPress/gutenberg/pull/28131\">creates a multi-theme system</a>. Or, rather, it creates a multi-theme templating system. Aside from the <code>style.css</code>, <code>functions.php</code>, and <code>theme.json</code> files, block-based themes are essentially a collection of templates.</p>\n\n\n\n<p>The patch is proposing that users should be able to opt into this multi-template system. They would have the option to keep templates from an old theme around when they switch to a new one. While not currently implemented in the pull request, he also proposes allowing users to clone templates from their old theme.</p>\n\n\n\n<p>&ldquo;In recent months, there have been whispers around the future possibility of multiple themes being active, templates being &lsquo;themeless,&rsquo; etc.,&rdquo; wrote the patch creator. &ldquo;This branch is an implementation of that. The idea behind this implementation is there can only be one active theme at a time, but the <code>wp_theme</code> taxonomy can be used to link up individual templates / template parts with one or more themes at a time.&rdquo;</p>\n\n\n\n<p>It does not fulfill the dreams of a decade-old grandchild theme system. However, it could provide some precedent for exploring a full hierarchical theme system.</p>\n\n\n\n<p>With the simplification and further standardization of how themes work, we should be dusting off old ideas and shoving them into a new light.</p>\n\n\n\n<p>Full Site Editing will eventually solve the grandchild theme problem regardless of whether it had intended to. With the new tier of custom user templates, the upgradability problem created years ago will simply disappear. Users will be able to readily update their parent and child themes without fear of losing customizations. WordPress will safely store their custom templates in the database. It will even keep their design changes via the Global Styles system. Maybe, just maybe, child themes will begin to reach their initial height of popularity.</p>\n\n\n\n<p>With the proposed system, users could mix and match templates from unrelated themes. If this happens, it begs the question of whether <em>theme</em> templates are even necessary.</p>\n\n\n\n<p>Last year, Rich Tabor opened a discussion on the possibility of a <a href=\"https://richtabor.com/the-future-of-wordpress-themes/\">single master theme</a> for WordPress. In that system, WordPress would create a set of base templates. Theme authors could simply override the pieces that they wanted. They could even pare themes down to simple <code>style.css</code> and <code>theme.json</code> files.</p>\n\n\n\n<p>That almost seems to be a recipe for bland and boring themes. However, if you couple it with a template directory on WordPress.org similar to what GutenbergHub has <a href=\"https://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory\">already introduced</a>, users could pick and choose the templates they want. It could be both wondrous and disastrous, but I would not mind exploring the idea.</p>\n\n\n\n<p>WordPress and its Gutenberg project have a lot of options on the table. Theme building could become interesting in the next year or two.</p>\n\n\n\n<p class=\"is-style-highlight\"><strong>Update:</strong><em> some names have been removed from this post at the request of the people in question.  While this is not standard procedure, they were removed because they were not integral to the story in this instance.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Jan 2021 21:04:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: New Local Blueprint Enables One-Click Setup for Testing Full Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5484:\"<p>If you haven&rsquo;t yet tested the Gutenberg team&rsquo;s progress on the full site editing (FSE) project, WordPress developer Carrie Dils has created a <a href=\"https://carriedils.com/full-site-editing-blueprint-for-local/\">blueprint for Local</a> that makes it easy to jump right in. Full site editing is phase 2 on the Gutenberg roadmap and is one of the <a href=\"https://wptavern.com/wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing\">main focuses</a> for WordPress core development in 2021. (Check out <a href=\"https://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">What Is Full Site Editing and What Does It Mean for the Future of WordPress</a> for a more in-depth look at why it is critical for end users to provide feedback during its development.)</p>\n\n\n\n<p><a href=\"https://localwp.com/\">Local</a> is one of the most popular free development tools for WordPress that allows users to set up new testing sites with one click, along with a host of more advanced features. Blueprints make it possible for users to save any site as a Blueprint so that it can be used as a quick start setup option later. The blueprint includes all files, databases, config files, and Local settings. Dils&rsquo; <a href=\"https://carriedils.com/full-site-editing-blueprint-for-local/\">full site editing blueprint</a> includes the following: </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a>&nbsp;plugin (with &ldquo;Full Site Editing&rdquo; experiment enabled)</li><li><a href=\"https://github.com/WordPress/theme-experiments\">WordPress theme experiments</a>&nbsp;(these are themes with support for full site editing) with the Twenty Twenty-One Blocks theme enabled</li><li><a href=\"https://github.com/Automattic/theme-tools/tree/master/gutenberg-test-data\">Gutenberg test data</a>&nbsp;(demo blog posts that use the most common Gutenberg blocks)</li></ul>\n\n\n\n<p>Follow Dils&rsquo; instructions for downloading and installing the FSE blueprint on MacOS or Windows. Local does not yet have an easy way for installing and sharing blueprints to other Local users, so you will need to add it to the right place within the application&rsquo;s files. If you find that you don&rsquo;t have a Blueprints folder, it may be because it is hidden or because you have never created a blueprint before. Once the zip file is in the right location, you will see the full site editing blueprint among the advanced options when you set up a new site: </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Once your site is set up, you can start exploring the brave new world of full site editing. (Be prepared &ndash; it is far from production ready but FSE is at a critical time in its development where it needs testing from real users to be a success.) The Gutenberg plugin may need to be updated to the latest. Your new site editing playground can be launched from the Site Editor menu item. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>On the frontend you will find the Twenty Twenty Blocks theme activated. You can also test using the <a href=\"https://wordpress.org/themes/tt1-blocks/\">Twenty Twenty-One (TT1) Blocks theme</a>, which was added to the WordPress.org Themes directory today, or any of the other experimental block based themes included in the blueprint. Click around, explore the template browser, try editing the template parts, change the global styles, and see how it&rsquo;s coming along. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The current state of full site editing is rough. It&rsquo;s hard to tell a feature from a bug at times, but once you get familiar with navigating it you might consider joining the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">FSE Outreach Experiment</a>. This is an effort to test different aspects of site editing in order to ground the interface in real world feedback as it is developed. For the past few weeks, contributors have been testing the interaction between editing a post versus editing templates. </p>\n\n\n\n<p>Anne McCarthy posted the <a href=\"https://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">first call for testing</a> to the&nbsp;<a href=\"https://make.wordpress.org/test/\">Make Test</a>&nbsp;blog with instructions for participants. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This call for testing is designed to explore the interaction between the two editing experiences (post vs. template editing) to make sure it&rsquo;s clear when you&rsquo;re editing each, granular saving works properly, etc. Ultimately, being able to edit templates like index, single, or archive directly is a huge leap forward compared to what&rsquo;s been possible in the past! Unlocking this level of customization gives you far more control to build the site you want and this call for testing is to help ensure it&rsquo;s as intuitive as possible.</p></blockquote>\n\n\n\n<p>The second testing challenge should be published soon. Anyone can contribute by following along with the test script and leaving comments on the post or <a href=\"https://github.com/WordPress/gutenberg/issues\">logging them as issues on GitHub</a>. Participants are also invited to join the&nbsp;<a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a>&nbsp;channel on WordPress Slack for updates or questions regarding testing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Jan 2021 08:21:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Show and Hide Content via the Block Visibility WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/show-and-hide-content-via-the-block-visibility-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=show-and-hide-content-via-the-block-visibility-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5736:\"<p class=\"has-drop-cap\">Nick Diego&rsquo;s <a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility</a> is not the only plugin to take on the challenge of controlling when blocks are visible on the front end. Other plugins like EditorsKit do a fine job of it. However, Block Visibility is a solution users should not overlook, even if they have already begun testing other options.</p>\n\n\n\n<p>Diego first released the plugin in August 2020. Since then, he has added routine updates that have added value without shifting its focus.</p>\n\n\n\n<p>One of the biggest reasons to use this plugin is that it is a standalone project. It is purely about doing one thing and doing it well. Its settings are all about giving users complete control over how they want to manage block visibility. From my experience with it, the plugin does its job better than alternatives.</p>\n\n\n\n<p>It may not have a large number of installs, but if its five-star rating on WordPress.org is any indication, it at least has a happy user base.</p>\n\n\n\n<p>Diego does have plans for a <a href=\"https://www.blockvisibilitywp.com/premium/\">pro add-on</a>. The tentative release date is set for Spring 2021. He seems to be moving forward with that launch after adding some foundational code in the recent version 1.4 release.</p>\n\n\n\n<p>&ldquo;As Block Visibility grows, there will be advanced and/or niche functionality that will be useful for certain users,&rdquo; wrote Diego in the <a href=\"https://www.blockvisibilitywp.com/whats-new-in-version-1-4/\">1.4 release announcement</a>. &ldquo;Think integrations with other third-party plugins. There will always be a free version of the plugin but some of these additional features will ultimately be provided by a premium (paid) add-on called Block Visibility Pro.&rdquo;</p>\n\n\n\n<p>In my previous job, one of my primary products focused on membership solutions. There is a seemingly endless number of possibilities that users dream up to control content visibility. I have little doubt that a pro add-on is necessary for catching all of the edge cases.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<p class=\"has-drop-cap\">Block Visibility is easy to use. End-users click a toggle switch, select from a date-picker, or tick a radio box. Their blocks are shown or hidden on the front end based on their selections. It does not get much simpler than that.</p>\n\n\n\n<p>The plugin adds a new &ldquo;Visibility&rdquo; tab for each block, which displays the visibility controls. The exception to this is for inner blocks. For example, the Columns block has controls, but the inner Column blocks do not. However, this can be enabled for inner blocks via the &ldquo;Full Control Mode&rdquo; on the plugin&rsquo;s settings screen.</p>\n\n\n\n<p>There are three primary types of options:</p>\n\n\n\n<ul><li>Hide the block from everyone.</li><li>Time-based start and stop dates for displaying.</li><li>Visibility by user role.</li></ul>\n\n\n\n<img />Block Visibility&rsquo;s controls in the inspector.\n\n\n\n<p>Hiding the block from everyone might be useful for users who are testing on a page or for blocks that are a work in progress. Start and stop dates create the potential for drip or trial content on membership-based sites, especially when combined with the role-based visibility options.</p>\n\n\n\n<p>These basic options will cover the majority of scenarios that the average user will need them for.</p>\n\n\n\n<p>One of the nicer features of the plugin is that it adds a transparent gray overlay, dashed border, and icon to each block that has visibility options set. This is shown when the block is not selected in the editor. It is one of those small touches that make the plugin useful.</p>\n\n\n\n<img />Overlay for blocks with visibility options.\n\n\n\n<p>There is one confusing piece of the UI. There are two instances where there is a &ldquo;public&rdquo; option. That label immediately makes me think that the block should be visible to everyone. However, reading the description is necessary. These options are for showing content to logged-out users only. I would rather see these two options renamed to &ldquo;logged out&rdquo; for clarity.</p>\n\n\n\n<h2>A Promising Future</h2>\n\n\n\n<p class=\"has-drop-cap\">While Block Visibility is a solid plugin right now, we are barely scratching the surface of what will be possible in the long run. In version 1.4, released two weeks ago, Diego added preliminary compatibility with Full Site Editing. This means visibility options will no longer be confined to the post or page content.</p>\n\n\n\n<p>&ldquo;Once every piece of content on a website is a &lsquo;block,&rsquo; you will be able to easily control the visibility of practically anything on a WordPress website,&rdquo; wrote Diego in the version 1.4 announcement post. &ldquo;From dynamic navigation menus to user specific headers and footers, the possibilities are endless!&rdquo;</p>\n\n\n\n<p>Gutenberg&rsquo;s site editor is a beta feature right now, but the plugin&rsquo;s integration seems to already work well. I ran a quick test to show a custom nav menu to shop customers only. I had no problems on my end.</p>\n\n\n\n<img />Setting visibility options for a menu in Gutenberg&rsquo;s site editor.\n\n\n\n<p>Users will not be limited to such basic needs in the future. Imagine showing ads in a sidebar to logged-out users. Imagine adding a time-sensitive holiday sale banner in the header. Imagine designing a homepage template that displays different content to subscribers vs. visitors.</p>\n\n\n\n<p>There are ways to do all of this today by piecing various plugins together, using custom shortcodes, or writing code. However, when an entire site is made of blocks, you only need one method to control anything&rsquo;s visibility. Literally.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jan 2021 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordPress Proposal To Align Release Cycle With Industry Standard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/wordpress-proposal-to-align-release-cycle-with-industry-standard?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-proposal-to-align-release-cycle-with-industry-standard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7102:\"<p class=\"has-drop-cap\">Yesterday, Francesca Marano opened a <a href=\"https://make.wordpress.org/core/2021/01/12/recap-and-proposal-align-the-wordpress-release-cycle-with-the-industry-standard/\">proposal for changing the phases</a> of the core WordPress release cycle. It was a recap of a <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/\">discussion</a> the began in October 2020. The goal is to align the platform&rsquo;s phases with the larger development industry standard.</p>\n\n\n\n<p>Aside from naming, WordPress has mostly followed the software industry in how it tackles its release cycle. Following a well-known convention can make it easier for developers outside of the WordPress ecosystem to transition into it. It would also allow developers to follow cycles of other projects, many of which are WordPress dependencies. This sort of standardization is generally viewed as a good thing throughout the software development world.</p>\n\n\n\n<p>Based on the ongoing discussions since October, there is a consensus on renaming the phases to align with the standard. The following table shows what each phase would be renamed to:</p>\n\n\n\n<table class=\"has-subtle-pale-blue-background-color has-background\"><thead><tr><th class=\"has-text-align-right text-right\">Phase</th><th>Current Name</th><th>Proposed Name</th></tr></thead><tbody><tr><td class=\"has-text-align-right text-right\"><strong>1</strong></td><td>Planning and securing team leads</td><td>Preliminary Planning</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>2</strong></td><td>Development work begins</td><td>Alpha</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>3</strong></td><td>Beta</td><td>Beta</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>4</strong></td><td>Release candidate</td><td>Release Candidate</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>5</strong></td><td>Launch</td><td>General release</td></tr></tbody></table>\n\n\n\n<p>However, this is a two-part proposal. Simply renaming the phases does not change how the release cycle works. To follow the standard strictly, WordPress would need to change when code is committed too.</p>\n\n\n\n<h2>How To Handle the Beta Phase</h2>\n\n\n\n<p class=\"has-drop-cap\">There is one point of contention with how to handle the Beta stage. The standard calls for no additional code changes other than new bug fixes introduced earlier in the cycle. For the WordPress project, this creates a problem.</p>\n\n\n\n<p>WordPress will be 18 years old this year. Over the years, it has racked up a ton of older bugs. These are often fixed later in the cycle, sometimes during the Beta stage. These older bugs may not have been a part of the Preliminary Planning phase, but does that mean they should wait until the next release to go in? Strictly following the proposal, they should be put on hold.</p>\n\n\n\n<p>It would also introduce a hard freeze on any enhancements set for the release but incomplete.</p>\n\n\n\n<p>&ldquo;I worry that we aren&rsquo;t allowing space for older bugs that aren&rsquo;t specific to the planned features in the release,&rdquo; wrote Josepha Haden in a <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40391\">comment on the initial discussion</a>. &ldquo;I also worry that by calling hard freeze earlier in the process we narrow the window for feature inclusion too much. I don&rsquo;t like limiting ourselves to feature specific bugs right now, since that excludes so many of our volunteer contributors. It&rsquo;s harder to work on features since they are complex and fast-moving, and older bugs present more opportunities for casual contributors.&rdquo;</p>\n\n\n\n<p>On the flip side, there is potential that a bug fix could introduce new, unforeseen bugs. The later it is added during Beta, the less likely such bugs are noticed before the General Release phase. Waiting for the next cycle provides more time for testing.</p>\n\n\n\n<p>One of the benefits of this system is that almost no new bugs would be created during Beta. This would allow volunteers to shift more efforts to testing and fixing issues that emerged in Alpha.</p>\n\n\n\n<p>WordPress has always marched to the beat of its own drum. It can more closely follow standards while breaking free from strict confines when it makes sense to do so for the project. Beta-stage bug fixes not intended for a particular release could be handled on a case-by-case basis. We have people in leadership positions who are capable of making these calls when they arise. With automatic updates for minor releases, I am less concerned about late-stage bugs.</p>\n\n\n\n<p>Tonya Mork <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40380\">proposed two solutions</a> for defect work to continue in and around the release cycle. Both would require that WordPress branch off at Beta, providing contributors an avenue to push forward fixing bugs.</p>\n\n\n\n<p>The first proposal calls for an earlier feature freeze, providing two or three weeks before Beta 1. This period at the end of the Alpha phase would be solely dedicated to defect work.</p>\n\n\n\n<p>The second solution moves this defect work to overlap the previous release&rsquo;s Beta and Release Candidate. This allows work to continue during the time between major releases. It could also shorten the overall major release cycle.</p>\n\n\n\n<p>This second solution is also consistent with Joost de Valk&rsquo;s thoughts on handling defect work. &ldquo;I think we should just branch off earlier, and keep trunk open for normal business,&rdquo; <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40393\">he said on the proposal</a>. &ldquo;That way, <em>everything</em> can be worked on all the time, but it won&rsquo;t be included in the next release depending on when you commit it. That&rsquo;s fine, every piece of open source software I know in the world works like that, except for WordPress.&rdquo;</p>\n\n\n\n<p>Many plugin and theme developers already find it tough to keep up when changes drop in the Beta or Release Candidate phases. Having a clear and defined point where changes land will benefit the extension ecosystem, also helping end-users in the long run. This second solution would do that.</p>\n\n\n\n<p>There is nothing wrong with combining both solutions either.  Since the plan would be to branch off at the Beta phase, the second solution is already in place by the act of branching.  The real discussion is over whether the project should dedicate a block of time during its Alpha stage that focuses purely on bug fixes.</p>\n\n\n\n<p>Comments on the proposal are open through January 20 before moving toward a final decision.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>The next proposal: <a href=\"https://semver.org/\">semantic versioning</a>, anyone? <em>Anyone? Is this thing on?</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jan 2021 21:52:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WPScan Can Now Assign CVE Numbers for WordPress Core, Plugin, and Theme Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/wpscan-can-now-assign-cve-numbers-for-wordpress-core-plugin-and-theme-vulnerabilities?utm_source=rss&utm_medium=rss&utm_campaign=wpscan-can-now-assign-cve-numbers-for-wordpress-core-plugin-and-theme-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3148:\"<p><a href=\"https://wpscan.com/\">WPScan</a>, a security company that maintains a database of WordPress vulnerabilities, has been officially designated as a CVE (Common Vulnerability and Exposures) Numbering Authority (CNA). The company joins <a href=\"https://cve.mitre.org/cve/request_id.html#cna_participants\">151</a>&nbsp;organizations from&nbsp;<a href=\"https://cve.mitre.org/cve/cna.html#cnas_growth\">25</a>&nbsp;countries that participate in the <a href=\"https://cve.mitre.org/\">CVE Program</a> as CNAs. These organizations are authorized to assign&nbsp;<a href=\"https://cve.mitre.org/about/terminology.html#cve_id\">CVE Identifiers (CVE IDs)</a>&nbsp;to vulnerabilities within their own distinct scopes of work, contributing to CVE&rsquo;s <a href=\"https://cve.mitre.org/cve/\">list</a>&nbsp;of records for publicly known security vulnerabilities.</p>\n\n\n\n<p>WPScan&rsquo;s scope includes WordPress core, plugin, and theme vulnerabilities. The company has catalogued more than 21,905 vulnerabilities since 2014 in its database, which it makes available to the community through an API. That API is also used by the <a href=\"https://wordpress.org/plugins/wpscan/\">WPScan Security Scanner</a> plugin, which is installed on 5,000+ websites. </p>\n\n\n\n<p>Being designated as a CNA helps WPScan better manage WordPress vulnerabilities by assigning them unique IDs that are recognized across the industry.</p>\n\n\n\n<p>&ldquo;Asking MITRE to assign CVEs for each of our vulnerabilities would have been too time consuming in the past,&rdquo; WPScan founder and CEO Ryan Dewhurst said. &ldquo;Although some security researchers will go through this process directly with MITRE, we didn&rsquo;t due to the volume of vulnerabilities we have to manage. And security researchers only requested them themselves very rarely. The new process means that we ourselves can assign CVE numbers directly to vulnerabilities. This will result in many more WordPress related vulnerabilities being assigned CVE numbers.&rdquo;</p>\n\n\n\n<p>WPScan is a team of three security researchers who come from penetration testing backgrounds and have worked within security consulting for the past 10 to 15 years. The company started with a simple Ruby script in 2011, which identified vulnerabilities in self-hosted WordPress sites. For the past two years, Automattic has sponsored the company&rsquo;s efforts in maintaining the database, as WPScan has transitioned to become a sustainable business by selling access to its API.</p>\n\n\n\n<p>Dewhurst said the company&rsquo;s customers include &ldquo;some of the biggest security plugins and hosting companies in the world,&rdquo; but many of them don&rsquo;t advertise the fact that use a third-party to source the vulnerabilities. Most of WPScan&rsquo;s enterprise customers are security plugins, companies, and hosts that integrate data from the vulnerability database into their own products and services.</p>\n\n\n\n<p>&ldquo;Our business is doing well,&rdquo; he said. &ldquo;Right now we are trying to find the right balance between being a business and making money, while also benefiting the community as much as possible.&rdquo; </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jan 2021 20:52:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Google Introduces Performance Report for Google News Publishers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/google-introduces-performance-report-for-google-news-publishers?utm_source=rss&utm_medium=rss&utm_campaign=google-introduces-performance-report-for-google-news-publishers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2915:\"<p>Google has <a href=\"https://developers.google.com/search/blog/2021/01/google-news-performance-report\">launched</a> a new Search Console performance report for sites that appear in Google News. Publishers can now track clicks, impressions, and CTR for traffic coming from <a href=\"https://news.google.com/\">news.google.com</a> and the Google News apps for Android and iOS.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The report helps publishers see how often their articles appear to users in Google News and which ones performed the best. It also includes breakdowns for countries, devices, and dates to give publishers a better overall understanding of how visitors are interacting with their content through Google News. Although the date period defaults to the last three months, the data only goes as far back as December 15, 2020.</p>\n\n\n\n<p>In the past, publishers had to submit their sites to be eligible for inclusion in Google News but the policy <a href=\"https://support.google.com/news/publisher-center/answer/9607025\">changed in 2019</a>. Sites are now automatically considered for Top stories or the News tab of Search as long as they &ldquo;produce high-quality content and comply with Google News content policies.&rdquo; </p>\n\n\n\n<p>This new report does not include stats from the News tab on Google Search. That information was added in July 2020, when Google updated the Performance report section of its Search Console to allow publishers to filter by News. This screen also lets users compare different traffic sources, i.e. Web vs News to see the impact of articles showing up under the News tab.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The new report can be grouped by dimensions to get more specific information with different combinations of date ranges, reader locations, devices, and pages. For example, you can get a detailed look at clicks, impressions, and average CTR on a per country basis. This can also be filtered for one certain article to explore more narrow branches of the content&rsquo;s reach.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Publishers who are using AMP will want to note that this new report includes data from the canonical URL. If you have multiple versions for different devices, the report contains data for both:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Data will only be shown in the property that contains the canonical URL. Therefore, if you have both&nbsp;AMP and desktop versions of a page, the desktop property (which is usually the canonical property) will contain all the data for both AMP and desktop clicks, impressions, and CTR.</p></blockquote>\n\n\n\n<p>Google has published a <a href=\"https://support.google.com/webmasters/answer/10083653?hl=en&ref_topic=9384513\">help document</a> with more information on configuring the report, data discrepancies, and how to filter and compare data across groups.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jan 2021 03:54:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Ask the Bartender: How to Build WordPress Themes from Scratch?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/ask-the-bartender-how-to-build-wordpress-themes-from-scratch?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-how-to-build-wordpress-themes-from-scratch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9037:\"<img />\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I would like to ask, what is the best way to learn to create WordPress themes from scratch? I would like to learn, but there seems to be no comprehensive resource for this.</p><p>Thanks for any help.</p><p>Mark</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">I have been around the WordPress community long enough to remember the days when there were sparse resources available. Those who were just starting out with theme development 15 or more years ago usually resorted to hacking away at an existing WordPress theme. Budding theme authors were building upon the shoulders of those few giants who had already taken the first steps. It was the magic of open-source at work &mdash; development learned through the act of forking.</p>\n\n\n\n<p>Maybe it is the way I learned. Perhaps it is part nostalgia for those early days of going down an unknown path and arriving at the other side with a creation of all my own. But, I still believe the best way to learn any type of development cannot be found in documentation or books (<em>says the co-author of a development book</em>).</p>\n\n\n\n<p>It is learned through trial and error.</p>\n\n\n\n<p>It is learned through hours of mangling a project and not stopping until you fix it.</p>\n\n\n\n<p>It is learned through sheer force of will, fueled by some innate passion within you that wants to see a project through. It is frustrating, but you keep going because you are having fun.</p>\n\n\n\n<p>The best developers I have had the privilege to work with were not always the most knowledgeable. They were seemingly natural problem solvers. However, they did not awake one day with this ability. They earned it through years of tackling real problems.</p>\n\n\n\n<p>First and foremost, the best resource for learning to build themes is an existing WordPress theme. Any of the default Twenty* themes are great starting points. Choose one, start making changes via your code editor, refresh your browser, and see what happens. Read the code. Look for patterns across various files.</p>\n\n\n\n<p>You will not learn theme development overnight. It will probably take a few months before you are building basic themes from scratch. It will probably be a year before you are actually good at it. However, everyone is different. The amount of time you put into it is a factor. Your preexisting development knowledge and skills can change that. Sometimes, your innate gifts and ability to learn play into it. But, you will get there with a bit of effort.</p>\n\n\n\n<p>I will be honest. The old-timers here in the community, those of us who started out early in WordPress&rsquo;s history, had some help. Tung Do, known as Small Potato at the time, wrote one of the most comprehensive tutorial series on theme development the community has ever had on his now-defunct web design blog. It was an invaluable resource for several years. It was the answer to the missing documentation that everyone was asking for.</p>\n\n\n\n<p>Theme development was also far simpler during that time. With a handful of files and templates, you could build something special.</p>\n\n\n\n<p>Today, the landscape is much different. If you want to be competitive as a theme shop owner or build custom solutions for clients, you need a broader skillset. Even as a hobbyist, you need to pick up a few more things than you would have a decade and a half ago.</p>\n\n\n\n<p>There is good news: the community is teeming with useful resources.</p>\n\n\n\n<h2>Traditional vs. Block-Based Themes</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The theme development market is nearing an inflection point. WordPress will be introducing more and more tools for <a href=\"https://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">Full Site Editing</a> in 2021, and this trend will continue in the years beyond. Traditional theme development will be around for a while &mdash; likely a few more years. However, block-based themes are the long-term bet. While there is some crossover between the two, they are entirely different systems.</p>\n\n\n\n<p>Realistically, you will need to learn both methods, especially if you have financial motives for going down this journey.</p>\n\n\n\n<p>However, you should learn traditional theme development first. This will make it easier to transition down the road. There are far more resources available too.</p>\n\n\n\n<p>Another issue with learning block-based theme development as a starting point is that you may not know whether you are at fault if something is broken. The features that make up Full Site Editing are in a rough beta stage. The experience is still a partially broken one. Beginner theme authors should not pile onto what can sometimes be a frustrating experience.</p>\n\n\n\n<p>It is time to start reading about Full Site Editing and testing block-based themes like <a href=\"https://wordpress.org/themes/q/\">Q</a> and <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-Based Bosco</a>. Then, wait for others as they become available in the <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">theme directory.</a></p>\n\n\n\n<h2>Resources to Begin Theme Development</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">Many people will point you to starter themes, command-line scripts, and other automated tools for kick-starting your theme development journey. However, there is no substitute for building a solid foundation.</p>\n\n\n\n<p>I will assume you have some basic or intermediate HTML and CSS knowledge under your belt. If not, you should learn to build simple web pages first. Again, there is no substitute for building that foundation. It will carry you through as you get into more advanced topics. Knowing some basic PHP helps too. However, you can hack your way through your first WordPress theme with just WordPress &ldquo;template tags,&rdquo; which are technically PHP functions that sound less scary.</p>\n\n\n\n<p>Your go-to resource should be the official <a href=\"https://developer.wordpress.org/themes/\">theme developer handbook</a>.</p>\n\n\n\n<p>The breadth of knowledge available there was unavailable for those starting in the early days. You can build a WordPress theme from scratch by simply following along each page in the handbook.</p>\n\n\n\n<p>While it was written in 2012, ThemeShaper has a <a href=\"https://themeshaper.com/2012/10/22/the-themeshaper-wordpress-theme-tutorial-2nd-edition/\">17-part tutorial series</a> on developing themes from start to finish. With a few exceptions, most of the information in the tutorials is accurate. The underpinning of traditional theme development has not changed much over the years. This includes basic concepts like templates, The Loop, and similar elements.</p>\n\n\n\n<p>ThemeShaper&rsquo;s <a href=\"https://themeshaper.com/category/theme-development/\">Theme Development</a> category is a resource any theme author should be subscribed to. The team continues to post up-to-date tutorials on building themes. Recently, they have focused on block-based theme development. I am sure more tutorials are forthcoming as new features related to Full Site Editing unfold.</p>\n\n\n\n<p>Of course, search engines are your friends. Run into a problem? I guarantee you are not the first with that specific problem. The solution is documented somewhere across the web.</p>\n\n\n\n<p>If you want to begin block-based theme development, you will need to install the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> plugin for testing. Your resources will be limited. You will need to be a pioneer, mowing a path for others to follow. It will be a rough trek, but it also offers adventures that others have not taken.</p>\n\n\n\n<p>WordPress&rsquo;s block editor handbook has a <a href=\"https://developer.wordpress.org/block-editor/tutorials/block-based-themes/\">guide on creating block-based themes</a>. It makes some assumptions about your knowledge level in terms of theme development. Carolina Nymark, one of the Themes Team representatives, has a site called <a href=\"https://fullsiteediting.com/\">Full Site Editing</a>. It includes an extensive course that is worth taking. There is also the <a href=\"https://github.com/WordPress/theme-experiments\">Theme Experiments</a> repository for testing what some people are currently building.</p>\n\n\n\n<p>My strongest recommendation is to learn through trial and error while using documentation as a backup when you get stuck. Start playing around with <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> or <a href=\"https://wordpress.org/themes/twentytwentyone/\">Twenty Twenty-One</a>, the two most recent default WordPress themes. Make changes. Get yourself in trouble and break things. Learn by getting yourself out of whatever hole you have dug. Every failure is part of your path toward success. Most of all, enjoy it.</p>\n\n\n\n<p>Now, I will throw this question out to our readers, many of whom are theme authors themselves.  Will you share you tips, tricks, and resources for someone who is just starting to build themes?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 21:58:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Iceland Film\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=53458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2021/01/iceland-film/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"<p>I wanted to share with you all a short film I made with the help of Stephen Bollinger, with videos I made a few years ago on a photography trip to Iceland with <a href=\"https://om.co/\">Om</a> and <a href=\"https://twitter.com/markkawano\">Mark</a>. I hope it provides five minutes of serenity in your day.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 21:46:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Gutenberg’s Faster Performance Is Eroding Page Builders’ Dominance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=110192\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/gutenbergs-faster-performance-is-eroding-page-builders-dominance?utm_source=rss&utm_medium=rss&utm_campaign=gutenbergs-faster-performance-is-eroding-page-builders-dominance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6016:\"<p>WordPress&rsquo; block editor, colloquially still widely known as Gutenberg, is making inroads into the segment of users who have heavily relied on page builders for years. For the most part, <a href=\"https://publishpress.com/blog/gutenberg/growth-pagebuilders/\">page builder plugins have either declined in growth or stagnated in 2020</a>, with the exception of Elementor. In contrast, block collections with page builder features are gaining more users. Performance is becoming an important factor in this migration.</p>\n\n\n\n<p>In a post titled &ldquo;<a rel=\"noreferrer noopener\" href=\"https://gutenbergtimes.us1.list-manage.com/track/click?u=e3062ef0fb204dbbc2135b555&id=47325f0912&e=68ffa9a210\" target=\"_blank\">Damn.&nbsp;Gutenberg&nbsp;Smokes Elementor</a>,&rdquo; Kyle Van Deusen published benchmarks from his experience building a simple landing page using Elementor and then Gutenberg. </p>\n\n\n\n<p>&ldquo;Like any Elementor user, I&rsquo;ve become increasingly anxious about the future of Elementor and just how bloated it is,&rdquo; Van Deusen said. &ldquo;I think Google PageSpeed Insights agrees.&rdquo;</p>\n\n\n\n<p>After recreating the same design with Gutenberg and <a href=\"https://generateblocks.com/\">GenerateBlocks</a>, Van Deusen saw a small difference in <a href=\"https://gtmetrix.com/\">GTMetrix</a> scores. </p>\n\n\n\n<div class=\"wp-block-image\"><img />GTMetrix scores: Elementor vs Gutenberg</div>\n\n\n\n<p>He found the most profound difference when testing with Google&rsquo;s <a rel=\"noreferrer noopener\" href=\"https://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\">PageSpeed Insights</a>, where Elementor scored 46% on mobile, and 83% on desktop.</p>\n\n\n\n<p>&ldquo;Because I&rsquo;ve had such poor luck getting any kind of decent scores with Elementor sites (especially on mobile), I&rsquo;ve given up using this tool,&rdquo; Van Deusen said. &ldquo;Not because it&rsquo;s not a valuable metric (in fact, it may be the most valuable since this is how Google sees things), but because there wasn&rsquo;t much I could do about it.&rdquo;</p>\n\n\n\n<p>In contrast, the page built with Gutenberg gave him a 94% score on mobile and a 99% on desktop.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;In terms of performance, straight out of the box; Gutenberg absolutely smokes Elementor,&rdquo; Van Deusen said. &ldquo;However, each time I&rsquo;ve taken Gutenberg for a spin, I&rsquo;ve left frustrated. As soon as I feel like I&rsquo;m getting the hang of it, eventually the wheels come off and I&rsquo;m back to installing Elementor.</p>\n\n\n\n<p>&ldquo;But when your PageSpeed Insights scores go from 46% to 94%, it&rsquo;s time to perk up and pay attention.&rdquo;</p>\n\n\n\n<p>Van Deusen said it took him more time to recreate the design in Gutenberg and he had trouble with mobile views. At the moment, he doesn&rsquo;t see switching as an advantageous move for his business.</p>\n\n\n\n<p>&ldquo;While I think we can conclusively say, at least for performance, Gutenberg is the clear winner &mdash; it&rsquo;s just not at a point where a guy like me can jump ship,&rdquo; Van Deusen said.</p>\n\n\n\n<p>&ldquo;Gutenberg is fun to play with, and I enjoy dreaming of the day when it&rsquo;s viable for me&mdash; but I like to put food on my table. Elementor still helps me do that more efficiently.&rdquo;</p>\n\n\n\n<p>In another experiment, WordPress developer Munir Kamal <a href=\"https://gutenberghub.com/gutenberg-vs-elementor-html-bloat/\">rebuilt Elementor&rsquo;s homepage in Gutenberg</a> to compare the HTML markup both page builders generate. The page built with Elementor includes 356 div&rsquo;s in the markup vs 77 for Gutenberg. Kamal found that Elementor generated 796 lines of code vs Gutenberg&rsquo;s 206 lines, resulting in a difference of 99kb vs 28kb respectively. </p>\n\n\n\n<p>In August 2020, DearHive, the makers of the DearFlip WordPress plugin, left CodeCanyon to sell plugins from their own site. DearHive&rsquo;s company site was built with Elementor, but suddenly Google ranking mattered for their product site now that they were selling independently from CodeCanyon. Deepak Ghimire, a software developer at the company, cited performance as the chief issue that impacted their ranking and drove them to <a href=\"https://medium.com/wpunbox/our-move-from-elementor-to-gutenberg-why-we-left-elementor-b525b4caa3da\">switch to Gutenberg</a>.</p>\n\n\n\n<p>&ldquo;Our page speed went from 83 with Elementor to 98 with Gutenberg,&rdquo; Ghimire said. </p>\n\n\n\n<p>Page builder plugins may still have more features at this point in time, but performance is becoming a critical consideration for those who are doing business online. In May 2021, Google plans to&nbsp;<a href=\"https://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021\">introduce a new ranking signal</a>&nbsp;for Search, based on page experience as measured by&nbsp;<a href=\"https://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a>&nbsp;metrics. Performance is an important part of delivering the kind of scores necessary to pass the Core Web Vitals assessment. This ranking signal update from Google may compel even more site owners to migrate away from slow page builders.</p>\n\n\n\n<p>For the past two years, WordPress users have been asking if Gutenberg will replace page builders. It looks more and more likely if the most popular ones remain bloated alternatives and the smaller ones keep on the same trajectory of attrition. It won&rsquo;t happen overnight, but it is bound to accelerate when full-site editing makes its debut in WordPress core. </p>\n\n\n\n<p>For those who build websites for clients, the best way to future-proof your skills is to learn how to build pages within the framework of the block editor and, if you can, learn how to build custom blocks. It&rsquo;s also a good time to be experimenting with different block collections to streamline your setup so that you don&rsquo;t have to sacrifice high performance in order to build sites efficiently.  </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 04:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 04 Feb 2021 12:34:09 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 04 Feb 2021 12:15:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20201221104147\";}','no'),(566577,'_site_transient_timeout_browser_e3b9c4e144e2251bc2fc62efc513bbf0','1613069257','no'),(566578,'_site_transient_browser_e3b9c4e144e2251bc2fc62efc513bbf0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"87.0.4280.141\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(566589,'better-font-awesome-dismissed-notice-testing','O:8:\"stdClass\":1:{s:1:\"1\";b:1;}','yes'),(566590,'wpins_block_notice','a:1:{s:16:\"disable-comments\";s:16:\"disable-comments\";}','yes'),(566599,'_transient_timeout_wf-plugin-info-wp-reset','1613069733','no'),(566600,'_transient_wf-plugin-info-wp-reset','O:8:\"stdClass\":28:{s:4:\"name\";s:51:\"WP Reset &#8211; Most Advanced WordPress Reset Tool\";s:4:\"slug\";s:8:\"wp-reset\";s:7:\"version\";s:4:\"1.85\";s:6:\"author\";s:59:\"<a href=\"https://www.webfactoryltd.com/\">WebFactory Ltd</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:12:\"contributors\";a:1:{s:10:\"webfactory\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d2ad55d623efa74a60162a70366f2e9e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"WebFactory\";}}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:3:\"5.2\";s:6:\"rating\";i:98;s:7:\"ratings\";a:5:{i:5;i:516;i:4;i:8;i:3;i:2;i:2;i:2;i:1;i:11;}s:11:\"num_ratings\";i:539;s:15:\"support_threads\";i:6;s:24:\"support_threads_resolved\";i:6;s:15:\"active_installs\";i:200000;s:10:\"downloaded\";i:2807151;s:12:\"last_updated\";s:21:\"2021-01-30 4:55pm GMT\";s:5:\"added\";s:10:\"2016-05-17\";s:8:\"homepage\";s:20:\"https://wpreset.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:7349:\"<p><a href=\"https://wpreset.com/\" rel=\"nofollow ugc\">WP Reset</a> quickly resets the site&#8217;s database to the default installation values without modifying any files. It deletes all customizations and content, or just chosen parts like theme settings. WP Reset is fast and safe to use thanks to the built-in snapshots which provide 1-click restore functionality. It has multiple fail-safe mechanisms so you can never accidentally lose data. WP Reset is extremely helpful for plugin and theme developers. It <strong>speeds up testing &amp; debugging</strong> by providing a quick way to reset settings and re-test code. It&#8217;s the only WP development tool for non-developers.</p>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\'youtube-player\' width=\'640\' height=\'360\' src=\'https://www.youtube.com/embed/qMnkCW2PFoI?version=3&#038;rel=0&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe></span></p>\n<p>For support please use the <a href=\"https://wordpress.org/support/plugin/wp-reset\">official forum</a>, and if you need more information visit <a href=\"https://wpreset.com/\" rel=\"nofollow ugc\">wpreset.com</a> and be sure to check out the <a href=\"https://wpreset.com/\" rel=\"nofollow ugc\">roadmap</a> for the list of upcoming features.</p>\n<p>Access WP Reset admin page via the &#8220;Tools&#8221; menu.</p>\n<p>Web accessibility is not an option in 2021! Making your site accessible to visitors with disabilities will save you from hefty fines and instantly grow your audience. That&#8217;s why we&#8217;ve partnered with <a href=\"https://wordpress.org/plugins/accessibe/\">accessiBe</a> &#8211; the fully automated AI service for web accessibility. Download their plugin, connect to the service, and make your site accessible in a few clicks.</p>\n<p><strong>Please read carefully before proceeding to understand what WP Reset does, and remember to always create a snapshot</strong></p>\n<h4>Resetting will delete:</h4>\n<ul>\n<li>all posts, pages, custom post types, comments, media entries, users</li>\n<li>all default WP database tables</li>\n<li>all custom database tables that have the same prefix table prefix as the one defined in <em>wp-config.php</em> and used by default tables</li>\n</ul>\n<h4>Resetting will not delete or modify:</h4>\n<ul>\n<li>media files &#8211; they remain in the <em>wp-uploads</em> folder untouched but will no longer be listed under Media in admin</li>\n<li>no files are touched; plugins, themes, uploads &#8211; everything stays</li>\n<li>site title, WordPress address, site address, site language and search engine visibility settings</li>\n<li>currently logged in user will be restored with the current username and password</li>\n</ul>\n<h4>What happens when I click the Reset button?</h4>\n<ul>\n<li>remember to always create a snapshot first or a full backup</li>\n<li>you will have to confirm the action one more time because there is NO UNDO</li>\n<li>everything will be reset; see bullets above for details</li>\n<li>site title, WordPress address, site address, site language, search engine visibility settings as well as the current user will be restored</li>\n<li>you will be logged out, automatically logged in and taken to the admin dashboard</li>\n<li>WP Reset plugin will be reactivated if that option is chosen in the post-reset options</li>\n</ul>\n<h4>Undoing a reset</h4>\n<p>Before doing a reset, create a snapshot. The button is located right next to the reset button and it takes less than 10 seconds to create a snapshot. After reset is done, if you need to undo it simply restore the snapshot and that&#8217;s it.</p>\n<h4>WP-CLI support</h4>\n<p>WP Reset comes with full WP-CLI support. Help on our WP-CLI commands is available via <em>wp help reset</em>. By default the commands have to be confirmed but you can use the <code>--yes</code> option to skip confirmation. Instead of the active user, the first user with admin privileges found in the database will be restored after reset. Please be careful when using WP Reset with WP-CLI &#8211; as with using the GUI always make a snapshot or backup first.</p>\n<p>Currently supported WP-CLI commands:</p>\n<ul>\n<li><code>wp reset reset</code></li>\n<li><code>wp reset version</code></li>\n<li><code>wp reset delete</code></li>\n<li><code>wp reset snapshots</code></li>\n</ul>\n<h4>Database Snapshots</h4>\n<p>Database snapshot is a copy of all WP database tables, standard and custom ones, saved in the currently used database (as set by <em>wp-config.php</em>). Files are not saved or included in snapshots in any way.<br />\nSnapshots are primarily a development tool. Although they can be used for backups (and downloaded as gzipped SQL dumps), we suggest finding a more suitable tool for doing backups of live sites. Use snapshots to find out what changes a plugin made to your database &#8211; what custom tables were created, modified, deleted or what changes were made to site&#8217;s settings. Or use it to quickly restore the development environment after testing database related changes.<br />\nRestoring a snapshot does not affect other snapshots, or WP Reset settings. Snapshots can be compared to current database tables, restored (by overwriting current tables), exported ad gzipped SQL dumps, or deleted. Creating a snapshot on an average WordPress installation takes 1-2 seconds.</p>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe class=\'youtube-player\' width=\'640\' height=\'360\' src=\'https://www.youtube.com/embed/xBfMmS12vMY?version=3&#038;rel=0&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe></span></p>\n<h4>Multisite (WP-MU) Support</h4>\n<p>WP Reset has yet to be completely tested with multisite! Please be careful when using it with multisite enabled. We don&#8217;t recommend to resetting the main site. Sub-sites should be OK. We&#8217;re working on making WP Reset fully compatible with WP-MU. Till then please be careful. Thank you for understanding.</p>\n<h4>Partial Reset Tools</h4>\n<ul>\n<li>Delete transients &#8211; deletes all transient related database entries. Including expired and non-expired transients, and orphaned timeout entries.</li>\n<li>Delete uploads &#8211; delete all files and folder in the /uploads/ folder.</li>\n<li>Delete plugins &#8211; deletes all plugins except WP Reset which remains active.</li>\n<li>Reset theme options &#8211; resets all options for all themes that use the WP theme mods API.</li>\n<li>Delete themes &#8211; deletes all themes.</li>\n<li>Empty or delete custom tables &#8211; empties (truncates) or deletes (drops) all custom database tables.</li>\n<li>Delete .htaccess file &#8211; deletes the .htaccess file. If you need to edit .htaccess without FTP use our free <a href=\"https://wordpress.org/plugins/wp-htaccess-editor/\">WP Htaccess Editor</a> plugin.</li>\n</ul>\n<h4>Friends who helped us translate WP Reset</h4>\n<ul>\n<li>French &#8211; <a href=\"https://www.infrenchtranslation.com/\" rel=\"nofollow ugc\">Jeff Inho</a></li>\n</ul>\n\";s:12:\"installation\";s:881:\"<p>Follow the usual routine;</p>\n<ol>\n<li>Open WordPress admin, go to Plugins, click Add New</li>\n<li>Enter &#8220;wp reset&#8221; in search and hit Enter</li>\n<li>Plugin will show up as the first on the list (look for our black&amp;red round logo), click &#8220;Install Now&#8221;</li>\n<li>Activate &amp; open plugin&#8217;s settings page located under the Tools menu</li>\n</ol>\n<p>Or if needed, upload manually;</p>\n<ol>\n<li>Download the latest stable version from from <a href=\"https://downloads.wordpress.org/plugin/wp-reset.latest-stable.zip\" rel=\"nofollow ugc\">downloads.wordpress.org/plugin/wp-reset.latest-stable.zip</a></li>\n<li>Unzip it and upload to <em>/wp-content/plugins/</em></li>\n<li>Open WordPress admin &#8211; Plugins and click &#8220;Activate&#8221; next to &#8220;WP Reset&#8221;</li>\n<li>Open plugin&#8217;s admin page located under the Tools menu</li>\n</ol>\n\";s:3:\"faq\";s:1560:\"\n<dt id=\'does%20wp%20reset%20make%20backups%3F\'>\nDoes WP Reset make backups?\n</h4>\n<p>\n<p>Automatically no, it does not. But we have &#8220;download backup&#8221; links besides every tool in the plugin so make sure you download a backup before running them. Backups only contain the database, no files!</p>\n</p>\n<dt id=\'how%20can%20i%20log%20in%20after%20resetting%3F\'>\nHow can I log in after resetting?\n</h4>\n<p>\n<p>Use the same username and password you used while doing the reset. Only one user will be restored after resetting. The one you used at that time.</p>\n</p>\n<dt id=\'will%20any%20files%20be%20deleted%20or%20modified%20when%20i%20reset%20the%20site%3F\'>\nWill any files be deleted or modified when I reset the site?\n</h4>\n<p>\n<p>No. All files are left untouched if you do a full reset. However, there are tool like &#8220;delete themes&#8221; that do delete files.</p>\n</p>\n<dt id=\'will%20i%20have%20to%20reconfigure%20wp-config.php%3F\'>\nWill I have to reconfigure wp-config.php?\n</h4>\n<p>\n<p>Absolutely not. No reconfiguration is needed. No files are modified.</p>\n</p>\n<dt id=\'do%20you%20support%20wp-cli%3F\'>\nDo you support WP-CLI?\n</h4>\n<p>\n<p>We sure do! Just type &#8220;wp reset&#8221; in your shell to see the list of available commands and options.</p>\n</p>\n<dt id=\'how%20long%20does%20it%20take%20for%20the%20reset%20operation%20to%20complete%3F\'>\nHow long does it take for the reset operation to complete?\n</h4>\n<p>\n<p>On most installations a second or two. If you have a huge amounts of data in tables then up to ten seconds.</p>\n</p>\n\n\";s:9:\"changelog\";s:4249:\"<h4>v1.85</h4>\n<ul>\n<li>2021/01/30</li>\n<li>code clean-up</li>\n</ul>\n<h4>v1.84</h4>\n<ul>\n<li>2021/01/21</li>\n<li>added quick links button</li>\n<li>fixed some tooltips</li>\n<li>removed support for WP Webhooks</li>\n</ul>\n<h4>v1.82</h4>\n<ul>\n<li>2020/10/27</li>\n<li>removed auto activation for PRO version</li>\n</ul>\n<h4>v1.81</h4>\n<ul>\n<li>2020/10/07</li>\n<li>started adding better tooltips to all objects</li>\n<li>added promo campaign for WP 301 Redirects</li>\n</ul>\n<h4>v1.80</h4>\n<ul>\n<li>2020/04/17</li>\n<li>new tool: Purge Cache</li>\n<li>new tool: Delete Local Data</li>\n<li>fixed &#8220;Delete all plugins&#8221; tool</li>\n<li>other minor bug fixes</li>\n<li>started selling WP Reset PRO</li>\n<li>200,000 installs hit on 2020-03-07 with 1,560,000 downloads</li>\n</ul>\n<h4>v1.77</h4>\n<ul>\n<li>2019/12/25</li>\n<li>minor bug fixes</li>\n</ul>\n<h4>v1.75</h4>\n<ul>\n<li>2019/11/12</li>\n<li>bug fixes</li>\n<li>more GUI improvements</li>\n<li>updates for WP v5.3</li>\n<li>removed the 1-click backup tool in favor of snapshots &#8211; less confusing &amp; same end result</li>\n<li>two huge bug fixes thanks to @markwill</li>\n<li>1,241,470 downloads</li>\n</ul>\n<h4>v1.70</h4>\n<ul>\n<li>2019/09/27</li>\n<li>bug fixes</li>\n<li>completely new GUI</li>\n<li>added .htaccess file to protect snapshots and backups folder</li>\n<li>added 1-click backup feature</li>\n</ul>\n<h4>v1.65</h4>\n<ul>\n<li>2019/07/15</li>\n<li>bug fixes</li>\n</ul>\n<h4>v1.60</h4>\n<ul>\n<li>2019/04/15</li>\n<li>bug fixes</li>\n<li>new tool: Reset theme options</li>\n<li>added Product Hunt banner</li>\n<li>added actions (hooks) to all tools and snapshot actions; all action names start with &#8220;wp-reset-&#8220;</li>\n<li>removed features survey</li>\n<li>announced plugin &amp; theme collections</li>\n</ul>\n<h4>v1.55</h4>\n<ul>\n<li>2019/03/25</li>\n<li>100k users hit on 2019/01/15 with 560,300 downloads; 34 days for +10k &amp; 71k downloads</li>\n<li>bug fixes</li>\n<li>support for WP Webhooks</li>\n<li>added features survey</li>\n</ul>\n<h4>v1.50</h4>\n<ul>\n<li>2019/01/08</li>\n<li>new tool: delete .htaccess file</li>\n<li>new WP-CLI command: wp reset delete htaccess</li>\n<li>90k users hit on 2018/12/12 with 489,100 downloads; 27 days for +10k &amp; 58k downloads</li>\n</ul>\n<h4>v1.45</h4>\n<ul>\n<li>2018/11/27</li>\n<li>new tool: truncate or drop custom DB tables</li>\n<li>truncate / drop tables tool added to WP-CLI</li>\n<li>all snapshot tools added to WP-CLI</li>\n<li>80k users hit on 2018/11/15 with 430,800 downloads; 30 days for +10k &amp; 57k downloads</li>\n</ul>\n<h4>v1.40</h4>\n<ul>\n<li>2018/10/24</li>\n<li>new tool: DB Snapshots</li>\n<li>rewrote code documentation for most functions</li>\n<li>some parts of Snapshots need refactoring</li>\n<li>70k users hit on 2018/10/16 with 373,300 downloads; 30 days for +10k &amp; 50k downloads</li>\n</ul>\n<h4>v1.35</h4>\n<ul>\n<li>2018/09/18</li>\n<li>sponsorship by IP Geolocation</li>\n<li>60k users hit on 2018/09/16 with 323,300 downloads; 35 days for +10k</li>\n<li>added all tools to WP-CLI</li>\n<li>new tool: delete all files in uploads folder</li>\n</ul>\n<h4>v1.30</h4>\n<ul>\n<li>2018/08/27</li>\n<li>more code clean-up</li>\n<li>added new reset params to WP-CLI</li>\n<li>big GUI changes</li>\n<li>started adding various tools; delete transients, delete all plugins, delete all themes</li>\n<li>we hit 50,000 installations on 2018/08/11 with 274,000 downloads</li>\n</ul>\n<h4>v1.25</h4>\n<ul>\n<li>2018/07/30</li>\n<li>code clean-up</li>\n<li>post-reset options &#8211; reactivate plugin, themes &amp; WP Reset</li>\n<li>added WP-MU warning till we make WP Reset fully compatible with it</li>\n<li>Tidy Repo notice</li>\n<li>added option to collapse boxes</li>\n<li>modified rating notice</li>\n</ul>\n<h4>v1.20</h4>\n<ul>\n<li>2018/07/09</li>\n<li>we hit 40k installations on 2018/06/26</li>\n<li>WP-CLI support via &#8220;wp reset&#8221; command</li>\n<li>new logo</li>\n<li>ask for rating notice</li>\n<li>GUI improvements</li>\n<li>code clean up</li>\n<li>preparations for further development and new features</li>\n</ul>\n<h4>v1.10</h4>\n<ul>\n<li>2018/05/09</li>\n<li>WebFactory took over development</li>\n<li>numerous bug fixes and improvements</li>\n<li>30,000 installations; 199,000 downloads</li>\n</ul>\n<h4>v1.0</h4>\n<ul>\n<li>2016/05/16</li>\n<li>Initial release</li>\n</ul>\n\";s:11:\"screenshots\";s:1367:\"<ol><li><a href=\"https://ps.w.org/wp-reset/assets/screenshot-1.png?rev=2164137\"><img src=\"https://ps.w.org/wp-reset/assets/screenshot-1.png?rev=2164137\" alt=\"WP Reset - main reset page\"></a><p>WP Reset - main reset page</p></li><li><a href=\"https://ps.w.org/wp-reset/assets/screenshot-2.png?rev=2164137\"><img src=\"https://ps.w.org/wp-reset/assets/screenshot-2.png?rev=2164137\" alt=\"All reset actions have to be confirmed\"></a><p>All reset actions have to be confirmed</p></li><li><a href=\"https://ps.w.org/wp-reset/assets/screenshot-3.png?rev=2164137\"><img src=\"https://ps.w.org/wp-reset/assets/screenshot-3.png?rev=2164137\" alt=\"Additional tools for resetting and deleting various WordPress objects\"></a><p>Additional tools for resetting and deleting various WordPress objects</p></li><li><a href=\"https://ps.w.org/wp-reset/assets/screenshot-4.png?rev=2164137\"><img src=\"https://ps.w.org/wp-reset/assets/screenshot-4.png?rev=2164137\" alt=\"Database Snapshots enable 1-click restoring and testing\"></a><p>Database Snapshots enable 1-click restoring and testing</p></li><li><a href=\"https://ps.w.org/wp-reset/assets/screenshot-5.png?rev=2164137\"><img src=\"https://ps.w.org/wp-reset/assets/screenshot-5.png?rev=2164137\" alt=\"Use our 1-click backup feature before running any reset tools\"></a><p>Use our 1-click backup feature before running any reset tools</p></li></ol>\";s:7:\"reviews\";s:12855:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Super Easy to Use - Awesome</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/bchiorello\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ede76de0a6e9fdb74251ade438a94028?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ede76de0a6e9fdb74251ade438a94028?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/bchiorello\" class=\"reviewer-name\">bchiorello</a> on <span class=\"review-date\">February 3, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great Plugin - works perfectly - no issues</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">excellent</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/laurencemad87\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f547218f51a4d700d0f603fbbe07cd6d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f547218f51a4d700d0f603fbbe07cd6d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/laurencemad87\" class=\"reviewer-name\">laurencemad87</a> on <span class=\"review-date\">February 3, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">propre</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">BAŞARILI. SÜPER KOLAYLIK</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/zaferyavuz\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c309dd061929c0515619acf4d065fb4a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c309dd061929c0515619acf4d065fb4a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/zaferyavuz\" class=\"reviewer-name\">zaferyavuz</a> on <span class=\"review-date\">February 2, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Kolay ve çok hızlı </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Quick and Easy</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jmdanelia\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ef43d80833c3d1123f0bcfde45cf1366?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ef43d80833c3d1123f0bcfde45cf1366?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jmdanelia\" class=\"reviewer-name\">jmdanelia</a> on <span class=\"review-date\">February 2, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">This did exactly what I needed it to!  saved my installed plugins and themes, but started the site over from scratch.  Perfect!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">bueno</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/augusto254\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/44e808dc3a9ed402a75a0ed438f5fe4e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/44e808dc3a9ed402a75a0ed438f5fe4e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/augusto254\" class=\"reviewer-name\">augusto254</a> on <span class=\"review-date\">January 30, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Muy util para restablecer el WP</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">brilliant</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/future312\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7f0c6bfba731f9c1ceb90586b253e510?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7f0c6bfba731f9c1ceb90586b253e510?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/future312\" class=\"reviewer-name\">future312</a> on <span class=\"review-date\">January 30, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">best plugin ever xD</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">me gusto</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/jose2132\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/835ccf624c42c4f046d555cfa66e896a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/835ccf624c42c4f046d555cfa66e896a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jose2132\" class=\"reviewer-name\">jose2132</a> on <span class=\"review-date\">January 29, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">muy bueno</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">No funciona</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/rsarmiento69\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2656876b2adb4607cc662ccb1ad762fd?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2656876b2adb4607cc662ccb1ad762fd?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/rsarmiento69\" class=\"reviewer-name\">rsarmiento69</a> on <span class=\"review-date\">January 28, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Hice una instantánea, pero cuando quise revertir el reseteo: \"Error\" no se puede, metadatos no se cuanto, etc, etc</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great and fast</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/nvlctur\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d9792480f2ed9000094b5d008739a532?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d9792480f2ed9000094b5d008739a532?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/nvlctur\" class=\"reviewer-name\">nvlctur</a> on <span class=\"review-date\">January 28, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Simple and fast plugin to reset your site to start from scratch again.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Excellent</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/supakarn\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1befbe421f6fc083a9a7e19abbeabbc4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1befbe421f6fc083a9a7e19abbeabbc4?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/supakarn\" class=\"reviewer-name\">supakarn</a> on <span class=\"review-date\">January 23, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Excellent</div>\n</div>\n\";}s:17:\"short_description\";s:146:\"WP Reset resets the entire site or selected parts using advanced reset options to default values. 100% safe to use with built-in restore function.\";s:13:\"download_link\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.85.zip\";s:11:\"screenshots\";a:5:{i:1;a:2:{s:3:\"src\";s:61:\"https://ps.w.org/wp-reset/assets/screenshot-1.png?rev=2164137\";s:7:\"caption\";s:26:\"WP Reset - main reset page\";}i:2;a:2:{s:3:\"src\";s:61:\"https://ps.w.org/wp-reset/assets/screenshot-2.png?rev=2164137\";s:7:\"caption\";s:38:\"All reset actions have to be confirmed\";}i:3;a:2:{s:3:\"src\";s:61:\"https://ps.w.org/wp-reset/assets/screenshot-3.png?rev=2164137\";s:7:\"caption\";s:69:\"Additional tools for resetting and deleting various WordPress objects\";}i:4;a:2:{s:3:\"src\";s:61:\"https://ps.w.org/wp-reset/assets/screenshot-4.png?rev=2164137\";s:7:\"caption\";s:55:\"Database Snapshots enable 1-click restoring and testing\";}i:5;a:2:{s:3:\"src\";s:61:\"https://ps.w.org/wp-reset/assets/screenshot-5.png?rev=2164137\";s:7:\"caption\";s:61:\"Use our 1-click backup feature before running any reset tools\";}}s:4:\"tags\";a:5:{s:24:\"advanced-wordpress-reset\";s:24:\"advanced wordpress reset\";s:5:\"reset\";s:5:\"reset\";s:14:\"reset-database\";s:14:\"reset database\";s:24:\"reset-wordpress-database\";s:24:\"reset wordpress database\";s:15:\"wordpress-reset\";s:15:\"wordpress-reset\";}s:8:\"versions\";a:23:{s:3:\"1.0\";s:55:\"https://downloads.wordpress.org/plugin/wp-reset.1.0.zip\";s:3:\"1.1\";s:55:\"https://downloads.wordpress.org/plugin/wp-reset.1.1.zip\";s:4:\"1.11\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.11.zip\";s:4:\"1.20\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.20.zip\";s:4:\"1.25\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.25.zip\";s:4:\"1.30\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.30.zip\";s:4:\"1.35\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.35.zip\";s:4:\"1.40\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.40.zip\";s:4:\"1.45\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.45.zip\";s:4:\"1.50\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.50.zip\";s:4:\"1.55\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.55.zip\";s:4:\"1.60\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.60.zip\";s:4:\"1.65\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.65.zip\";s:4:\"1.70\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.70.zip\";s:4:\"1.75\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.75.zip\";s:4:\"1.77\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.77.zip\";s:4:\"1.80\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.80.zip\";s:4:\"1.81\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.81.zip\";s:4:\"1.82\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.82.zip\";s:4:\"1.83\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.83.zip\";s:4:\"1.84\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.84.zip\";s:4:\"1.85\";s:56:\"https://downloads.wordpress.org/plugin/wp-reset.1.85.zip\";s:5:\"trunk\";s:51:\"https://downloads.wordpress.org/plugin/wp-reset.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:63:\"https://ps.w.org/wp-reset/assets/banner-772x250.png?rev=2163880\";s:4:\"high\";s:64:\"https://ps.w.org/wp-reset/assets/banner-1544x500.png?rev=2163880\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/wp-reset/assets/icon-128x128.png?rev=1906468\";s:2:\"2x\";s:61:\"https://ps.w.org/wp-reset/assets/icon-256x256.png?rev=1906468\";}}','no'),(553763,'disallowed_keys','','no'),(553764,'comment_previously_approved','1','yes'),(553765,'auto_plugin_theme_update_emails','a:0:{}','no');
INSERT INTO `wp_options` VALUES (566344,'rs-templates','a:3:{s:4:\"hash\";s:32:\"80679e0380d0c169370a48bdebe0203b\";s:6:\"slider\";a:499:{i:0;a:22:{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:284:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{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:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{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:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{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.1\";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:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{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.1\";s:8:\"required\";s:6:\"6.2.22\";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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{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:289:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{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:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{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:289:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{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.2\";s:8:\"required\";s:5:\"6.0.0\";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:435:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{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.2\";s:8:\"required\";s:5:\"6.0.0\";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:320:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{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:284:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<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:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<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:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{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:464:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{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:289:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{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:583:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{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.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: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:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:22:{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:633:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:22:{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:485:\"<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://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{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:371:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{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:371:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{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.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: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:495:\"<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://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{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:371:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{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:297:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{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:290:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{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:446:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{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:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{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:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{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:464:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{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:371:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{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:657:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{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:659:\"<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/slider-revolution/global-layers/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <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:535:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{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:509:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{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:638:\"<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://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{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:485:\"<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://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{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:464:\"<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/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{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:371:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{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:282:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{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:407:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{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:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{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:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" 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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{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:493:\"<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://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{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:422:\"<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://revolution.themepunch.com/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;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{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:277:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{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:277:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{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.1\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{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:415:\"<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/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{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:277:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<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:277:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{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:277:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{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:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" 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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{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:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" 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://revolution.themepunch.com/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:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{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:300:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{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.2\";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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:542:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{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:317:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{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:315:\"<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://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{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:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{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.1\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{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:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{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:442:\"<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://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{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:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{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:437:\"<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://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:22:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";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:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:25:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:22:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:22:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:25:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:25:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-package\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:286;a:25:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:287;a:25:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:25:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:25:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:312;a:25:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:25:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:25:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:317;a:25:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:25:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:25:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:25:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:25:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:25:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:25:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:25:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:22:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<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://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:22:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:367;a:25:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:25:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:25:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:25:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:25:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:25:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:25:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:25:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:25:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:25:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:25:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:25:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:25:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:25:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:25:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:25:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:25:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:22:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:25:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:25:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:25:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:25:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-video-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:484;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/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:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:508;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:514;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:516;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:494:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}}}','no'),(548142,'smtp_test_mail','a:3:{s:10:\"swpsmtp_to\";s:25:\"kontakt@customsolution.pl\";s:15:\"swpsmtp_subject\";s:4:\"test\";s:15:\"swpsmtp_message\";s:12:\"test message\";}','yes'),(566343,'rs-templates-new','','no'),(566601,'_transient_timeout_wf-plugin-info-eps-301-redirects','1613069733','no'),(566602,'_transient_wf-plugin-info-eps-301-redirects','O:8:\"stdClass\":28:{s:4:\"name\";s:43:\"301 Redirects &#8211; Easy Redirect Manager\";s:4:\"slug\";s:17:\"eps-301-redirects\";s:7:\"version\";s:4:\"2.55\";s:6:\"author\";s:59:\"<a href=\"https://www.webfactoryltd.com/\">WebFactory Ltd</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:12:\"contributors\";a:1:{s:10:\"webfactory\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d2ad55d623efa74a60162a70366f2e9e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"WebFactory\";}}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:3:\"5.2\";s:6:\"rating\";i:96;s:7:\"ratings\";a:5:{i:5;i:310;i:4;i:16;i:3;i:6;i:2;i:0;i:1;i:12;}s:11:\"num_ratings\";i:344;s:15:\"support_threads\";i:27;s:24:\"support_threads_resolved\";i:27;s:15:\"active_installs\";i:100000;s:10:\"downloaded\";i:649658;s:12:\"last_updated\";s:21:\"2021-01-30 5:45pm GMT\";s:5:\"added\";s:10:\"2013-05-02\";s:8:\"homepage\";s:0:\"\";s:8:\"sections\";a:6:{s:11:\"description\";s:2417:\"<p><strong>301 Redirects</strong> helps you manage and create 301, 302, 307 redirects for your WordPress site to <strong>improve SEO and visitor experience</strong>. With a user-friendly interface, 301 Redirects is easy to install and configure. Perfect for new sites or repairing links after re-organizing your existing WordPress content, or when your site has content that expires and you wish to avoid sending visitors to a 404 page.</p>\n<p>301 Redirects GUI is located in WP Admin Dashboard &#8211; Settings &#8211; 301 Redirects</p>\n<p><strong>Features</strong></p>\n<ul>\n<li>Choose from Pages, Posts, Custom Post types, Archives, and Term Archives from dropdown menu</li>\n<li>Or, set a custom destination URL!</li>\n<li>Retain query strings across redirects</li>\n<li>Super-fast redirection</li>\n<li>Import/Export feature for bulk redirects management</li>\n<li>Simple redirect stats so you know how much a redirection is used</li>\n<li>Fully compatible with translation plugins (Weglot, TranslatePress, Gtranslate, Loco Translate) that use lang prefix in URL</li>\n</ul>\n<p><strong>Need more features?</strong><br />\n<a href=\"https://wp301redirects.com/\" rel=\"nofollow ugc\">WP 301 Redirects PRO</a> offers wildcard &amp; regular expression URL matching, auto-typo fixing in URLs, complete redirect and 404 log, and a centralized SaaS dashboard to monitor redirects on all your sites from one place.</p>\n<p><strong>What is a 301 Redirect?</strong><br />\nA redirect is a simple way to re-route traffic coming to a <em>Requested URL</em> to different <em>Destination URL</em>.</p>\n<p>A 301 redirect indicates that the page requested has been permanently moved to the <em>Destination URL</em>, and helps pass on the <em>Requested URLs</em> traffic in a search engine friendly manner. Creating a 301 redirect tells search engines that the <em>Requested URL</em>  has moved permanently, and that the content can now be found on the <em>Destination URL</em>. An important feature is that search engines will pass along any clout the <em>Requested URL</em> used to have to the <em>Destination URL</em>.</p>\n<p><strong>When Should I use 301 Redirects?</strong></p>\n<ul>\n<li>Replacing an old site design with a new site design</li>\n<li>Overhauling or re-organizing your existing WordPress content</li>\n<li>You have content that expires (or is otherwise no longer available) and you wish to redirect users elsewhere</li>\n</ul>\n\";s:12:\"installation\";s:279:\"<ol>\n<li>Upload the <code>eps-301-redirects</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>\n<li>Begin adding redirects in the Settings -&gt; 301 Redirects menu item</li>\n</ol>\n\";s:3:\"faq\";s:2971:\"\n<dt id=\'what%20is%20a%20301%20redirect%3F\'>\nWhat is a 301 Redirect?\n</h4>\n<p>\n<p>A redirect is a simple way to re-route traffic coming to a Requested URL to different Destination URL.</p>\n<p>A 301 redirect indicates that the page requested has been permanently moved to the Destination URL, and helps pass on the Requested URLs traffic in a search engine friendly manner. Creating a 301 redirect tells search engines that the Requested URL has moved permanently, and that the content can now be found on the Destination URL. An important feature is that search engines will pass along any clout the Requested URL used to have to the Destination URL.</p>\n</p>\n<dt id=\'i%27m%20getting%20an%20error%20about%20the%20default%20permalink%20structure%3F\'>\nI&#8217;m getting an error about the default permalink structure?\n</h4>\n<p>\n<p>301 Redirects requires that you use anything but the default permalink structure.</p>\n</p>\n<dt id=\'my%20redirects%20aren%27t%20working\'>\nMy redirects aren&#8217;t working\n</h4>\n<p>\n<p>This could be caused by many things, but please ensure that you are supplying valid URLs. Most common are extra spaces, extra slashes, spelling mistakes and invalid characters. If you&#8217;re sure they&#8217;re right, chances are your browser has cached the 301 redirect (in an attempt to make the redirection faster for you), but sometimes it doesn&#8217;t refresh as fast as we would like. Clear your browser cache, or wait a few minutes to fix this problem.<br />\nMy redirects aren&#8217;t working &#8211; the old .html page still shows<br />\nFor this plugin to work, the page must be within the WordPress environment. If you are redirecting older .html or .php files, you must first delete them. The plugin can’t redirect if the file still exists, sorry! You should look into .htaccess redirects if you want to keep these files on your server.</p>\n</p>\n<dt id=\'my%20redirects%20aren%27t%20getting%20the%20301%20status%20code\'>\nMy redirects aren&#8217;t getting the 301 status code\n</h4>\n<p>\n<p>Your Request or Redirect URLS may be incorrect; please ensure that you are supplying valid URLs. Check slashes. Try Viewing the page by clicking the Request URL &#8211; does it load correctly?</p>\n</p>\n<dt id=\'how%20do%20i%20delete%20a%20redirect%3F\'>\nHow do I delete a redirect?\n</h4>\n<p>\n<p>Click the small X beside the redirect you wish to remove.</p>\n</p>\n<dt id=\'how%20do%20i%20add%20wildcards.%20or%20folder%20redirects%3F\'>\nHow do I add wildcards. or folder redirects?\n</h4>\n<p>\n<p>Unfortunately this is not supported. You should look into .htaccess redirects for these advanced features.</p>\n</p>\n<dt id=\'what%20about%20query%20strings%3F\'>\nWhat about query strings?\n</h4>\n<p>\n<p>By default, any URL with a query string is considered unique, and will redirect to a unique page (if you so wish). The query string will be added to the Destination URL, which allows you to keep your tracking codes, affiliate codes, and other important data!</p>\n</p>\n\n\";s:9:\"changelog\";s:3389:\"<h4>2.55</h4>\n<ul>\n<li>2021/01/30</li>\n<li>Removed promo campaign for PRO version</li>\n<li>Added flyout menu</li>\n</ul>\n<h4>2.53</h4>\n<ul>\n<li>2020/09/29</li>\n<li>More issues fixed related to translation plugins</li>\n<li>Fixed issue with encoding source &amp; target URLs in some situations.</li>\n<li>Added promo campaign for PRO version in November</li>\n</ul>\n<h4>2.52</h4>\n<ul>\n<li>2020/09/07</li>\n<li>Fixed issue with URL prefix on translate plugins like Weglot, TranslatePress, Gtranslate, Loco Translate</li>\n</ul>\n<h4>2.51</h4>\n<ul>\n<li>2020/08/13</li>\n<li>security fixes &#8211; thank you <a href=\"http://eringerm.com/\" rel=\"nofollow ugc\">Erin</a></li>\n</ul>\n<h4>2.50</h4>\n<ul>\n<li>2020/08/10</li>\n<li>added support for 307 Temporary Redirect</li>\n<li>100k installs hit on 2020/07/22 with about 365,000 downloads</li>\n</ul>\n<h4>2.45</h4>\n<ul>\n<li>2019/12/17</li>\n<li>security fixes &#8211; big thank you to Chloe from Wordfence</li>\n<li>WP-CLI fix</li>\n</ul>\n<h4>2.40</h4>\n<ul>\n<li>2019/03/25</li>\n<li>bug fixes</li>\n<li>rating notification</li>\n</ul>\n<h4>2.3.5</h4>\n<ul>\n<li>2019/03/11</li>\n<li>WebFactory took over development</li>\n<li>50,000 installations; 151,500 downloads</li>\n<li>bug fixes</li>\n<li>compatibility fixes for new versions of PHP and WP</li>\n</ul>\n<h4>2.3.0</h4>\n<p>Added sorting. Fixed a bug when upgrading from V1 to V2, and the infamous &#8220;Invalid Destination&#8221; url.</p>\n<h4>2.2.7</h4>\n<p>That silly bug with the database tables not being created has been squashed. Improved query performance.</p>\n<h4>2.2.6</h4>\n<p>Added support for custom plugin directories.</p>\n<h4>2.2.4</h4>\n<p>Support for older versions of PHP.</p>\n<h4>2.2.3</h4>\n<p>Fixed an issue where the redirect database tables were not being created, causing &#8216;Invalid Destination URL&#8217; errors.</p>\n<h4>2.2.0</h4>\n<p>Minor bug fixes. Greatly improved import feature. Redirects include query strings. Export feature added. Http/Https agnostic. Pro version added with 404 management.</p>\n<h4>2.1.2</h4>\n<p>Minor bug fixes.</p>\n<h4>2.1.1</h4>\n<p>Fixed an issue where users with a lot of redirects were being limited, this fix also changed up the admin area. Redirects are now editable via AJAX, and the ‘add new’ form was moved to the top.</p>\n<h4>2.0.1</h4>\n<p>Fixed an issue where the Automatic Update would not call the import process for pre 2.0 versions.</p>\n<h4>2.0.0</h4>\n<p>Overhauled the entire plugin. Redirects are stored in their own table. Gracefully migrates older versions.</p>\n<h4>1.4.0</h4>\n<ul>\n<li>Performance updates, added a new &#8216;Settings&#8217; page.</li>\n</ul>\n<h4>1.3.5</h4>\n<ul>\n<li>Fixed a bug with spaces in the url. Added ease of use visual aids.</li>\n</ul>\n<h4>1.3.4</h4>\n<ul>\n<li>Fixed nonce validation problem which would prevent saving of new redirects. Special Thanks to Bruce Zlotowitz for all his testing!</li>\n</ul>\n<h4>1.3.3</h4>\n<ul>\n<li>Fixed major problem when switching from 1.2 to 1.3+</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Added hierarchy to heirarchical post type selects.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Fixed a bug where duplicate URLs were being overwritten, fixed a bug where you could not completely remove all redirects.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Fixed some little bugs.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Minor CSS and usability fixes. Also checking out the SVN!</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Release.</li>\n</ul>\n\";s:11:\"screenshots\";s:507:\"<ol><li><a href=\"https://ps.w.org/eps-301-redirects/assets/screenshot-1.png?rev=2047734\"><img src=\"https://ps.w.org/eps-301-redirects/assets/screenshot-1.png?rev=2047734\" alt=\"301 Redirects admin area\"></a><p>301 Redirects admin area</p></li><li><a href=\"https://ps.w.org/eps-301-redirects/assets/screenshot-2.png?rev=2047734\"><img src=\"https://ps.w.org/eps-301-redirects/assets/screenshot-2.png?rev=2047734\" alt=\"301 Redirects import/export options\"></a><p>301 Redirects import/export options</p></li></ol>\";s:7:\"reviews\";s:13461:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Super easy, super effective</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/drveggie\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8504ea4d63089f5e8d323e738938f5a7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8504ea4d63089f5e8d323e738938f5a7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/drveggie\" class=\"reviewer-name\">drveggie</a> on <span class=\"review-date\">February 3, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">It works, now sweat!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Top</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/moietoi\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/35132ad0ff0f6e3b12d75311e30a790b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/35132ad0ff0f6e3b12d75311e30a790b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/moietoi\" class=\"reviewer-name\">moietoi</a> on <span class=\"review-date\">February 2, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Thanks !</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Top</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sagnierk\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5f78e42192659cf70577243126d3710c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5f78e42192659cf70577243126d3710c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/sagnierk\" class=\"reviewer-name\">sagnierk</a> on <span class=\"review-date\">February 1, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">top</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">funciona¡¡</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/japoma\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/407adde6b6ba8c3c4e2362ed35c3b7a8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/407adde6b6ba8c3c4e2362ed35c3b7a8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/japoma\" class=\"reviewer-name\">japoma</a> on <span class=\"review-date\">January 30, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">funciona correctamente</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Spent time trying to edit .htaccess. This worked pronto, easily. TY!!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/kb04090\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cf89e90814dac49b94ad890a4429fef8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cf89e90814dac49b94ad890a4429fef8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/kb04090\" class=\"reviewer-name\">kb04090</a> on <span class=\"review-date\">January 30, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Worked for about 45 minutes trying to get manual entries to .htaccess file redirecting my pages. First redirect would work but not subsequent ones. Plan B, get a plugin. THIS IS FANTASTIC. Wish I had started here. Thank you!!!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">wonderful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/justicemirror\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/249b8d1823221ef90b72e18f6c19325d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/249b8d1823221ef90b72e18f6c19325d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/justicemirror\" class=\"reviewer-name\">Atul <small>(justicemirror)</small></a> on <span class=\"review-date\">January 27, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">the plugin is simply amazing. I used to be quite worried about redirection issues with my posts and pages but this plugin has worked wonders. </div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">PERFECT!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mariagallo\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/67e853a3e6157c8f044117f1e4672f38?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/67e853a3e6157c8f044117f1e4672f38?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/mariagallo\" class=\"reviewer-name\">mariagallo</a> on <span class=\"review-date\">January 26, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Very simple and effective: I used it to redirect 3 files to an old version of my site I couldn\'t change for administrative reasons. 3 minutes and everything was set!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Surprisingly Simple</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/bytsphere\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6a156acf29805290fd4fc350fdc057d7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6a156acf29805290fd4fc350fdc057d7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/bytsphere\" class=\"reviewer-name\">bytsphere</a> on <span class=\"review-date\">January 25, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I have personally achieved the redirection by using mod_rewrite and modifying htaccess a zillion times never felt my life could become so much simpler.\nThanks to the simplicity of the tool, it does a serious job and is a child\'s play.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Nice</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/leandrvs\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3af2404efd87a21b0230e338b2bc1f0a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3af2404efd87a21b0230e338b2bc1f0a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/leandrvs\" class=\"reviewer-name\"> <small>(leandrvs)</small></a> on <span class=\"review-date\">January 21, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Working fine.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Does exactly what you need it to.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/therealbengreen\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/31415d76b32507cca475d733952af0f0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/31415d76b32507cca475d733952af0f0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/therealbengreen\" class=\"reviewer-name\">therealbengreen</a> on <span class=\"review-date\">January 20, 2021</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great SEO tool allows you to create 301, 302, or whatever type of redirect that works best for any particular situation or SEO requirement.</div>\n</div>\n\";}s:17:\"short_description\";s:114:\"Easily manage and create 301 &amp; 302 redirects. Simple to use &amp; validate redirects. Includes redirect stats.\";s:13:\"download_link\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.55.zip\";s:11:\"screenshots\";a:2:{i:1;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/eps-301-redirects/assets/screenshot-1.png?rev=2047734\";s:7:\"caption\";s:24:\"301 Redirects admin area\";}i:2;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/eps-301-redirects/assets/screenshot-2.png?rev=2047734\";s:7:\"caption\";s:35:\"301 Redirects import/export options\";}}s:4:\"tags\";a:5:{s:12:\"301-redirect\";s:12:\"301 redirect\";s:12:\"302-redirect\";s:12:\"302 redirect\";s:8:\"redirect\";s:8:\"redirect\";s:11:\"redirection\";s:11:\"redirection\";s:9:\"redirects\";s:9:\"redirects\";}s:8:\"versions\";a:28:{s:3:\"1.1\";s:64:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.1.zip\";s:3:\"1.2\";s:64:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.2.zip\";s:5:\"1.3.1\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.3.1.zip\";s:5:\"1.3.3\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.3.3.zip\";s:5:\"1.3.4\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.3.4.zip\";s:5:\"1.4.0\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.1.4.0.zip\";s:5:\"2.0.1\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.0.1.zip\";s:5:\"2.1.1\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.1.1.zip\";s:5:\"2.1.2\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.1.2.zip\";s:5:\"2.2.0\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.0.zip\";s:5:\"2.2.1\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.1.zip\";s:5:\"2.2.2\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.2.zip\";s:5:\"2.2.3\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.3.zip\";s:5:\"2.2.4\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.4.zip\";s:5:\"2.2.5\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.5.zip\";s:5:\"2.2.6\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.6.zip\";s:5:\"2.2.7\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.7.zip\";s:5:\"2.2.8\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.2.8.zip\";s:5:\"2.3.0\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.3.0.zip\";s:5:\"2.3.5\";s:66:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.3.5.zip\";s:4:\"2.40\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.40.zip\";s:4:\"2.45\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.45.zip\";s:4:\"2.50\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.50.zip\";s:4:\"2.51\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.51.zip\";s:4:\"2.52\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.52.zip\";s:4:\"2.53\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.53.zip\";s:4:\"2.55\";s:65:\"https://downloads.wordpress.org/plugin/eps-301-redirects.2.55.zip\";s:5:\"trunk\";s:60:\"https://downloads.wordpress.org/plugin/eps-301-redirects.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:72:\"https://ps.w.org/eps-301-redirects/assets/banner-772x250.png?rev=2049908\";s:4:\"high\";s:73:\"https://ps.w.org/eps-301-redirects/assets/banner-1544x500.png?rev=2049908\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/eps-301-redirects/assets/icon-128x128.png?rev=2413221\";s:2:\"2x\";s:70:\"https://ps.w.org/eps-301-redirects/assets/icon-256x256.png?rev=2413221\";}}','no'),(566603,'_transient_timeout_wf-plugin-info-simple-author-box','1613069733','no'),(566604,'_transient_wf-plugin-info-simple-author-box','O:8:\"stdClass\":28:{s:4:\"name\";s:17:\"Simple Author Box\";s:4:\"slug\";s:17:\"simple-author-box\";s:7:\"version\";s:6:\"2.3.20\";s:6:\"author\";s:59:\"<a href=\"https://www.webfactoryltd.com/\">WebFactory Ltd</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:12:\"contributors\";a:1:{s:10:\"webfactory\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/webfactory\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d2ad55d623efa74a60162a70366f2e9e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"WebFactory\";}}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.6.1\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:70;i:4;i:6;i:3;i:5;i:2;i:0;i:1;i:8;}s:11:\"num_ratings\";i:89;s:15:\"support_threads\";i:12;s:24:\"support_threads_resolved\";i:12;s:15:\"active_installs\";i:50000;s:10:\"downloaded\";i:751466;s:12:\"last_updated\";s:21:\"2021-01-30 6:45pm GMT\";s:5:\"added\";s:10:\"2014-08-08\";s:8:\"homepage\";s:24:\"https://wpauthorbox.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:2165:\"<p><strong>Simple Author Box</strong> adds a responsive author box at the end of your posts, showing the author name, author gravatar and author description &#8211; author bio. It also adds over 30 social profile fields on WordPress user profile screen, allowing to display the author social icons in the author box.</p>\n<h4>Main Features</h4>\n<ul>\n<li>Shows author gravatar, name, website, description (author bio) and social icons</li>\n<li>Fully customizable to match your theme design (style, color, size and text options)</li>\n<li>Nice looking on desktop, laptop, tablet or mobile phones</li>\n<li>Automatically insert the author box at the end of your post</li>\n<li>Option to manually insert the author box on your template file (single.php or author.php)</li>\n<li>Simple Author Box has RTL support</li>\n<li>Simple Author Box has AMP support</li>\n<li>Great for guest posts, and guest authors</li>\n</ul>\n<h4>Simple Author Box Pro Features</h4>\n<blockquote>\n<p><strong>Premium features only available in <a href=\"https://wpauthorbox.com/\" rel=\"nofollow ugc\">Simple Author Box Pro</a></strong></p>\n<ul>\n<li>Change author box position to before/after content</li>\n<li>Choose whether the author&#8217;s name should link to its website/page/none</li>\n<li>Select where to show author box on</li>\n<li>Add rotate effect on author avatar hover</li>\n<li>Option to open author website link in a new tab</li>\n<li>Option to add &#8220;nofollow&#8221; attribute on author website link</li>\n<li>Choose the author website&#8217;s position: right/left</li>\n<li>Social icons type, style, rotate effect, shadow effect, thin border</li>\n<li>Option to change the color palette</li>\n<li>Choose the font and font sizes for the author&#8217;s job title, website, name, and description</li>\n<li>Enable guest authors and co-authors</li>\n<li>Option to use guest authors as co-authors</li>\n<li>Top authors widget &#8211; displays the most popular authors based of comments</li>\n<li>Simple author box widget &#8211; displays the users selected</li>\n</ul>\n</blockquote>\n<p><a href=\"https://wpauthorbox.com/\" rel=\"nofollow ugc\">Read more</a> about the Simple Author Box advanced features.</p>\n\";s:12:\"installation\";s:402:\"<ol>\n<li>Download the plugin (.zip file) on your hard drive.</li>\n<li>Unzip the zip file contents.</li>\n<li>Upload the <code>simple-author-box</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>A new sub menu item <code>Simple Author Box</code> will appear in your main Settings menu.</li>\n</ol>\n\";s:3:\"faq\";s:4454:\"\n<dt id=\'why%20does%20the%20author%20box%20not%20display%20on%20a%20page%3F\'>\nWhy does the author box not display on a page?\n</h4>\n<p>\n<p>The Simple Author Box plugin was designed to display the author information on posts, categories, tags, etc. The plugin does not work on pages – it was not designed for this, unfortunately. Adding the shortcode on a blog page will also not work because the plugin won’t have author information to display/will not know which author information to display. Adding the shortcode in a widget that is on a page is another instance when the SAB will not be displayed due to the same reasons. You can add it in a widget, but that widget has to be on a single post.</p>\n</p>\n<dt id=\'what%20should%20i%20add%20for%20whatsapp%20%3F\'>\nWhat should I add for Whatsapp ?\n</h4>\n<p>\n<p>You should add there your phone number, for more information read <a href=\"https://faq.whatsapp.com/en/android/26000030/\" rel=\"nofollow ugc\">this</a></p>\n</p>\n<dt id=\'what%20should%20i%20add%20for%20telegram%20%3F\'>\nWhat should I add for Telegram ?\n</h4>\n<p>\n<p>You should add there your username, for more information read <a href=\"https://telegram.org/faq#q-how-does-t-me-work\" rel=\"nofollow ugc\">this</a></p>\n</p>\n<dt id=\'can%20i%20remove%20the%20sab%20from%20woocommerce%2Fcategory%2Ftags%20pages%3F%20can%20i%20have%20only%20on%20posts%3F\'>\nCan I remove the SAB from WooCommerce/Category/Tags pages? Can I have only on posts?\n</h4>\n<p>\n<p>The PRO version of Simple Author Box fixes this.</p>\n</p>\n<dt id=\'is%20there%20any%20widget%20in%20simple%20author%20box%20%3F\'>\nIs there any widget in Simple Author Box ?\n</h4>\n<p>\n<p>Yes, but we also have two awesome widgets in the PRO version.</p>\n</p>\n<dt id=\'i%20have%20two%20author%20boxes.%20how%20can%20i%20hide%20one%3F\'>\nI have two author boxes. How can I hide one?\n</h4>\n<p>\n<p>The second author box might be a theme feature and you will need to turn it off from your theme’s options, or hide it with custom CSS.</p>\n</p>\n<dt id=\'how%20i%20can%20translate%20the%20author%27s%20biography%20%3F\'>\nHow I can translate the author&#8217;s biography ?\n</h4>\n<p>\n<p>You can use 2 plugins in order to do this: Polylang or WPML. Here it is how to translate an author&#8217;s biography with each plugin:</p>\n<p><strong>Polylang</strong><br />\nWhen using Polylang a &#8220;Biographical Info&#8221; textarea is added for each language, this way you can enter the &#8220;Biographical Info&#8221; for each respective language.</p>\n<p><strong>WPML</strong><br />\nIn order to translate the &#8220;Biographical Info&#8221; using this plugin you have to have the wpml-string-translation plugin installed and the following configurations made:<br />\nIn the String Translation settings at the bottom you will see a &#8220;More options&#8221; setting. Click &#8220;Edit&#8221; then select &#8220;Author&#8221; from there and finally click &#8220;Apply&#8221;. After this, in the filters above, at &#8220;Select strings within domain&#8221; select &#8220;Authors&#8221;. This will reveal the strings that can be translated from the author role.</p>\n</p>\n<dt id=\'how%20can%20i%20use%20it%20with%20content%20blocks%20%28custom%20post%20widget%29%20%3F\'>\nHow can I use it with Content Blocks (Custom Post Widget) ?\n</h4>\n<p>\n<p>When adding a widget in the widget area you can select the content block to display and there you will also see a checkbox titled &#8220;Do not apply content filters&#8221;. Checking this checkbox will prevent the author box from displaying for that custom post.<br />\nWhen using a shortcode, example [content_block id=41] you can stop the author box from displaying by using one of these shortocodes instead: [content_block id=41 suppress_content_filters=true] or [content_block id=41 suppress_filters=true], both work.</p>\n</p>\n<dt id=\'how%20can%20i%20get%20support%3F\'>\nHow can I get support?\n</h4>\n<p>\n<p>You can get free support either here on the support forums: <a href=\"https://wordpress.org/support/plugin/simple-author-box\">https://wordpress.org/support/plugin/simple-author-box</a>.</p>\n</p>\n<dt id=\'how%20can%20i%20say%20thanks%3F\'>\nHow can I say thanks?\n</h4>\n<p>\n<p>You can say thank you by leaving us a review here: <a href=\"https://wordpress.org/support/plugin/simple-author-box/reviews/#new-post\">https://wordpress.org/support/plugin/simple-author-box/reviews/#new-post</a><br />\nOr you can give back by recommending this amazing plugin to your friends!</p>\n</p>\n\n\";s:9:\"changelog\";s:8881:\"<h4>2.3.20</h4>\n<ul>\n<li>2020-11-13</li>\n<li>Updated Freemius library</li>\n<li>Removed promo for WP 301 Redirects plugin</li>\n</ul>\n<h4>2.3.19</h4>\n<ul>\n<li>2020-10-15</li>\n<li>Removed various unnecessary elements like the news and changelog</li>\n<li>Added promo for WP 301 Redirects plugin</li>\n</ul>\n<h4>2.3.18</h4>\n<ul>\n<li>2020-04-18</li>\n<li>Added Discord social icon</li>\n<li>Updated Freemius library</li>\n</ul>\n<h4>2.3.16</h4>\n<ul>\n<li>Fixed missing files</li>\n</ul>\n<h4>2.3.15</h4>\n<ul>\n<li>Fixed missing link on avatar</li>\n</ul>\n<h4>2.3.14</h4>\n<ul>\n<li>Fixed PHP notice &#8220;roles&#8221;</li>\n</ul>\n<h4>2.3.13</h4>\n<ul>\n<li>Fixed visibility issue</li>\n</ul>\n<h4>2.3.12</h4>\n<ul>\n<li>Fixed: wrong class name issue</li>\n</ul>\n<h4>2.3.11</h4>\n<ul>\n<li>New feature: function wpsabox_author_box now accepts param $user_id</li>\n</ul>\n<h4>2.3.10</h4>\n<ul>\n<li>Fixed: custom author&#8217;s page (Premium only)</li>\n</ul>\n<h4>2.3.9</h4>\n<ul>\n<li>New feature: custom author&#8217;s page (Premium only)</li>\n</ul>\n<h4>2.3.8</h4>\n<ul>\n<li>Fixed visibility on archives (Premium only)</li>\n</ul>\n<h4>2.3.7</h4>\n<ul>\n<li>Removed protocol prefix from the website URL</li>\n<li>Added controls for brackets in the job title (Premium only)</li>\n</ul>\n<h4>2.3.6</h4>\n<ul>\n<li>Fixed visibility on archives (Premium only)</li>\n</ul>\n<h4>2.3.5</h4>\n<ul>\n<li>Added phone icon</li>\n</ul>\n<h4>2.3.3</h4>\n<ul>\n<li>Updated README.txt</li>\n<li>Added Freemius library</li>\n</ul>\n<h4>2.3.2</h4>\n<ul>\n<li>Fix for gutenberg block &#8211; telegram and twitter were inverted</li>\n<li>Fixed missing Whatsapp icon border setting</li>\n<li>Added filter for extra social icons extensions</li>\n</ul>\n<h4>2.3.1</h4>\n<ul>\n<li>Improved widget &#8211; added display name alongside username</li>\n<li>Fixed telegram symbol color changing</li>\n<li>Fixed telegram display in Gutenberg block</li>\n<li>Fixed avatar/gravatar circle/square functionality</li>\n<li>Fix for author name color change when link set to none</li>\n<li>Fix for plugin settings link</li>\n<li>Fix for author description display</li>\n</ul>\n<h4>2.3.0</h4>\n<ul>\n<li>Added Elementor widget</li>\n<li>Added Gutenberg block</li>\n<li>Added a widget</li>\n<li>Added telegram icon</li>\n</ul>\n<h4>2.2.2</h4>\n<ul>\n<li>Added schema.org tags.</li>\n</ul>\n<h4>2.2.1</h4>\n<ul>\n<li>Fixed author box appearing on every page.</li>\n</ul>\n<h4>2.2.0</h4>\n<ul>\n<li>Added option to show all authors with our shortcode</li>\n<li>Added option to disable the author box on archieve pages.</li>\n<li>Found a solution for &#8220;incompatibility with Content Blocks&#8221;</li>\n<li>Found a solution to translate the author description with WPML and Polylang</li>\n</ul>\n<h4>2.1.5</h4>\n<ul>\n<li>Remove uninstall feedback.</li>\n</ul>\n<h4>2.1.4</h4>\n<ul>\n<li>Added WhatsApp Social Media Link.</li>\n</ul>\n<h4>2.1.3</h4>\n<ul>\n<li>Fixed error on footer.</li>\n<li>Fixed profile image in dashboard ( https://github.com/MachoThemes/simple-author-box/issues/97 )</li>\n<li>Fixed profile image in comments ( https://github.com/MachoThemes/simple-author-box/issues/96 )</li>\n</ul>\n<h4>2.1.2</h4>\n<ul>\n<li>Added alt tag for custom profile image.</li>\n</ul>\n<h4>2.1.1</h4>\n<ul>\n<li>Minor fixes &amp; version bump</li>\n</ul>\n<h4>2.1.0</h4>\n<ul>\n<li>Speed improvement ( We removed FA and added icons as SVG&#8217;s and removed our css file and added inline )</li>\n<li>Added new Social Icon : Mastodont</li>\n<li>Added RTL Support</li>\n<li>Added option to add external url for user avatar</li>\n<li>Added option to control the width of border</li>\n<li>Fixed small issues<br />\nSee complete list here : https://github.com/MachoThemes/simple-author-box/milestone/7?closed=1</li>\n</ul>\n<h4>2.0.9</h4>\n<ul>\n<li>AMP CSS fixes &amp; validator</li>\n</ul>\n<h4>2.0.8</h4>\n<ul>\n<li>Fixed a small bug re. custom AMP CSS (forgot to add &#8216;px&#8217; units for author description paragraphs, browser was interpreting them as em)</li>\n</ul>\n<h4>2.0.7</h4>\n<ul>\n<li>Added AMP compatibility</li>\n<li>Fixed some CSS isues &amp; cleaned up the code</li>\n</ul>\n<h4>2.0.6</h4>\n<ul>\n<li>Initial PRO version release &amp; minor bug fixes</li>\n<li>Saving now remembers the tab you were on</li>\n</ul>\n<h4>2.0.5</h4>\n<ul>\n<li>Fixed Profile Image of Admin Covers All User&#8217;s Avatars : https://github.com/MachoThemes/simple-author-box/issues/58</li>\n</ul>\n<h4>2.0.4</h4>\n<ul>\n<li>Added Snapchat icon:  https://github.com/MachoThemes/simple-author-box/issues/35</li>\n<li>Fixed Shortcode issue: https://github.com/MachoThemes/simple-author-box/issues/33</li>\n<li>Added plugin uninstall feedback: https://github.com/MachoThemes/simple-author-box/issues/40</li>\n<li>Fixes #45 (400 Error Loading Fonts)</li>\n<li>Fixes #47 (Replace button in user profile for add social media)</li>\n<li>Fixes #48 (Move feedback box only to support tab)</li>\n<li>Fixes #49 (Display plugin version)</li>\n<li>Fixes #43 (Add 500px icon)</li>\n<li>Added various UI fixes (edit user profile button in plugin settings page, edit user profile/sab settings visible in author box <em>Only if user is logged in</em> on the frontend)</li>\n<li>Fixes incompatibility with SiteOrigin PageBuilder (fixed in: 406f569dd1eaee54801e1b5359bf101a9e6fd1ea); thanks @AlexGStapleton)</li>\n<li>There was a bug that prevented the following options: &#8220;Open author website link in a new tab&#8221; &amp;&amp; &#8220;Add &#8220;nofollow&#8221; attribute on author website link&#8221; when the &#8220;show author website&#8221; option was toggled to ON. Now it&#8217;s fixed &#8211; yay.</li>\n<li>Fixes #50 (Replace all gravatar instances in wp-admin with SAB custom image)</li>\n<li>Introduces new, simplified UI</li>\n<li>Updated plugin GPL requirements</li>\n</ul>\n<h4>2.0.3</h4>\n<ul>\n<li>Fixed again the typography issue.</li>\n<li>Fixed email in social icons</li>\n<li>Add Meetup, Quora &amp; Medium social icons</li>\n</ul>\n<h4>2.0.2</h4>\n<ul>\n<li>Fixed a typography issue</li>\n<li>Added VK</li>\n</ul>\n<h4>2.0.1</h4>\n<ul>\n<li>Removed simple author box from pages.</li>\n<li>Added new tab in setting page</li>\n</ul>\n<h4>2.0</h4>\n<ul>\n<li>Included the option to add html to a user&#8217;s description ( https://github.com/MachoThemes/simple-author-box/issues/23 )</li>\n<li>Fixed Google fonts error ( https://github.com/MachoThemes/simple-author-box/issues/14 )</li>\n<li>Added new features ( https://github.com/MachoThemes/simple-author-box/issues/7 )</li>\n<li>Added the posibility to add custom profile images</li>\n<li>Created a shortcode that can be placed inside the posts&#8217; content wherever a user wants</li>\n<li>Improved how you add social links</li>\n</ul>\n<h4>1.9</h4>\n<ul>\n<li>Removed lang folder, translations are now being handled by GlotPress on w.org</li>\n<li>Fixed a CSS bug ( https://github.com/MachoThemes/simple-author-box/issues/11 )</li>\n<li>Removed ShortPixel Banner ( https://github.com/MachoThemes/simple-author-box/issues/8 )</li>\n<li>Minor UI reworks. The plugin&#8217;s CSS was overwriting a lot of WordPress Core UI styling</li>\n<li>Removed RTL CSS stylesheets as they weren&#8217;t being properly handled. Will re-add them at a later date, after the new UI will be released</li>\n<li>Updated the URL that was loading FontAwesome Icons from 4.1 -&gt; 4.7 ( https://github.com/MachoThemes/simple-author-box/issues/9 )</li>\n<li>Fixed oEmbed bug on front-end ( https://github.com/MachoThemes/simple-author-box/issues/2 )</li>\n<li>Added MixCloud Icon ( https://github.com/MachoThemes/simple-author-box/issues/3 )</li>\n<li>Added GoodReads Icon ( https://github.com/MachoThemes/simple-author-box/issues/6 )</li>\n</ul>\n<h4>1.8</h4>\n<ul>\n<li>Changed plugin authorship</li>\n</ul>\n<h4>1.7</h4>\n<ul>\n<li>Fixed a small CSS issue.</li>\n<li>Added a recommendation for an image optimization plugin &#8211; ShortPixel</li>\n</ul>\n<h4>1.6</h4>\n<ul>\n<li>Fixed a small CSS issue.</li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Added XING network social profile field &amp; icon.</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Fixed the code snippet provided for manually insert the author box. Thanks to <a href=\"https://wordpress.org/support/profile/mazter3000\">@mazter3000</a> for the <a href=\"https://wordpress.org/support/topic/how-to-insert-code-to-php?replies=7#post-5886931\">bug report</a>.</li>\n<li>Fixed a line-height issue on author name link.</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Fixed a line-height issue on author description text and other small css fixes.</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Added author website option, fully configurable.</li>\n<li>Added the ability to manually insert the author box on author.php or archive.php.</li>\n<li>Added two more conditionals to load plugin CSS when need it.</li>\n<li>Fixed some visual appearance of admin options in Google Chrome.</li>\n<li>Updated translation with the new strings.</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Removed AIM, Yahoo, and Jabber Fields from the WordPress Profile Page.</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial release</li>\n</ul>\n\";s:11:\"screenshots\";s:3467:\"<ol><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-1.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-1.png?rev=962471\" alt=\"Simple Author Box - Colored icons - squares\"></a><p>Simple Author Box - Colored icons - squares</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-2.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-2.png?rev=962471\" alt=\"Simple Author Box - Colored icons - circles\"></a><p>Simple Author Box - Colored icons - circles</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-3.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-3.png?rev=962471\" alt=\"Simple Author Box - Grey icons - author square\"></a><p>Simple Author Box - Grey icons - author square</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-4.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-4.png?rev=962471\" alt=\"Simple Author Box - Grey icons - author circle\"></a><p>Simple Author Box - Grey icons - author circle</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-5.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-5.png?rev=962471\" alt=\"Simple Author Box - White icons - grey background\"></a><p>Simple Author Box - White icons - grey background</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-6.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-6.png?rev=962471\" alt=\"Simple Author Box - White icons - blue background\"></a><p>Simple Author Box - White icons - blue background</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-7.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-7.png?rev=962471\" alt=\"Simple Author Box - RTL view 1\"></a><p>Simple Author Box - RTL view 1</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-8.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-8.png?rev=962471\" alt=\"Simple Author Box - RTL view 2\"></a><p>Simple Author Box - RTL view 2</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-9.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-9.png?rev=962471\" alt=\"Simple Author Box - Sample 2\"></a><p>Simple Author Box - Sample 2</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-10.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-10.png?rev=962471\" alt=\"Simple Author Box - Sample 1\"></a><p>Simple Author Box - Sample 1</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-11.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-11.png?rev=962471\" alt=\"Simple Author Box - Responsive view 1\"></a><p>Simple Author Box - Responsive view 1</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-12.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-12.png?rev=962471\" alt=\"Simple Author Box - Responsive view 2\"></a><p>Simple Author Box - Responsive view 2</p></li><li><a href=\"https://ps.w.org/simple-author-box/assets/screenshot-13.png?rev=962471\"><img src=\"https://ps.w.org/simple-author-box/assets/screenshot-13.png?rev=962471\" alt=\"Simple Author Box - Responsive view 3\"></a><p>Simple Author Box - Responsive view 3</p></li></ol>\";s:7:\"reviews\";s:13154:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ormonk\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d0b9a0155de55aec3b19092a30a55af7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d0b9a0155de55aec3b19092a30a55af7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ormonk\" class=\"reviewer-name\">ormonk</a> on <span class=\"review-date\">December 27, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Does exactly what is supposed to do. Simplistic.\n\nThank you</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">A handy tool</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ethelddavila\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/91eb8b17a1efe781bdcd3f7b28d02510?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/91eb8b17a1efe781bdcd3f7b28d02510?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ethelddavila\" class=\"reviewer-name\">ethelddavila</a> on <span class=\"review-date\">November 7, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Love how the plugin works. Creating author boxes has never been easier.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Injects ads to dashboard</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/thehowarde\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d1f97c29b362df4e40a87c3d4e4c53d8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d1f97c29b362df4e40a87c3d4e4c53d8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/thehowarde\" class=\"reviewer-name\">thehowarde</a> on <span class=\"review-date\">October 26, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Promoted themselves to be a \'featured plugin\' and added ads to WP Admin Dashboard.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Amazing</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/lorena047\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5a8b180302fa1c1b7b58ff84ddb400b2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5a8b180302fa1c1b7b58ff84ddb400b2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/lorena047\" class=\"reviewer-name\">lorena047</a> on <span class=\"review-date\">October 25, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Set up and forget - works as described, thanks!</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Bug in the widget (LITE)</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/annanoetzel\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/237e6434cc9d2f509c808a57ea92f29a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/237e6434cc9d2f509c808a57ea92f29a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/annanoetzel\" class=\"reviewer-name\">Anna <small>(annanoetzel)</small></a> on <span class=\"review-date\">October 24, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">If it isn\'t any author the widget appears also. And Premium version doesn\'t help in this case.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Guest Post Author</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/swarana\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/062c03f2b8391380bec2fbe9c8193c3c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/062c03f2b8391380bec2fbe9c8193c3c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/swarana\" class=\"reviewer-name\">swarana</a> on <span class=\"review-date\">October 8, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Hi,\n\nHow do i get or alter by getting author name from custom field.\n\nBest Regards,\nD Swarana Prasad Bangre</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">It does exactly what it says</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/danielepais\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4b08e5f3b499f9f2cf6c310b185af2b5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4b08e5f3b499f9f2cf6c310b185af2b5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/danielepais\" class=\"reviewer-name\">danielepais</a> on <span class=\"review-date\">September 12, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">I am very pleased to use this plugin as it does the job perfectly.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/sandraldoy\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3b70c14f08fbc5af90205e80050c6ba0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3b70c14f08fbc5af90205e80050c6ba0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/sandraldoy\" class=\"reviewer-name\">sandraldoy</a> on <span class=\"review-date\">September 3, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Author boxes finally look sophisticated, just as I wanted. And what is more important, it took me only a few clicks.</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great tool</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/elizabeth87\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9cdbb4610ea3a63a8a99f9e78b768eb3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9cdbb4610ea3a63a8a99f9e78b768eb3?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/elizabeth87\" class=\"reviewer-name\">elizabeth87</a> on <span class=\"review-date\">September 1, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Best author box plugin! :)</div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Amazing!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hankmadis\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/70d30084650b329d175e07331a8603b7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/70d30084650b329d175e07331a8603b7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/hankmadis\" class=\"reviewer-name\">hankmadis</a> on <span class=\"review-date\">August 29, 2020</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Great features, looks amazing in a minute!</div>\n</div>\n\";}s:17:\"short_description\";s:97:\"Add a cool responsive author box with social icons to any post. The best author box for any site!\";s:13:\"download_link\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.20.zip\";s:11:\"screenshots\";a:13:{i:1;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-1.png?rev=962471\";s:7:\"caption\";s:43:\"Simple Author Box - Colored icons - squares\";}i:2;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-2.png?rev=962471\";s:7:\"caption\";s:43:\"Simple Author Box - Colored icons - circles\";}i:3;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-3.png?rev=962471\";s:7:\"caption\";s:46:\"Simple Author Box - Grey icons - author square\";}i:4;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-4.png?rev=962471\";s:7:\"caption\";s:46:\"Simple Author Box - Grey icons - author circle\";}i:5;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-5.png?rev=962471\";s:7:\"caption\";s:49:\"Simple Author Box - White icons - grey background\";}i:6;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-6.png?rev=962471\";s:7:\"caption\";s:49:\"Simple Author Box - White icons - blue background\";}i:7;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-7.png?rev=962471\";s:7:\"caption\";s:30:\"Simple Author Box - RTL view 1\";}i:8;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-8.png?rev=962471\";s:7:\"caption\";s:30:\"Simple Author Box - RTL view 2\";}i:9;a:2:{s:3:\"src\";s:69:\"https://ps.w.org/simple-author-box/assets/screenshot-9.png?rev=962471\";s:7:\"caption\";s:28:\"Simple Author Box - Sample 2\";}i:10;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/simple-author-box/assets/screenshot-10.png?rev=962471\";s:7:\"caption\";s:28:\"Simple Author Box - Sample 1\";}i:11;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/simple-author-box/assets/screenshot-11.png?rev=962471\";s:7:\"caption\";s:37:\"Simple Author Box - Responsive view 1\";}i:12;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/simple-author-box/assets/screenshot-12.png?rev=962471\";s:7:\"caption\";s:37:\"Simple Author Box - Responsive view 2\";}i:13;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/simple-author-box/assets/screenshot-13.png?rev=962471\";s:7:\"caption\";s:37:\"Simple Author Box - Responsive view 3\";}}s:4:\"tags\";a:5:{s:10:\"author-box\";s:10:\"author box\";s:21:\"author-profile-fields\";s:21:\"author profile fields\";s:19:\"author-social-icons\";s:19:\"author social icons\";s:14:\"profile-fields\";s:14:\"Profile Fields\";s:21:\"responsive-author-box\";s:21:\"responsive author box\";}s:8:\"versions\";a:36:{s:3:\"1.0\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.0.zip\";s:3:\"1.1\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.1.zip\";s:3:\"1.2\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.2.zip\";s:3:\"1.3\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.3.zip\";s:3:\"1.4\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.4.zip\";s:3:\"1.5\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.5.zip\";s:3:\"1.6\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.6.zip\";s:3:\"1.7\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.7.zip\";s:3:\"1.9\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.1.9.zip\";s:3:\"2.0\";s:64:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.zip\";s:5:\"2.0.1\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.1.zip\";s:5:\"2.0.2\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.2.zip\";s:5:\"2.0.4\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.4.zip\";s:5:\"2.0.5\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.5.zip\";s:5:\"2.0.6\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.6.zip\";s:5:\"2.0.7\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.7.zip\";s:5:\"2.0.8\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.8.zip\";s:5:\"2.0.9\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.0.9.zip\";s:5:\"2.1.0\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.0.zip\";s:5:\"2.1.1\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.1.zip\";s:5:\"2.1.2\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.2.zip\";s:5:\"2.1.3\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.3.zip\";s:5:\"2.1.4\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.4.zip\";s:5:\"2.1.5\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.1.5.zip\";s:5:\"2.2.0\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.2.0.zip\";s:5:\"2.2.1\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.2.1.zip\";s:5:\"2.2.2\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.2.2.zip\";s:5:\"2.3.0\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.0.zip\";s:5:\"2.3.1\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.1.zip\";s:6:\"2.3.11\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.11.zip\";s:6:\"2.3.12\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.12.zip\";s:6:\"2.3.15\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.15.zip\";s:6:\"2.3.16\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.16.zip\";s:5:\"2.3.2\";s:66:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.2.zip\";s:6:\"2.3.20\";s:67:\"https://downloads.wordpress.org/plugin/simple-author-box.2.3.20.zip\";s:5:\"trunk\";s:60:\"https://downloads.wordpress.org/plugin/simple-author-box.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:72:\"https://ps.w.org/simple-author-box/assets/banner-772x250.jpg?rev=1821054\";s:4:\"high\";b:0;}s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/simple-author-box/assets/icon-128x128.jpg?rev=1821054\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=120477 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (6,7,'_wp_page_template','default'),(7,7,'_edit_last','1'),(8,8,'_edit_last','1'),(9,8,'_wp_page_template','page_home.php'),(10,8,'_secondary_html_8','<h1>Heading 1</h1>\n<h2>Heading 2</h2>\n<h3>Heading 3</h3>\n<h4>Heading 4</h4>\n<h5>Heading 5</h5>\n<h6>Heading 6</h6>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'),(2281,1011,'_wp_attached_file','2017/02/img3b.jpg'),(21,32,'_edit_last','1'),(22,32,'_wp_page_template','default'),(23,34,'_edit_last','1'),(24,34,'_wp_page_template','page_services.php'),(203,96,'_wp_attached_file','2013/01/fairOaksKitchen1.jpg'),(477,239,'_edit_last','1'),(27,40,'_edit_last','1'),(28,40,'_wp_page_template','default'),(31,44,'_edit_last','1'),(32,44,'_wp_page_template','default'),(33,46,'_edit_last','1'),(34,46,'_wp_page_template','default'),(542,231,'_secondary_html_188','<p><a href=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles2.jpg\"><img class=\"alignnone size-full wp-image-311\" alt=\"Shingle Sample\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles2.jpg\" width=\"300\" height=\"200\" /></a><a href=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles1.jpg\"><img class=\"alignnone size-full wp-image-310\" alt=\"Shingle Sample\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles1.jpg\" width=\"300\" height=\"200\" /></a><a href=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles3.jpg\"><img class=\"alignnone size-full wp-image-312\" alt=\"Shingle Sample\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles3.jpg\" width=\"300\" height=\"200\" /></a></p>\r\n<hr />'),(104,32,'_edit_lock','1612378924:1'),(44,48,'_menu_item_type','post_type'),(45,48,'_menu_item_menu_item_parent','0'),(46,48,'_menu_item_object_id','44'),(47,48,'_menu_item_object','page'),(48,48,'_menu_item_target',''),(49,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50,48,'_menu_item_xfn',''),(51,48,'_menu_item_url',''),(1914,820,'_menu_item_type','custom'),(1915,820,'_menu_item_menu_item_parent','52'),(1916,820,'_menu_item_object_id','820'),(1917,820,'_menu_item_object','custom'),(1918,820,'_menu_item_target',''),(1919,820,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(62,50,'_menu_item_type','post_type'),(63,50,'_menu_item_menu_item_parent','0'),(64,50,'_menu_item_object_id','40'),(65,50,'_menu_item_object','page'),(66,50,'_menu_item_target',''),(67,50,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(68,50,'_menu_item_xfn',''),(69,50,'_menu_item_url',''),(101,44,'_edit_lock','1612379481:1'),(207,98,'_wp_attached_file','2013/01/fairOaksKitchen3.jpg'),(100,8,'_edit_lock','1612464962:1'),(80,52,'_menu_item_type','post_type'),(81,52,'_menu_item_menu_item_parent','0'),(82,52,'_menu_item_object_id','34'),(83,52,'_menu_item_object','page'),(84,52,'_menu_item_target',''),(85,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(86,52,'_menu_item_xfn',''),(87,52,'_menu_item_url',''),(89,53,'_menu_item_type','post_type'),(90,53,'_menu_item_menu_item_parent','0'),(91,53,'_menu_item_object_id','32'),(92,53,'_menu_item_object','page'),(93,53,'_menu_item_target',''),(94,53,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(95,53,'_menu_item_xfn',''),(96,53,'_menu_item_url',''),(105,34,'_edit_lock','1612380106:1'),(478,239,'_edit_lock','1483688849:1'),(107,40,'_edit_lock','1612380093:1'),(109,46,'_edit_lock','1612379644:1'),(110,7,'_edit_lock','1561552133:1'),(111,68,'_secondary_post_types','page'),(120308,886,'second_featured_img',''),(503,250,'_edit_last','1'),(504,250,'_edit_lock','1612439361:1'),(625,250,'_thumbnail_id','369'),(508,252,'_edit_last','1'),(509,252,'_edit_lock','1483707989:1'),(510,252,'_thumbnail_id','374'),(515,254,'_thumbnail_id','371'),(513,254,'_edit_last','1'),(514,254,'_edit_lock','1483707988:1'),(113,71,'_wp_attached_file','2012/11/homePage_slide01.jpg'),(114,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:14:\"hwstring_small\";s:23:\"height=\'40\' width=\'128\'\";s:4:\"file\";s:28:\"2012/11/homePage_slide01.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(115,72,'_wp_attached_file','2012/11/homePage_slide02.jpg'),(116,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:14:\"hwstring_small\";s:23:\"height=\'40\' width=\'128\'\";s:4:\"file\";s:28:\"2012/11/homePage_slide02.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(117,73,'_wp_attached_file','2012/11/homePage_slide03.jpg'),(118,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:14:\"hwstring_small\";s:23:\"height=\'40\' width=\'128\'\";s:4:\"file\";s:28:\"2012/11/homePage_slide03.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(163,76,'_edit_lock','1354201778:1'),(162,76,'_cycloneslider_settings','a:9:{s:8:\"template\";s:7:\"default\";s:2:\"fx\";s:4:\"fade\";s:7:\"timeout\";s:4:\"4000\";s:5:\"speed\";s:4:\"1000\";s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:11:\"hover_pause\";s:4:\"true\";s:14:\"show_prev_next\";s:1:\"1\";s:8:\"show_nav\";s:1:\"1\";}'),(161,76,'_cycloneslider_metas','a:1:{i:0;a:9:{s:2:\"id\";s:2:\"71\";s:4:\"link\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:2:\"fx\";s:0:\"\";s:5:\"speed\";s:0:\"\";s:7:\"timeout\";s:0:\"\";s:4:\"type\";s:5:\"image\";}}'),(160,76,'_edit_last','1'),(206,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(205,97,'_wp_attached_file','2013/01/fairOaksKitchen2.jpg'),(179,82,'_wp_attached_file','2012/11/homePage_slide05.jpg'),(180,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:14:\"hwstring_small\";s:23:\"height=\'40\' width=\'128\'\";s:4:\"file\";s:28:\"2012/11/homePage_slide05.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(184,84,'_wp_attached_file','2012/11/homePage_slide04.jpg'),(185,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"908\";s:6:\"height\";s:3:\"288\";s:14:\"hwstring_small\";s:23:\"height=\'40\' width=\'128\'\";s:4:\"file\";s:28:\"2012/11/homePage_slide04.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(1921,820,'_menu_item_url','/offices-commercial-spaces/'),(1920,820,'_menu_item_xfn',''),(1911,819,'_menu_item_xfn',''),(2279,1010,'_wp_attached_file','2017/02/img2b.jpg'),(1889,816,'_edit_lock','1612464351:1'),(204,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(208,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(209,99,'_wp_attached_file','2013/01/fairOaksKitchen4.jpg'),(210,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(211,100,'_wp_attached_file','2013/01/fairOaksKitchen5.jpg'),(212,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(213,101,'_wp_attached_file','2013/01/fairOaksKitchen6.jpg'),(214,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(215,102,'_wp_attached_file','2013/01/fairOaksKitchen7.jpg'),(216,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/fairOaksKitchen7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(217,103,'_wp_attached_file','2013/01/hardieSiding.png'),(218,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:24:\"2013/01/hardieSiding.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(219,104,'_wp_attached_file','2013/01/hardieSiding1.jpg'),(220,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(221,105,'_wp_attached_file','2013/01/hardieSiding2.jpg'),(222,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(223,106,'_wp_attached_file','2013/01/hardieSiding3.jpg'),(224,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(225,107,'_wp_attached_file','2013/01/hardieSiding4.jpg'),(226,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(227,108,'_wp_attached_file','2013/01/hardieSiding5.jpg'),(228,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(229,109,'_wp_attached_file','2013/01/hardieSiding6.jpg'),(230,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(231,110,'_wp_attached_file','2013/01/hardieSiding7.jpg'),(232,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(233,111,'_wp_attached_file','2013/01/hardieSiding8.jpg'),(234,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/hardieSiding8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(235,112,'_wp_attached_file','2013/01/LSDkitchen.png'),(236,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:22:\"2013/01/LSDkitchen.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(237,113,'_wp_attached_file','2013/01/LSDkitchen1.jpg'),(238,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(239,114,'_wp_attached_file','2013/01/LSDkitchen2.jpg'),(240,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(241,115,'_wp_attached_file','2013/01/LSDkitchen3.jpg'),(242,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(243,116,'_wp_attached_file','2013/01/LSDkitchen4.jpg'),(244,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(245,117,'_wp_attached_file','2013/01/LSDkitchen5.jpg'),(246,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(247,118,'_wp_attached_file','2013/01/LSDkitchen6.jpg'),(248,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(249,119,'_wp_attached_file','2013/01/LSDkitchen7.jpg'),(250,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(251,120,'_wp_attached_file','2013/01/LSDkitchen8.jpg'),(252,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(253,121,'_wp_attached_file','2013/01/LSDkitchen9.jpg'),(254,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/LSDkitchen9.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(255,122,'_wp_attached_file','2013/01/LSDkitchen10.jpg'),(256,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:24:\"2013/01/LSDkitchen10.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(257,123,'_wp_attached_file','2013/01/LSDkitchen11.jpg'),(258,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:24:\"2013/01/LSDkitchen11.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(259,124,'_wp_attached_file','2013/01/LSDkitchen12.jpg'),(260,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:24:\"2013/01/LSDkitchen12.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(261,125,'_wp_attached_file','2013/01/matteson.png'),(262,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:20:\"2013/01/matteson.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(263,126,'_wp_attached_file','2013/01/mattesonBath1.jpg'),(264,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(265,127,'_wp_attached_file','2013/01/mattesonBath2.jpg'),(266,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(267,128,'_wp_attached_file','2013/01/mattesonBath3.jpg'),(268,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(269,129,'_wp_attached_file','2013/01/mattesonBath4.jpg'),(270,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(271,130,'_wp_attached_file','2013/01/mattesonBath5.jpg'),(272,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(273,131,'_wp_attached_file','2013/01/mattesonBath6.jpg'),(274,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(275,132,'_wp_attached_file','2013/01/mattesonBath7.jpg'),(276,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(277,133,'_wp_attached_file','2013/01/mattesonBath8.jpg'),(278,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/mattesonBath8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(898,443,'_wp_attached_file','2013/02/mattesonBath12.jpg'),(896,442,'_wp_attached_file','2013/02/mattesonBath9.jpg'),(897,442,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/mattesonBath9.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(281,135,'_wp_attached_file','2013/01/mattesonBath10.jpg'),(282,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/mattesonBath10.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(283,136,'_wp_attached_file','2013/01/mattesonBath11.jpg'),(284,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/mattesonBath11.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(285,137,'_wp_attached_file','2013/01/mattesonDining.png'),(286,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/mattesonDining.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(287,138,'_wp_attached_file','2013/01/mattesonKitchen.png'),(288,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:27:\"2013/01/mattesonKitchen.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(289,139,'_wp_attached_file','2013/01/mattesonKitchen1.jpg'),(290,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(291,140,'_wp_attached_file','2013/01/mattesonKitchen2.jpg'),(292,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(293,141,'_wp_attached_file','2013/01/mattesonKitchen3.jpg'),(294,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(295,142,'_wp_attached_file','2013/01/mattesonKitchen4.jpg'),(296,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(297,143,'_wp_attached_file','2013/01/mattesonKitchen5.jpg'),(298,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(299,144,'_wp_attached_file','2013/01/mattesonKitchen6.jpg'),(300,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mattesonKitchen6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(819,409,'_wp_attachment_image_alt','bathroom before and after renovation'),(817,409,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:27:\"2013/02/mendotaHallbath.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(818,403,'_thumbnail_id','409'),(303,146,'_wp_attached_file','2013/01/mendotaHallbath1.jpg'),(304,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(305,147,'_wp_attached_file','2013/01/mendotaHallbath2.jpg'),(306,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(307,148,'_wp_attached_file','2013/01/mendotaHallbath3.jpg'),(308,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(309,149,'_wp_attached_file','2013/01/mendotaHallbath4.jpg'),(310,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(311,150,'_wp_attached_file','2013/01/mendotaHallbath5.jpg'),(312,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(313,151,'_wp_attached_file','2013/01/mendotaHallbath6.jpg'),(314,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(315,152,'_wp_attached_file','2013/01/mendotaHallbath7.jpg'),(316,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(317,153,'_wp_attached_file','2013/01/mendotaHallbath8.jpg'),(318,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(319,154,'_wp_attached_file','2013/01/mendotaHallbath9.jpg'),(320,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:28:\"2013/01/mendotaHallbath9.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(321,155,'_wp_attached_file','2013/01/mendotaMasterbath.png'),(322,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"486\";s:6:\"height\";s:3:\"250\";s:14:\"hwstring_small\";s:23:\"height=\'65\' width=\'128\'\";s:4:\"file\";s:29:\"2013/01/mendotaMasterbath.png\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(323,156,'_wp_attached_file','2013/01/mendotaMasterbath1.jpg'),(324,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(325,157,'_wp_attached_file','2013/01/mendotaMasterbath2.jpg'),(326,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(327,158,'_wp_attached_file','2013/01/mendotaMasterbath3.jpg'),(328,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(329,159,'_wp_attached_file','2013/01/mendotaMasterbath4.jpg'),(330,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(331,160,'_wp_attached_file','2013/01/mendotaMasterbath5.jpg'),(332,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(333,161,'_wp_attached_file','2013/01/mendotaMasterbath6.jpg'),(334,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(335,162,'_wp_attached_file','2013/01/mendotaMasterbath7.jpg'),(336,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(337,163,'_wp_attached_file','2013/01/mendotaMasterbath8.jpg'),(338,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(339,164,'_wp_attached_file','2013/01/mendotaMasterbath9.jpg'),(340,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaMasterbath9.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(622,246,'_thumbnail_id','318'),(620,318,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:29:\"2013/02/mendotaPowderroom.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(621,318,'_wp_attachment_image_alt','bathroom before and after renovation'),(343,166,'_wp_attached_file','2013/01/mendotaPowderroom1.jpg'),(344,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaPowderroom1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(345,167,'_wp_attached_file','2013/01/mendotaPowderroom2.jpg'),(346,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaPowderroom2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(347,168,'_wp_attached_file','2013/01/mendotaPowderroom3.jpg'),(348,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:30:\"2013/01/mendotaPowderroom3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(349,169,'_wp_attached_file','2013/01/seminaryBath1.jpg'),(350,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath1.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(351,170,'_wp_attached_file','2013/01/seminaryBath2.jpg'),(352,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath2.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(353,171,'_wp_attached_file','2013/01/seminaryBath3.jpg'),(354,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath3.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(355,172,'_wp_attached_file','2013/01/seminaryBath4.jpg'),(356,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath4.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(357,173,'_wp_attached_file','2013/01/seminaryBath5.jpg'),(358,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath5.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(359,174,'_wp_attached_file','2013/01/seminaryBath6.jpg'),(360,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath6.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(361,175,'_wp_attached_file','2013/01/seminaryBath7.jpg'),(362,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath7.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(363,176,'_wp_attached_file','2013/01/seminaryBath8.jpg'),(364,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath8.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(365,177,'_wp_attached_file','2013/01/seminaryBath9.jpg'),(366,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:25:\"2013/01/seminaryBath9.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(367,178,'_wp_attached_file','2013/01/seminaryBath10.jpg'),(368,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath10.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(369,179,'_wp_attached_file','2013/01/seminaryBath11.jpg'),(370,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath11.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(371,180,'_wp_attached_file','2013/01/seminaryBath12.jpg'),(372,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath12.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(373,181,'_wp_attached_file','2013/01/seminaryBath13.jpg'),(374,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath13.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(375,182,'_wp_attached_file','2013/01/seminaryBath14.jpg'),(376,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath14.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(377,183,'_wp_attached_file','2013/01/seminaryBath15.jpg'),(378,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:26:\"2013/01/seminaryBath15.jpg\";s:10:\"image_meta\";a:10:{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:\"\";}}'),(916,447,'_thumbnail_id','449'),(915,449,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:29:\"2013/02/seminaryBathroom1.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(382,186,'_edit_last','1'),(383,186,'_edit_lock','1364083004:1'),(386,188,'_secondary_post_types','post'),(537,264,'_edit_lock','1483706927:1'),(764,373,'_wp_attachment_image_alt','living room before and after remodeling'),(527,260,'_edit_lock','1483706740:1'),(526,260,'_edit_last','1'),(768,372,'_wp_attachment_image_alt','patio remodeling project'),(390,191,'_wp_attached_file','2013/01/blog_roofing_header.png'),(391,191,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:31:\"2013/01/blog_roofing_header.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(392,186,'_thumbnail_id','473'),(485,241,'_thumbnail_id','373'),(628,268,'_wp_attachment_image_alt','house before and after remodeling'),(488,243,'_edit_last','1'),(489,243,'_edit_lock','1495483269:1'),(490,243,'_thumbnail_id','370'),(494,246,'_edit_lock','1363307186:1'),(493,246,'_edit_last','1'),(400,199,'_edit_last','1'),(401,199,'_edit_lock','1483706813:1'),(402,199,'_thumbnail_id','474'),(403,199,'_secondary_html_188','<p><img class=\"alignnone size-full wp-image-489\" alt=\"Roofing Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-490\" alt=\"Roofing Install\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-491\" alt=\"Roofing After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_3.jpg\" width=\"300\" height=\"200\" /></p>'),(1012,475,'_wp_attachment_image_alt','shingle roof before and after remodel'),(1189,599,'_edit_last','1'),(1190,599,'_edit_lock','1612381987:1'),(1202,233,'_wp_old_slug','accessories'),(1193,501,'_edit_lock','1363278892:1'),(1194,501,'_edit_last','1'),(1195,96,'_edit_lock','1363278470:1'),(1196,473,'_edit_lock','1363278518:1'),(1197,473,'_edit_last','1'),(914,449,'_wp_attached_file','2013/02/seminaryBathroom1.png'),(1209,625,'_wp_attached_file','2013/03/icon_bedrooms.jpg'),(1210,625,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2013/03/icon_bedrooms.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1205,623,'_wp_attached_file','2013/03/icon_barthrooms.jpg'),(1206,623,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:27:\"2013/03/icon_barthrooms.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1207,624,'_wp_attached_file','2013/03/icon_basements.jpg'),(1208,624,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:26:\"2013/03/icon_basements.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(483,241,'_edit_last','1'),(456,231,'_edit_last','1'),(457,231,'_edit_lock','1483706904:1'),(480,239,'_thumbnail_id','271'),(460,233,'_edit_last','1'),(464,234,'_edit_last','1'),(463,233,'_edit_lock','1483706864:1'),(468,231,'_thumbnail_id','308'),(467,234,'_edit_lock','1483706580:1'),(471,233,'_thumbnail_id','191'),(484,241,'_edit_lock','1483706820:1'),(536,264,'_edit_last','1'),(619,318,'_wp_attached_file','2013/02/mendotaPowderroom.png'),(613,271,'_wp_attachment_image_alt','dining room before and after remodel'),(545,268,'_wp_attached_file','2013/02/hardieSiding.png'),(546,268,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:24:\"2013/02/hardieSiding.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(547,269,'_wp_attached_file','2013/02/LSDkitchen.png'),(548,269,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:22:\"2013/02/LSDkitchen.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(549,270,'_wp_attached_file','2013/02/matteson.png'),(550,270,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/matteson.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(551,271,'_wp_attached_file','2013/02/mattesonDining.png'),(552,271,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:26:\"2013/02/mattesonDining.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(553,272,'_wp_attached_file','2013/02/mattesonKitchen.png'),(554,272,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:27:\"2013/02/mattesonKitchen.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(840,415,'_wp_attachment_image_alt','bathrom before and after makeover'),(835,415,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:29:\"2013/02/mendotaMasterbath.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(557,274,'_wp_attached_file','2013/02/printersRowBath.png'),(558,274,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:27:\"2013/02/printersRowBath.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(559,275,'_wp_attached_file','2013/02/printersRowKitchen.png'),(560,275,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:30:\"2013/02/printersRowKitchen.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(561,276,'_wp_attached_file','2013/02/roofing.png'),(562,276,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:19:\"2013/02/roofing.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(938,473,'_wp_attached_file','2013/02/roofing1.png'),(939,473,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/roofing1.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(565,280,'_wp_attached_file','2013/02/aboutChicagolandRemodeling.jpg'),(566,280,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:38:\"2013/02/aboutChicagolandRemodeling.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(567,280,'_wp_attachment_image_alt','contractor during remodeling'),(568,32,'_thumbnail_id','280'),(940,474,'_wp_attached_file','2013/02/roofing2.png'),(941,474,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/roofing2.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(942,475,'_wp_attached_file','2013/02/roofing3.png'),(943,475,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/roofing3.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(583,302,'_wp_attached_file','2013/02/shingles.jpg'),(581,301,'_wp_attached_file','2013/02/chimneys.png'),(582,301,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/chimneys.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(584,302,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:20:\"2013/02/shingles.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(585,234,'_thumbnail_id','301'),(594,308,'_wp_attached_file','2013/02/shingles.png'),(595,308,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/shingles.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(598,310,'_wp_attached_file','2013/02/shingles1.jpg'),(599,310,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/shingles1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(600,311,'_wp_attached_file','2013/02/shingles2.jpg'),(601,311,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/shingles2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(602,311,'_wp_attachment_image_alt','completed Shingle roof remodeling'),(603,310,'_wp_attachment_image_alt','Shingle roof after remodel'),(604,312,'_wp_attached_file','2013/02/shingles3.jpg'),(605,312,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/shingles3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(606,312,'_wp_attachment_image_alt','Shingle roof after remodeling'),(2282,1011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2017/02/img3b.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img3b-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:\"img3b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:17:\"img3b-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(2289,1017,'_wp_attached_file','2013/03/living.jpg'),(2290,1017,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:381;s:4:\"file\";s:18:\"2013/03/living.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"living-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:\"living-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"living-250x149.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"living-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(631,105,'_wp_attachment_image_alt','house before makeover'),(632,106,'_wp_attachment_image_alt','house before renovation'),(633,107,'_wp_attachment_image_alt','siding renovation in progress'),(634,108,'_wp_attachment_image_alt','house renovation in progress'),(635,109,'_wp_attachment_image_alt','windows after renovation'),(636,110,'_wp_attachment_image_alt','house after remodeling'),(637,111,'_wp_attachment_image_alt','house after renovation'),(638,269,'_wp_attachment_image_alt','kitchen before and after remodeling'),(834,415,'_wp_attached_file','2013/02/mendotaMasterbath.png'),(645,113,'_wp_attachment_image_alt','kitchen before remodeling by Chicagoland Remodeling'),(646,114,'_wp_attachment_image_alt','kitchen before remodeling'),(647,115,'_wp_attachment_image_alt','kitchen before renovation'),(648,116,'_wp_attachment_image_alt','kitchen remodeling in progress'),(649,117,'_wp_attachment_image_alt','old funiture in kitchen'),(650,118,'_wp_attachment_image_alt','Kitchen After makeover'),(651,119,'_wp_attachment_image_alt','Kitchen makeover project'),(652,120,'_wp_attachment_image_alt','kitchen and dining room after remodel'),(653,121,'_wp_attachment_image_alt','Kitchen remodeling project'),(654,122,'_wp_attachment_image_alt','Dining Room after makeover'),(655,123,'_wp_attachment_image_alt','new lighting and funiture in kitchen'),(656,124,'_wp_attachment_image_alt','kitchen funiture and household articles'),(1203,622,'_wp_attached_file','2013/03/icon_addlRoofing.jpg'),(1204,622,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:28:\"2013/03/icon_addlRoofing.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(665,333,'_thumbnail_id','272'),(664,272,'_wp_attachment_image_alt','kitchen before and after renovation'),(666,333,'_edit_last','1'),(667,333,'_edit_lock','1360067043:1'),(668,139,'_wp_attachment_image_alt','kitchen before remodeling by Chicagoland Remodeling'),(669,140,'_wp_attachment_image_alt','uncompleted Kitchen Remodeling project'),(670,141,'_wp_attachment_image_alt','Kitchen Remodel in Progress'),(671,142,'_wp_attachment_image_alt','Kitchen after renovation'),(672,143,'_wp_attachment_image_alt','completed Kitchen Remodel project'),(673,144,'_wp_attachment_image_alt','Kitchen after Remodel'),(674,333,'_secondary_html_188','<img class=\"alignnone size-full wp-image-139\" alt=\"Before Kitchen Photo\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-140\" alt=\"Kitchen Remodel in Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-141\" alt=\"Kitchen Remodel in Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-142\" alt=\"After Kitchen Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-143\" alt=\"After Kitchen Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-144\" alt=\"After Kitchen Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen6.jpg\" width=\"300\" height=\"200\" />'),(678,336,'_edit_lock','1360042389:1'),(677,336,'_edit_last','1'),(679,336,'_thumbnail_id','275'),(680,275,'_wp_attachment_image_alt','kitchen before and after makeover'),(689,343,'_wp_attached_file','2013/02/printersKitchen1.jpg'),(690,343,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(691,344,'_wp_attached_file','2013/02/printersKitchen2.jpg'),(692,344,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(693,345,'_wp_attached_file','2013/02/printersKitchen3.jpg'),(694,345,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(695,346,'_wp_attached_file','2013/02/printersKitchen4.jpg'),(696,346,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen4.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(697,347,'_wp_attached_file','2013/02/printersKitchen5.jpg'),(698,347,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen5.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(699,348,'_wp_attached_file','2013/02/printersKitchen6.jpg'),(700,348,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen6.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(701,349,'_wp_attached_file','2013/02/printersKitchen7.jpg'),(702,349,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen7.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(703,350,'_wp_attached_file','2013/02/printersKitchen8.jpg'),(704,350,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2013/02/printersKitchen8.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(705,343,'_wp_attachment_image_alt','kitchen before remodeling'),(706,344,'_wp_attachment_image_alt','walls before renovation'),(707,345,'_wp_attachment_image_alt','Kitchen floor remodeling'),(708,347,'_wp_attachment_image_alt','Kitchen Remodel project in Progress'),(709,348,'_wp_attachment_image_alt','Kitchen Remodel in Progress'),(710,346,'_wp_attachment_image_alt','Kitchen Wall Removed'),(711,349,'_wp_attachment_image_alt','Kitchen Floor'),(712,350,'_wp_attachment_image_alt','kitchen after remodeling'),(713,336,'_secondary_html_188','<img class=\"alignnone size-full wp-image-343\" alt=\"Before Kitchen Photo\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-344\" alt=\"Before Kitchen Photo\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-345\" alt=\"Kitchen Wall Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-346\" alt=\"Kitchen Wall Removed\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-347\" alt=\"Kitchen Remodel in Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-348\" alt=\"Kitchen Remodel in Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-349\" alt=\"New Kitchen Floor\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-350\" alt=\"Kitchen Near Completion\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen8.jpg\" width=\"300\" height=\"200\" />'),(944,476,'_wp_attached_file','2013/02/roofing4.png'),(945,476,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/roofing4.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(946,477,'_wp_attached_file','2013/02/painting1.jpg'),(947,477,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/painting1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(948,478,'_wp_attached_file','2013/02/painting2.jpg'),(949,478,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/painting2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(950,479,'_wp_attached_file','2013/02/painting3.jpg'),(951,479,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/02/painting3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(952,480,'_wp_attached_file','2013/02/remodel1.jpg'),(953,480,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(954,481,'_wp_attached_file','2013/02/remodel2.jpg'),(955,481,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(734,362,'_wp_attached_file','2013/02/remodeling.jpg'),(735,362,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:22:\"2013/02/remodeling.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(736,363,'_wp_attached_file','2013/02/services.jpg'),(737,363,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:20:\"2013/02/services.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(961,484,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel5.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(960,484,'_wp_attached_file','2013/02/remodel5.jpg'),(958,483,'_wp_attached_file','2013/02/remodel4.jpg'),(959,483,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel4.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(957,482,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(956,482,'_wp_attached_file','2013/02/remodel3.jpg'),(744,367,'_wp_attached_file','2013/02/testimonials.jpg'),(745,367,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:24:\"2013/02/testimonials.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(746,369,'_wp_attached_file','2013/02/bedrooms.png'),(747,369,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:20:\"2013/02/bedrooms.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(748,370,'_wp_attached_file','2013/02/familyrooms.png'),(749,370,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:23:\"2013/02/familyrooms.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(750,371,'_wp_attached_file','2013/02/gutters.png'),(751,371,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:19:\"2013/02/gutters.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(752,372,'_wp_attached_file','2013/02/patios.png'),(753,372,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:18:\"2013/02/patios.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(754,373,'_wp_attached_file','2013/02/remodeling.png'),(755,373,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:22:\"2013/02/remodeling.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(756,374,'_wp_attached_file','2013/02/soffits.png'),(757,374,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:19:\"2013/02/soffits.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(758,376,'_wp_attached_file','2013/02/stairs.png'),(759,376,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:257;s:4:\"file\";s:18:\"2013/02/stairs.png\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(760,376,'_wp_attachment_image_alt','Stairs after renovation'),(761,264,'_thumbnail_id','376'),(769,260,'_thumbnail_id','372'),(774,371,'_wp_attachment_image_alt','roof and gutters'),(775,374,'_wp_attachment_image_alt','completed roof remodeling'),(778,369,'_wp_attachment_image_alt','Bedrooms remodeling projects'),(783,370,'_wp_attachment_image_alt','living room remodeling project'),(1335,690,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:24:\"2013/03/decksPorches.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1334,690,'_wp_attached_file','2013/03/decksPorches.jpg'),(794,399,'_edit_last','1'),(795,399,'_edit_lock','1360116121:1'),(796,399,'_thumbnail_id','269'),(797,399,'_secondary_html_188','<img class=\"alignnone size-full wp-image-113\" alt=\"LSD Kitchen Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-114\" alt=\"LSD Kitchen Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-115\" alt=\"LSD Kitchen Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-116\" alt=\"LSD Kitchen Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-117\" alt=\"LSD Kitchen Progress\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-118\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-119\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-120\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen8.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-123\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen11.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-122\" alt=\"LSD Dining Room\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen10.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-121\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen9.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-124\" alt=\"LSD Kitchen After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen12.jpg\" width=\"300\" height=\"200\" />'),(801,403,'_edit_lock','1360165214:1'),(800,403,'_edit_last','1'),(816,409,'_wp_attached_file','2013/02/mendotaHallbath.png'),(804,146,'_wp_attachment_image_alt','toilet before remodeling'),(805,147,'_wp_attachment_image_alt','shower cabin before remodel'),(806,148,'_wp_attachment_image_alt','contractors during glaze remodeling'),(807,403,'_secondary_html_188','<img class=\"alignnone size-full wp-image-146\" alt=\"Hall Bath Before \" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-147\" alt=\"Hall Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-148\" alt=\"Hall Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-149\" alt=\"Hall Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-150\" alt=\"Hall Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-151\" alt=\"Hall Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-152\" alt=\"Hall Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-153\" alt=\"Hall Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath8.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-154\" alt=\"Hall Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath9.jpg\" width=\"300\" height=\"200\" />'),(808,149,'_wp_attachment_image_alt','glaze remodeling'),(809,150,'_wp_attachment_image_alt','bath and glaze exchange'),(810,151,'_wp_attachment_image_alt','hall remodeling in progress'),(811,152,'_wp_attachment_image_alt','shower and glaze after remodel'),(812,153,'_wp_attachment_image_alt','washbasin after exchange'),(813,154,'_wp_attachment_image_alt','finished bathroom remodeling project'),(829,157,'_wp_attachment_image_alt','bathroom before remodel'),(824,412,'_edit_last','1'),(825,412,'_edit_lock','1483707986:1'),(826,155,'_wp_attachment_image_alt','bathroom before and after makeover'),(827,412,'_thumbnail_id','415'),(828,156,'_wp_attachment_image_alt','shower cabin before exchange'),(830,158,'_wp_attachment_image_alt','basement remodeling in progress'),(831,412,'_secondary_html_188','<img class=\"alignnone size-full wp-image-156\" alt=\"Master Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-157\" alt=\"Master Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-158\" alt=\"Master Bath Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-156\" alt=\"Master Bath Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-157\" alt=\"Master Bath Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-158\" alt=\"Master Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-156\" alt=\"Master Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-157\" alt=\"Master Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath8.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-158\" alt=\"Master Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath9.jpg\" width=\"300\" height=\"200\" />'),(851,274,'_wp_attachment_image_alt','bathroom before and after makeover'),(853,424,'_wp_attached_file','2013/02/printersBath1.jpg'),(854,424,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(855,425,'_wp_attached_file','2013/02/printersBath2.jpg'),(856,425,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(857,426,'_wp_attached_file','2013/02/printersBath3.jpg'),(858,426,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(859,427,'_wp_attached_file','2013/02/printersBath4.jpg'),(860,427,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath4.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(861,428,'_wp_attached_file','2013/02/printersBath5.jpg'),(862,428,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath5.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(863,429,'_wp_attached_file','2013/02/printersBath6.jpg'),(864,429,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath6.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(865,430,'_wp_attached_file','2013/02/printersBath7.jpg'),(866,430,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath7.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(867,431,'_wp_attached_file','2013/02/printersBath8.jpg'),(868,431,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2013/02/printersBath8.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(869,424,'_wp_attachment_image_alt','bathroom before remodeling'),(870,425,'_wp_attachment_image_alt','bathroom remodeling in progress'),(871,426,'_wp_attachment_image_alt','bath before remodel'),(879,436,'_edit_last','1'),(880,436,'_edit_lock','1360121481:1'),(881,436,'_thumbnail_id','274'),(882,436,'_secondary_html_188','<img class=\"alignnone size-full wp-image-424\" alt=\"Printers\' Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-425\" alt=\"Printers\' Bath Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-426\" alt=\"Printers Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-424\" alt=\"Printers\' Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-425\" alt=\"Printers\' Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-426\" alt=\"Printers Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-424\" alt=\"Printers\' Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-425\" alt=\"Printers\' Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath8.jpg\" width=\"300\" height=\"200\" />'),(886,439,'_edit_lock','1360122670:1'),(885,439,'_edit_last','1'),(887,270,'_wp_attachment_image_alt','bathroom before and after makeover'),(888,439,'_thumbnail_id','270'),(889,126,'_wp_attachment_image_alt','shower cabin and bath before remodel'),(890,127,'_wp_attachment_image_alt','Bath Before makeover'),(891,128,'_wp_attachment_image_alt','uncompleted bath remodel'),(892,135,'_wp_attachment_image_alt','new bath after remodeling'),(893,439,'_secondary_html_188','<img class=\"alignnone size-full wp-image-126\" alt=\"Matteson Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-127\" alt=\"Matteson Bath Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-128\" alt=\"Matteson Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-126\" alt=\"Matteson Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-127\" alt=\"Matteson Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-128\" alt=\"Matteson Bath Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-126\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-127\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath8.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-442\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonBath9.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-126\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath10.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-127\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath11.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-443\" alt=\"Matteson Bath After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonBath12.jpg\" width=\"300\" height=\"200\" />'),(899,443,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2013/02/mattesonBath12.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(902,443,'_wp_attachment_image_alt','bathroom remodeling contractors chicago bathroom after replacement'),(903,442,'_wp_attachment_image_alt','bathroom after renovation'),(909,447,'_edit_lock','1365010606:1'),(908,447,'_edit_last','1'),(910,169,'_wp_attachment_image_alt','bathroom before renovation'),(911,170,'_wp_attachment_image_alt','bathroom before remodel'),(912,171,'_wp_attachment_image_alt','bathroom before makeover'),(913,447,'_secondary_html_188','<img class=\"alignnone size-full wp-image-169\" alt=\"Seminary Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-170\" alt=\"Seminary Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-171\" alt=\"Seminary Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath3.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-169\" alt=\"Seminary Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-170\" alt=\"Seminary Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath5.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-171\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath6.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-169\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath7.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-170\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath8.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-171\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath9.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-169\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath10.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-170\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath11.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-171\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath12.jpg\" width=\"300\" height=\"200\" />\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone size-full wp-image-169\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath13.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-170\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath14.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-171\" alt=\"Seminary Remodel\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath15.jpg\" width=\"300\" height=\"200\" />'),(917,449,'_wp_attachment_image_alt','bathroom before and after renovation'),(934,470,'_wp_attached_file','2013/02/contactUs.jpg'),(935,470,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:21:\"2013/02/contactUs.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(936,471,'_wp_attached_file','2013/02/freeEstimate.jpg'),(937,471,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:24:\"2013/02/freeEstimate.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(962,485,'_wp_attached_file','2013/02/remodel6.jpg'),(963,485,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2013/02/remodel6.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(964,486,'_wp_attached_file','2013/02/roofing1_1.jpg'),(965,486,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing1_1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(995,501,'_wp_attached_file','2013/01/roofing1_2.jpg'),(996,501,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/01/roofing1_2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(968,488,'_wp_attached_file','2013/02/roofing1_3.jpg'),(969,488,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing1_3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(970,489,'_wp_attached_file','2013/02/roofing2_1.jpg'),(971,489,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing2_1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(972,490,'_wp_attached_file','2013/02/roofing2_2.jpg'),(973,490,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing2_2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(974,491,'_wp_attached_file','2013/02/roofing2_3.jpg'),(975,491,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing2_3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(976,492,'_wp_attached_file','2013/02/roofing3_1.jpg'),(977,492,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing3_1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(978,493,'_wp_attached_file','2013/02/roofing3_2.jpg'),(979,493,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing3_2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(980,494,'_wp_attached_file','2013/02/roofing3_3.jpg'),(981,494,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing3_3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(982,495,'_wp_attached_file','2013/02/roofing3_4.jpg'),(983,495,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing3_4.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(984,496,'_wp_attached_file','2013/02/roofing3_5.jpg'),(985,496,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing3_5.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(986,497,'_wp_attached_file','2013/02/roofing4_1.jpg'),(987,497,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing4_1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(988,498,'_wp_attached_file','2013/02/roofing4_2.jpg'),(989,498,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing4_2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(990,499,'_wp_attached_file','2013/02/roofing4_3.jpg'),(991,499,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing4_3.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(992,500,'_wp_attached_file','2013/02/roofing4_4.jpg'),(993,500,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/02/roofing4_4.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(994,473,'_wp_attachment_image_alt','remodeling contractors on roof'),(997,501,'_wp_attachment_image_alt','roof damage'),(998,486,'_wp_attachment_image_alt','contractors during roof repair'),(999,488,'_wp_attachment_image_alt','roof renovation project'),(1000,186,'_secondary_html_188','<p><img class=\"alignnone size-full wp-image-486\" alt=\"Roofing Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing1_1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-501\" alt=\"Roofing Demolish\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/roofing1_2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-488\" alt=\"Roofing After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing1_3.jpg\" width=\"300\" height=\"200\" /></p>'),(1003,474,'_wp_attachment_image_alt','roof before and after makeover'),(1004,489,'_wp_attachment_image_alt','garage roof before repair'),(1005,490,'_wp_attachment_image_alt','roof relacement project'),(1006,491,'_wp_attachment_image_alt','roof after renovation'),(1009,493,'_wp_attachment_image_alt','roof and chimney before replacement'),(1010,492,'_wp_attachment_image_alt','roof before repair'),(1011,494,'_wp_attachment_image_alt','chimney and roof after replacement'),(1186,589,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:26:\"2012/11/service_THUMB2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1185,589,'_wp_attached_file','2012/11/service_THUMB2.jpg'),(1184,588,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:26:\"2012/11/service_THUMB1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1183,588,'_wp_attached_file','2012/11/service_THUMB1.jpg'),(1020,476,'_wp_attachment_image_alt','roof before and after remodeling'),(1187,588,'_wp_attachment_image_alt','Chimney'),(1022,497,'_wp_attachment_image_alt','roof damaged'),(1023,498,'_wp_attachment_image_alt','home remodeling contractors'),(1024,499,'_wp_attachment_image_alt','roof remodeling contractors'),(2490,34,'_secondary_html_68','<h5><a title=\"Basements\" href=\"/basements/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_basements.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>BASEMENTS</h5>\r\n<p>From the ground up or working with a partially finished space - turn that area into a family, office or storage room<br />\r\n<a title=\"Basements\" href=\"/basements/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Bathroom Remodeling\" href=\"/bathroom-remodeling/\"><img class=\" wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_barthrooms.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>BATHROOMS</h5>\r\n<p>Build a totally new space or redesign your existing bath<br />\r\n<a title=\"Bathroom Remodeling\" href=\"/bathroom-remodeling/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Bedrooms\" href=\"/bedrooms/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_bedrooms.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>BEDROOMS</h5>\r\n<p>Create a personal resting place that is uniquely you<br />\r\n<a title=\"Bedrooms\" href=\"/bedrooms/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Dining Rooms\" href=\"/dinning-rooms/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_diningRoom.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>DINING ROOMS</h5>\r\n<p>Give your family a dedicated place to meet and eat<br />\r\n<a title=\"Dining Rooms\" href=\"/dinning-rooms/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Family Rooms\" href=\"/family-rooms/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_familyRoom.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>FAMILY ROOMS</h5>\r\n<p>Expand your existing family room or design a family room addition<br />\r\n<a title=\"Family Rooms\" href=\"/family-rooms/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Kitchen Remodeling\" href=\"/kitchen-remodeling/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_kitchens.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>KITCHENS</h5>\r\n<p>From total reconstructions to partial renovations, no job is too big or small<br />\r\n<a title=\"Kitchen Remodeling\" href=\"/kitchen-remodeling/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Offices + Commercial Spaces\" href=\"/offices-commercial-spaces/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_officesCommercial.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>OFFICES + COMMERCIAL SPACES</h5>\r\n<p>Redefine and rework commercial spaces or remodel and renovate your office areas<br />\r\n<a title=\"Offices + Commercial Spaces\" href=\"/offices-commercial-spaces/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Painting\" href=\"/remodeling-painting/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_paintingIndoor.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>PAINTING</h5>\r\n<p>Get a professional new look for your home with a fresh coat of paint<br />\r\n<a title=\"Painting\" href=\"/remodeling-painting/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>\r\n<h5><a title=\"Stairs\" href=\"/stairs/\"><img class=\"size-full wp-image-589 alignleft\" src=\"/wp-content/uploads/2013/03/icon_stairs.jpg\" alt=\"service_THUMB2\" width=\"72\" height=\"72\" /></a>STAIRS</h5>\r\n<p>Keep your home safe from spills and accidents by repairing and maintaining your stairs<br />\r\n<a title=\"Stairs\" href=\"/stairs/\">Explore <span style=\"color: #f99d32;\"><strong>&gt;</strong></span></a></p>'),(2280,1010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2017/02/img2b.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img2b-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:\"img2b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:17:\"img2b-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(1786,32,'hefo_after','0'),(1788,40,'hefo_after','0'),(1791,599,'hefo_before','0'),(1792,599,'hefo_after','0'),(1796,260,'hefo_after','0'),(1800,672,'hefo_after','0'),(1804,231,'hefo_after','0'),(1810,782,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:45:\"[yname] <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:176:\"From: [yname] <[email]>\nPhone: [phone]\n\nMessage Body:\n[message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1028,480,'_wp_attachment_image_alt','room before remodeling'),(1029,481,'_wp_attachment_image_alt','ceiling before remodeling'),(1030,482,'_wp_attachment_image_alt','finished living room remodeling'),(1484,231,'_yoast_wpseo_title','When you need new shingles call Chicagoland Remodeling!'),(1485,231,'_yoast_wpseo_metadesc','Looking for a top rated and reliable roofing company to replace your shingles? Call Chicagoland Remodeling. We specialize in roofing and roof repairs; fast and affordable quality shingle installation. Call us today for a free estimate'),(1486,231,'_yoast_wpseo_metakeywords','Chicago remodeling, Chicagoland remodeling, shingle repair, shingle replacement, shingle styles, quality shingles, Chicago roofer'),(1040,514,'_edit_last','1'),(1041,514,'_edit_lock','1364082596:1'),(1042,514,'_thumbnail_id','475'),(1043,514,'_secondary_html_188','<p><img class=\"alignnone size-full wp-image-492\" style=\"font-size: 12px; line-height: 18px;\" alt=\"Roofing Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_1.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-493\" alt=\"Roofing Before\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_2.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-494\" alt=\"Roofing After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_3.jpg\" width=\"300\" height=\"200\" /></p>\r\n<hr />\r\n<p><img class=\"alignnone size-full wp-image-492\" style=\"font-size: 12px; line-height: 18px;\" alt=\"Roofing After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_4.jpg\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-493\" alt=\"Roofing After\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_5.jpg\" width=\"300\" height=\"200\" /></p>'),(1048,517,'_edit_last','1'),(1049,517,'_edit_lock','1365009443:1'),(1050,517,'_thumbnail_id','476'),(1051,517,'_secondary_html_188','<p><img class=\"alignnone size-full wp-image-497\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_1.jpg\" alt=\"Roofing Before\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-498\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_2.jpg\" alt=\"Roofing Install\" width=\"300\" height=\"200\" /><img class=\"alignnone size-full wp-image-499\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_3.jpg\" alt=\"Roofing Install\" width=\"300\" height=\"200\" /></p>\r\n<hr />\r\n<p><img class=\"alignnone size-full wp-image-497\" src=\"http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_4.jpg\" alt=\"Roofing After\" width=\"300\" height=\"200\" /></p>'),(1058,71,'_edit_lock','1360174216:1'),(1087,539,'_menu_item_type','post_type'),(1088,539,'_menu_item_menu_item_parent','0'),(1089,539,'_menu_item_object_id','8'),(1090,539,'_menu_item_object','page'),(1091,539,'_menu_item_target',''),(1092,539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1093,539,'_menu_item_xfn',''),(1094,539,'_menu_item_url',''),(1211,626,'_wp_attached_file','2013/03/icon_chimney.jpg'),(1212,626,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:24:\"2013/03/icon_chimney.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1213,627,'_wp_attached_file','2013/03/icon_decks.jpg'),(1214,627,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:22:\"2013/03/icon_decks.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1215,628,'_wp_attached_file','2013/03/icon_diningRoom.jpg'),(1216,628,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:27:\"2013/03/icon_diningRoom.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1217,629,'_wp_attached_file','2013/03/icon_familyRoom.jpg'),(1218,629,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:27:\"2013/03/icon_familyRoom.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1219,630,'_wp_attached_file','2013/03/icon_gutters.jpg'),(1220,630,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:24:\"2013/03/icon_gutters.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1221,631,'_wp_attached_file','2013/03/icon_kitchens.jpg'),(1222,631,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2013/03/icon_kitchens.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1223,632,'_wp_attached_file','2013/03/icon_officesCommercial.jpg'),(1224,632,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:34:\"2013/03/icon_officesCommercial.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1225,633,'_wp_attached_file','2013/03/icon_paintingIndoor.jpg'),(1226,633,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:31:\"2013/03/icon_paintingIndoor.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1227,634,'_wp_attached_file','2013/03/icon_paintingOutdoor.jpg'),(1228,634,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:32:\"2013/03/icon_paintingOutdoor.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1229,635,'_wp_attached_file','2013/03/icon_patios.jpg'),(1230,635,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2013/03/icon_patios.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1231,636,'_wp_attached_file','2013/03/icon_roofing.jpg'),(1232,636,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:24:\"2013/03/icon_roofing.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1233,637,'_wp_attached_file','2013/03/icon_shingles.jpg'),(1234,637,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2013/03/icon_shingles.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1235,638,'_wp_attached_file','2013/03/icon_stairs.jpg'),(1236,638,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2013/03/icon_stairs.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1237,639,'_wp_attached_file','2013/03/icon_windows.jpg'),(1238,639,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:24:\"2013/03/icon_windows.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1291,672,'_edit_last','1'),(1292,672,'_edit_lock','1612439136:1'),(1289,671,'_wp_attached_file','2013/03/basements.jpg'),(1290,671,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:21:\"2013/03/basements.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1295,676,'_wp_attached_file','2013/03/officeCommercial.jpg'),(1296,676,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:28:\"2013/03/officeCommercial.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1328,599,'_thumbnail_id','1017'),(1331,672,'_thumbnail_id','1127'),(1356,703,'_edit_last','1'),(1357,703,'_edit_lock','1496410176:1'),(1358,703,'_wp_page_template','default'),(1359,705,'_edit_last','1'),(1360,705,'_edit_lock','1496410186:1'),(1361,705,'_wp_page_template','default'),(1408,517,'_yoast_wpseo_opengraph-description',''),(1409,517,'_yoast_wpseo_google-plus-description',''),(1467,32,'_yoast_wpseo_google-plus-description',''),(1787,40,'hefo_before','0'),(1443,8,'_yoast_wpseo_title','Home'),(120344,8,'_yoast_wpseo_estimated-reading-time-minutes','10'),(1445,8,'_yoast_wpseo_metakeywords','Chicago home remodeling, Chicagoland basement remodeling, kitchen remodel, cabinets, Chicago roofer, hiring a roofer, home repairs, roof replacement, Chicago home repair estimates'),(1454,8,'_yoast_wpseo_google-plus-description',''),(1456,32,'_yoast_wpseo_title','About Us'),(120393,32,'_yoast_wpseo_estimated-reading-time-minutes','3'),(120395,979,'second_featured_img',''),(120396,979,'_yoast_wpseo_estimated-reading-time-minutes',''),(120397,910,'slide_template','default'),(120398,910,'second_featured_img',''),(1458,32,'_yoast_wpseo_metakeywords','Experienced Chicago home remodeling, Chicagoland basement remodeling, kitchen remodel, cabinets, Chicago roofer, hiring a roofer, home repairs, roof replacement, Chicago home repair estimates'),(1495,231,'_yoast_wpseo_google-plus-description',''),(1499,234,'_yoast_wpseo_title','When you need a new chimney you need Chicagoland Remodeling!'),(1500,234,'_yoast_wpseo_metadesc','Chicagoland Remodeling is a top rated and reliable roofing and chimney repair and installation company. Fast and affordable quality work. Call us today for a free estimate.'),(1501,234,'_yoast_wpseo_metakeywords','Chicago remodeling, Chicagoland remodeling, cracked chimney repairs, free chimney inspection, flashing replacement'),(1509,234,'_yoast_wpseo_opengraph-description',''),(1510,234,'_yoast_wpseo_google-plus-description',''),(1514,254,'_yoast_wpseo_title','Fast and reliable gutter and downspout replacement in Chicagoland!'),(1515,254,'_yoast_wpseo_metadesc','Chicagoland Remodeling is a top rated and reliable home remodeling and repair company. Fast and affordable quality work including gutters and downspouts. Call us today for a free estimate.'),(1516,254,'_yoast_wpseo_metakeywords','Chicago remodeling, Chicagoland remodeling, replacement gutters, replacement downspouts, gutter installation'),(1524,254,'_yoast_wpseo_opengraph-description',''),(1525,254,'_yoast_wpseo_google-plus-description',''),(2241,959,'_right_block','field_589ceaaf999e4'),(1809,782,'_form','<div class=\"contact-form-box\"><h4>QUICK QUOTE</h4>\n<div class=\"contact-form-input\">[text* yname placeholder \"Name *\"] </div>\n<div class=\"contact-form-input\">[email* email placeholder \"Email *\"]</div>\n<div class=\"contact-form-input\">[text* phone placeholder \"Phone *\"] </div>\n<div class=\"contact-form-textarea\">[textarea message x6 placeholder \"Message \" ]</div>\n\n<div class=\"wpcf7-submit-wrap\">\n[submit \"Submit\"]\n</div>\n</div>'),(2240,959,'right_block',''),(1542,233,'_yoast_wpseo_title','Chicagoland Remodeling for new and replacement soffits and fascia'),(1543,233,'_yoast_wpseo_metadesc','Chicagoland Remodeling is a top rated and reliable window and siding remodeling and repair company. Fast and affordable quality soffits and fascia. Call us today for a free estimate.'),(1544,233,'_yoast_wpseo_metakeywords','Replacement soffits, fascia, roofing, roofing repair'),(1552,233,'_yoast_wpseo_opengraph-description',''),(1553,233,'_yoast_wpseo_google-plus-description',''),(1785,32,'hefo_before','0'),(1570,260,'_yoast_wpseo_title','Create a new patio with Chicagoland Remodeling'),(1571,260,'_yoast_wpseo_metadesc','Chicagoland Remodeling creates and repairs patios across the Chicagoland area. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.'),(1572,260,'_yoast_wpseo_metakeywords','Patio repair, Chicago decks and patios, new patios, Chicago patios, free estimates, code violation, code violations, patio inspections, decks replacements, inspections'),(1799,672,'hefo_before','0'),(1581,260,'_yoast_wpseo_google-plus-description',''),(1585,241,'_yoast_wpseo_title','Chicagoland Remodeling â a top painting contractor, for all your interior and exterior house painting needs.'),(1586,241,'_yoast_wpseo_metadesc','Top quality interior and exterior painting by Chicagoland Remodeling. Drywall repair and wallpaper also available. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.'),(1587,241,'_yoast_wpseo_metakeywords','Chicago painter, quality interior painting, drywall repair, Chicago painting contractor, exterior painting, wallpaper hanging, deck painting, fence painter, Chicagoland Remodeling painter'),(1595,241,'_yoast_wpseo_opengraph-description',''),(1596,241,'_yoast_wpseo_google-plus-description',''),(2430,1139,'_wp_attached_file','2017/04/DSC05754.jpg'),(2431,1139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2017/04/DSC05754.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC05754-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC05754-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"DSC05754-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC05754-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:21:\"DSC05754-1200x750.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"DSC05754-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC05754-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(1613,599,'_yoast_wpseo_title','Basement'),(120442,7954,'second_featured_img',NULL),(120423,599,'_yoast_wpseo_estimated-reading-time-minutes','2'),(120426,672,'slide_template','default'),(120427,672,'second_featured_img',NULL),(1615,599,'_yoast_wpseo_metakeywords','Chicagoland Remodeling basement painter, Chicago home remodeling, Chicagoland basement remodeling, basement remodel, basement renovation, basement design'),(1795,260,'hefo_before','0'),(1624,599,'_yoast_wpseo_google-plus-description',''),(1641,250,'_yoast_wpseo_title','Bedrooms'),(120441,7954,'slide_template','default'),(120433,250,'_yoast_wpseo_estimated-reading-time-minutes','1'),(120436,8170,'hefo_before','0'),(120437,8170,'hefo_after','0'),(1643,250,'_yoast_wpseo_metakeywords','Chicagoland Remodeling bedroom. Chicago bedroom remodeling, Chicago bedroom space, remodeling, bedroom renovation, bedroom design'),(2018,250,'_yoast_wpseo_content_score','90'),(1652,250,'_yoast_wpseo_google-plus-description',''),(1656,239,'_yoast_wpseo_title','Build or renovate your dining room to create a family eating space'),(1657,239,'_yoast_wpseo_metadesc','Top quality dining room renovation and remodeling by the quality, licensed craftsmen at Chicagoland Remodeling. Create a new eating space for your family. Call us today for a free estimate.'),(1658,239,'_yoast_wpseo_metakeywords','Chicagoland Remodeling dining room , Chicago dining room remodeling, Chicago dining room remodeling, dining room remodel, dining room renovation, dining room design'),(1666,239,'_yoast_wpseo_opengraph-description',''),(1667,239,'_yoast_wpseo_google-plus-description',''),(1671,243,'_yoast_wpseo_title','Expand your existing family room or create a family room addition'),(1672,243,'_yoast_wpseo_metadesc','Create a space for your family by adding a family room to your home. Renovate or remodel your home to include a new room for your family. Call us today for a free estimate.'),(1673,243,'_yoast_wpseo_metakeywords','Chicago family room remodeling, Chicagoland family room remodeling, family room renovation, family room design'),(1681,243,'_yoast_wpseo_opengraph-description',''),(1682,243,'_yoast_wpseo_google-plus-description',''),(1686,672,'_yoast_wpseo_title','Commercial Spaces'),(120428,672,'_yoast_wpseo_estimated-reading-time-minutes','1'),(120431,250,'slide_template','default'),(120432,250,'second_featured_img',NULL),(1688,672,'_yoast_wpseo_metakeywords','Chicago office remodeling, Chicagoland commercial remodeling, Quality office space design, Free estimate'),(1803,231,'hefo_before','0'),(1697,672,'_yoast_wpseo_google-plus-description',''),(1705,264,'_yoast_wpseo_title','Keep your home safe by repairing and maintaining your stairs'),(1706,264,'_yoast_wpseo_metadesc','Donât let an accident happen on your stairs! Top quality interior and exterior stair repair by Chicagoland Remodeling. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.'),(1707,264,'_yoast_wpseo_metakeywords','Chicago stairs, stair code violations, code repairs, interior or exterior stairs, drywall repair, Chicagoland Remodeling stair repair and remodeling'),(1715,264,'_yoast_wpseo_opengraph-description',''),(1716,264,'_yoast_wpseo_google-plus-description',''),(1991,44,'_yoast_wpseo_title','Contact Us'),(1729,44,'_yoast_wpseo_google-plus-description',''),(1910,819,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1909,819,'_menu_item_target',''),(1908,819,'_menu_item_object','custom'),(1907,819,'_menu_item_object_id','819'),(1906,819,'_menu_item_menu_item_parent','52'),(2159,964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:673;s:6:\"height\";i:401;s:4:\"file\";s:20:\"2017/02/bathroom.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"bathroom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"bathroom-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"bathroom-250x149.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"bathroom-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2157,959,'_wp_old_slug','kitchen'),(2158,964,'_wp_attached_file','2017/02/bathroom.jpg'),(1905,819,'_menu_item_type','custom'),(1903,818,'_menu_item_url','/basements/'),(1902,818,'_menu_item_xfn',''),(1901,818,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1900,818,'_menu_item_target',''),(1899,818,'_menu_item_object','custom'),(1898,818,'_menu_item_object_id','818'),(1897,818,'_menu_item_menu_item_parent','52'),(1896,818,'_menu_item_type','custom'),(1811,782,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1812,782,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1813,782,'_additional_settings',''),(1814,782,'_locale','en_US'),(1815,783,'_wp_attached_file','2016/12/basement_remodeling.jpg'),(1816,783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:31:\"2016/12/basement_remodeling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"basement_remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:31:\"basement_remodeling-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:31:\"basement_remodeling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"basement_remodeling-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1817,784,'_wp_attached_file','2016/12/bathroom_remodeling.jpg'),(1818,784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:31:\"2016/12/bathroom_remodeling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"bathroom_remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:31:\"bathroom_remodeling-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:31:\"bathroom_remodeling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"bathroom_remodeling-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1819,785,'_wp_attached_file','2016/12/bedroom.jpg'),(1820,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:19:\"2016/12/bedroom.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bedroom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:19:\"bedroom-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"bedroom-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"bedroom-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1821,786,'_wp_attached_file','2016/12/commercial_remodeling.jpg'),(1822,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:33:\"2016/12/commercial_remodeling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"commercial_remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:33:\"commercial_remodeling-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:33:\"commercial_remodeling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"commercial_remodeling-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1823,787,'_wp_attached_file','2016/12/dining_room.jpg'),(1824,787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:23:\"2016/12/dining_room.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"dining_room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:23:\"dining_room-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"dining_room-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"dining_room-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1825,788,'_wp_attached_file','2016/12/family_room.jpg'),(1826,788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:23:\"2016/12/family_room.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"family_room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:23:\"family_room-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"family_room-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"family_room-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1827,789,'_wp_attached_file','2016/12/kitchen_remodeling.jpg'),(1828,789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:30:\"2016/12/kitchen_remodeling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"kitchen_remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:30:\"kitchen_remodeling-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:30:\"kitchen_remodeling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"kitchen_remodeling-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1829,790,'_wp_attached_file','2016/12/painting.jpg'),(1830,790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:20:\"2016/12/painting.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"painting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:20:\"painting-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"painting-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"painting-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1831,791,'_wp_attached_file','2016/12/stairs.jpg'),(1832,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:18:\"2016/12/stairs.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"stairs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:18:\"stairs-293x288.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"stairs-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"stairs-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1833,8,'hefo_before','0'),(1834,8,'hefo_after','0'),(2497,788,'_wp_attachment_image_alt','living room project'),(2498,786,'_wp_attachment_image_alt','office remodeling project'),(2499,785,'_wp_attachment_image_alt','homely bedroom remodeling project'),(2500,784,'_wp_attachment_image_alt','bathroom after remodeling'),(2501,783,'_wp_attachment_image_alt','basement remodeling project'),(2502,919,'_wp_attachment_image_alt','bathroom with grey tiles'),(2503,918,'_wp_attachment_image_alt','kitchen and dining room remodeling project'),(2504,1230,'_wp_attached_file','2017/07/quality-badge.jpg'),(2505,1230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:25:\"2017/07/quality-badge.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"quality-badge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(2506,1230,'_edit_lock','1500392024:1'),(2548,1330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:20:\"2017/10/settings.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"settings-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:20:\"settings-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"settings-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"settings-512x257.png\";s:5:\"width\";i:512;s:6:\"height\";i:257;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:{}}}'),(2547,1330,'_wp_attached_file','2017/10/settings.png'),(1836,799,'_edit_last','1'),(1837,799,'_edit_lock','1548928078:1'),(1838,799,'form_id','799'),(1839,799,'form_style','{\"layout\":\"form-vertical\",\"theme\":\"wr-style-light\",\"themes_style\":{\"light\":\"{\\\"background_color\\\":\\\"#5987c6\\\",\\\"background_active_color\\\":\\\"#729bd4\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#5987c6\\\",\\\"border_active_color\\\":\\\"#5987c6\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"5\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#333333\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#ffffff\\\",\\\"field_border_color\\\":\\\"#cccccc\\\",\\\"field_shadow_color\\\":\\\"#ffffff\\\",\\\"field_text_color\\\":\\\"#000fff\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\",\"dark\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#444444\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#666666\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#c6c6c6\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#000000\\\",\\\"field_border_color\\\":\\\"#111111\\\",\\\"field_shadow_color\\\":\\\"#000000\\\",\\\"field_text_color\\\":\\\"#333333\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\"},\"themes\":[\"light\",\"dark\"],\"background_color\":\"#5987c6\",\"background_active_color\":\"#729bd4\",\"border_thickness\":\"0\",\"border_color\":\"#5987c6\",\"border_active_color\":\"#5987c6\",\"rounded_corner_radius\":\"0\",\"padding_space\":\"5\",\"margin_space\":\"0\",\"text_color\":\"#333333\",\"font_type\":\"Verdana, Geneva, sans-serif\",\"font_size\":\"14\",\"field_background_color\":\"#ffffff\",\"field_border_color\":\"#cccccc\",\"field_shadow_color\":\"#ffffff\",\"field_text_color\":\"#000fff\",\"message_error_background_color\":\"#b94a48\",\"message_error_text_color\":\"#ffffff\",\"help_text_type\":\"tooltip\",\"button_position\":\"btn-toolbar\",\"button_submit_color\":\"btn\",\"button_reset_color\":\"btn\",\"button_prev_color\":\"btn\",\"button_next_color\":\"btn\",\"custom_css\":\"\"}'),(1840,799,'form_settings','{\"form_captcha\":\"\",\"form_btn_next_text\":\"Next\",\"form_btn_prev_text\":\"Prev\",\"form_btn_submit_text\":\"Submit\",\"form_btn_reset_text\":\"Reset\",\"form_state_btn_reset_text\":\"No\"}'),(1841,799,'form_type','1'),(1842,799,'list_email_send_to','a:1:{i:0;s:35:\"chicagolandremodeling@strony123.com\";}'),(1843,799,'list_email_send_to_submitter',''),(1844,799,'content_email_send_to','a:5:{s:4:\"from\";s:27:\"publishing@infosystrade.com\";s:5:\"reply\";s:0:\"\";s:7:\"subject\";s:35:\"QUICK QUOTE - chicagolandremodeling\";s:7:\"message\";s:303:\"<table border=\"1\" style=\"width: 745.455px;\"><tbody><tr><td>Name:</td><td>{$single_line_text_16136509717_24_40}</td></tr><tr><td>email:</td><td>{$email}<br></td></tr><tr><td>Phone:</td><td>{$single_line_text_77489715017_26_4}<br></td></tr><tr><td>Message:</td><td>{$message}<br></td></tr></tbody></table>\";s:6:\"attach\";a:0:{}}'),(1845,799,'content_email_send_to_submitter','a:5:{s:4:\"from\";s:0:\"\";s:5:\"reply\";s:0:\"\";s:7:\"subject\";s:0:\"\";s:7:\"message\";s:0:\"\";s:6:\"attach\";a:0:{}}'),(1846,799,'form_post_action_data','a:6:{s:15:\"contactform_url\";s:0:\"\";s:24:\"contactform_show_message\";s:233:\"<div><div><div><div><div><div><div><div><div><div><div><div><div><div><div><div><div><div><div>Thanks for your submit! </div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>\";s:4:\"post\";s:3:\"672\";s:4:\"page\";s:3:\"886\";s:5:\"slide\";s:3:\"816\";s:8:\"category\";s:2:\"11\";}'),(1847,799,'action_save_submissions','Yes'),(1848,799,'form_post_action','page'),(1849,799,'mailchimp_settings','{\"use\":\"no\",\"apikey\":\"\",\"lists\":[]}'),(1850,34,'hefo_before','0'),(1851,34,'hefo_after','0'),(1912,819,'_menu_item_url','/bedrooms'),(1888,816,'_edit_last','1'),(1887,816,'_thumbnail_id','919'),(1881,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:19:\"2017/01/slider1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slider1-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:\"slider1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slider1-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"slider1-250x125.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"slider1-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:11:\"Lance Selgo\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1387549820;s:9:\"copyright\";s:34:\"©2013 Unique Exposure Photography\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:41:\"Eckert-4342SanCarlosDrive-Dallas-TX-75205\";s:11:\"orientation\";i:0;}}'),(1882,815,'_wp_attached_file','2017/01/slider2.jpg'),(1883,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:19:\"2017/01/slider2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slider2-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:\"slider2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slider2-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"slider2-250x125.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"slider2-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1242416180;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1884,813,'_thumbnail_id','918'),(1862,810,'_wp_attached_file','2012/11/slide-white.jpg'),(1863,810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2012/11/slide-white.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"slide-white-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:\"slide-white-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"slide-white-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:23:\"slide-white-908x288.jpg\";s:5:\"width\";i:908;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"slide-white-250x125.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide-white-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1242416180;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1885,813,'_edit_last','1'),(1886,813,'_edit_lock','1484819856:1'),(1880,814,'_wp_attached_file','2017/01/slider1.jpg'),(1923,8,'_yoast_wpseo_content_score','30'),(1924,828,'_wp_attached_file','2012/11/g.png'),(1925,828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:13:\"2012/11/g.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1926,835,'_wp_attached_file','2012/11/square-facebook-512.png'),(1927,835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:31:\"2012/11/square-facebook-512.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"square-facebook-512-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:\"square-facebook-512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:31:\"square-facebook-512-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"square-facebook-512-512x257.png\";s:5:\"width\";i:512;s:6:\"height\";i:257;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:{}}}'),(1928,849,'_wp_attached_file','2012/11/5540543936_423e37dae4_b.jpg'),(1929,849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:35:\"2012/11/5540543936_423e37dae4_b.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"5540543936_423e37dae4_b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"5540543936_423e37dae4_b-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:35:\"5540543936_423e37dae4_b-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:36:\"5540543936_423e37dae4_b-1024x960.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:35:\"5540543936_423e37dae4_b-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"5540543936_423e37dae4_b-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(1930,850,'_wp_attached_file','2012/11/MapQuest_Tall_Logo_Large.jpg'),(1931,850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:371;s:4:\"file\";s:36:\"2012/11/MapQuest_Tall_Logo_Large.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"MapQuest_Tall_Logo_Large-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"MapQuest_Tall_Logo_Large-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:36:\"MapQuest_Tall_Logo_Large-250x290.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"MapQuest_Tall_Logo_Large-320x257.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:257;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:{}}}'),(1932,858,'_wp_attached_file','2012/11/badgem-1.png'),(1933,858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:193;s:4:\"file\";s:20:\"2012/11/badgem-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"badgem-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:20:\"badgem-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"badgem-1-250x104.png\";s:5:\"width\";i:250;s:6:\"height\";i:104;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:{}}}'),(1934,860,'_wp_attached_file','2012/11/3654978-50x50.png'),(1935,860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2012/11/3654978-50x50.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1936,862,'_wp_attached_file','2012/11/badgem-1-1.png'),(1937,862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:193;s:4:\"file\";s:22:\"2012/11/badgem-1-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"badgem-1-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:22:\"badgem-1-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:22:\"badgem-1-1-250x104.png\";s:5:\"width\";i:250;s:6:\"height\";i:104;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:{}}}'),(1938,865,'_wp_attached_file','2012/11/SmithProBadge.png'),(1939,865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2012/11/SmithProBadge.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1940,872,'_wp_attached_file','2012/11/bannnn.png'),(1941,872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1189;s:6:\"height\";i:357;s:4:\"file\";s:18:\"2012/11/bannnn.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bannnn-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:17:\"bannnn-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"bannnn-768x231.png\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"bannnn-1024x307.png\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:17:\"bannnn-250x75.png\";s:5:\"width\";i:250;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"bannnn-612x257.png\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(1942,880,'_wp_attached_file','2012/11/angie-2015.png'),(1943,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:437;s:4:\"file\";s:22:\"2012/11/angie-2015.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"angie-2015-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"angie-2015-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:22:\"angie-2015-250x207.png\";s:5:\"width\";i:250;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"angie-2015-529x257.png\";s:5:\"width\";i:529;s:6:\"height\";i:257;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:{}}}'),(1944,886,'_edit_last','1'),(1945,886,'_edit_lock','1612380218:1'),(1946,886,'_wp_page_template','default'),(1947,886,'hefo_before','0'),(1948,886,'hefo_after','0'),(1949,886,'_yoast_wpseo_content_score','90'),(119806,7939,'_yoast_wpseo_primary_category','20'),(120455,7939,'ulm_custom_get_post_template','single_fullwidth.php'),(120400,886,'_yoast_wpseo_estimated-reading-time-minutes',''),(119804,7939,'hefo_after','0'),(119805,7939,'_yoast_wpseo_content_score','90'),(1977,886,'_yoast_wpseo_title','Thank You!'),(119736,959,'_yoast_wpseo_title','Kitchen'),(1980,32,'_yoast_wpseo_content_score','30'),(1981,34,'_yoast_wpseo_title','Services'),(120403,34,'_yoast_wpseo_estimated-reading-time-minutes',''),(1983,40,'_yoast_wpseo_title','Testimonials'),(1984,40,'_yoast_wpseo_content_score','30'),(119908,8010,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.231624830903353;s:5:\"bytes\";i:15456;s:11:\"size_before\";i:66530;s:10:\"size_after\";i:51074;s:4:\"time\";d:1.1900000000000002;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:42.65;s:5:\"bytes\";i:4148;s:11:\"size_before\";i:9725;s:10:\"size_after\";i:5577;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.03;s:5:\"bytes\";i:6596;s:11:\"size_before\";i:32934;s:10:\"size_after\";i:26338;s:4:\"time\";d:1.08;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.74;s:5:\"bytes\";i:4712;s:11:\"size_before\";i:23871;s:10:\"size_after\";i:19159;s:4:\"time\";d:0.08;}}}'),(1989,44,'hefo_before','0'),(1990,44,'hefo_after','0'),(120405,46,'slide_template','default'),(1992,44,'_yoast_wpseo_content_score','60'),(1993,46,'hefo_before','0'),(1994,46,'hefo_after','0'),(120407,46,'_yoast_wpseo_estimated-reading-time-minutes',''),(1996,46,'_yoast_wpseo_title','Log in'),(1997,703,'hefo_before','0'),(1998,703,'hefo_after','0'),(1999,703,'_yoast_wpseo_title','Connect Error | Chicagoland Remodeling - Home Remodeling Contractors Chicago'),(2000,703,'_yoast_wpseo_content_score','30'),(2001,705,'hefo_before','0'),(2002,705,'hefo_after','0'),(2003,705,'_yoast_wpseo_title','Contact Succes | Chicagoland Remodeling - Home Remodeling Contractors Chicago'),(2004,705,'_yoast_wpseo_content_score','90'),(2020,910,'_edit_lock','1612378881:1'),(2007,599,'_yoast_wpseo_content_score','30'),(2008,599,'_yoast_wpseo_primary_category',''),(2011,672,'_yoast_wpseo_primary_category',''),(2012,672,'_yoast_wpseo_content_score','90'),(2019,910,'_edit_last','1'),(2015,250,'hefo_before','0'),(2016,250,'hefo_after','0'),(2017,250,'_yoast_wpseo_primary_category',''),(2021,910,'_wp_page_template','default'),(2022,910,'hefo_before','0'),(2023,910,'hefo_after','0'),(2024,910,'_yoast_wpseo_content_score','30'),(2034,918,'_wp_attached_file','2017/01/slider1-2.jpg'),(2035,918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2017/01/slider1-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"slider1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"slider1-2-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"slider1-2-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"slider1-2-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"slider1-2-250x98.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"slider1-2-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:11:\"Lance Selgo\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1387549820\";s:9:\"copyright\";s:34:\"©2013 Unique Exposure Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:41:\"Eckert-4342SanCarlosDrive-Dallas-TX-75205\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2036,919,'_wp_attached_file','2017/01/slider2-2.jpg'),(2037,919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2017/01/slider2-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"slider2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"slider2-2-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"slider2-2-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"slider2-2-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"slider2-2-250x98.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"slider2-2-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:\"1242416180\";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:{}}}'),(2038,816,'_yoast_wpseo_primary_slideshow',''),(2039,816,'_yoast_wpseo_content_score','30'),(2040,813,'_yoast_wpseo_primary_slideshow',''),(2041,813,'_yoast_wpseo_content_score','30'),(2042,921,'_edit_last','1'),(2043,921,'_edit_lock','1484832361:1'),(2044,921,'_yoast_wpseo_content_score','30'),(2045,922,'_edit_last','1'),(2046,922,'_edit_lock','1484832477:1'),(2047,922,'_yoast_wpseo_content_score','30'),(2048,923,'_edit_last','1'),(2049,923,'_edit_lock','1484832592:1'),(2050,923,'_yoast_wpseo_content_score','60'),(2051,924,'_edit_last','1'),(2052,924,'_edit_lock','1484832687:1'),(2053,924,'_yoast_wpseo_content_score','60'),(2054,925,'_edit_last','1'),(2055,925,'_edit_lock','1485880206:1'),(2056,925,'_yoast_wpseo_content_score','60'),(2057,926,'_edit_last','1'),(2058,926,'_edit_lock','1484833819:1'),(2059,926,'_yoast_wpseo_content_score','30'),(2060,927,'_edit_last','1'),(2061,927,'_edit_lock','1484834048:1'),(2062,927,'_yoast_wpseo_content_score','30'),(2063,928,'_edit_last','1'),(2064,928,'_edit_lock','1487843103:1'),(2065,928,'_yoast_wpseo_content_score','30'),(2066,929,'_edit_last','1'),(2067,929,'_edit_lock','1484835102:1'),(2068,929,'_yoast_wpseo_content_score','30'),(119813,7946,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.7586074466655144;s:5:\"bytes\";i:7183;s:11:\"size_before\";i:260385;s:10:\"size_after\";i:253202;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:4.9699999999999998;s:5:\"bytes\";i:267;s:11:\"size_before\";i:5376;s:10:\"size_after\";i:5109;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6499999999999999;s:5:\"bytes\";i:359;s:11:\"size_before\";i:9832;s:10:\"size_after\";i:9473;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.96;s:5:\"bytes\";i:747;s:11:\"size_before\";i:38117;s:10:\"size_after\";i:37370;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000001;s:5:\"bytes\";i:1225;s:11:\"size_before\";i:58922;s:10:\"size_after\";i:57697;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2200000000000002;s:5:\"bytes\";i:3838;s:11:\"size_before\";i:119269;s:10:\"size_after\";i:115431;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8599999999999999;s:5:\"bytes\";i:292;s:11:\"size_before\";i:7570;s:10:\"size_after\";i:7278;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1400000000000001;s:5:\"bytes\";i:455;s:11:\"size_before\";i:21299;s:10:\"size_after\";i:20844;s:4:\"time\";d:0.02;}}}'),(2078,933,'_wp_attached_file','2017/01/ico.png'),(2079,933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:15:\"2017/01/ico.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2080,934,'_wp_attached_file','2017/01/cropped-ico.png'),(2081,934,'_wp_attachment_context','site-icon'),(2082,934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:23:\"2017/01/cropped-ico.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-ico-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"cropped-ico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"cropped-ico-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"cropped-ico-512x257.png\";s:5:\"width\";i:512;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:23:\"cropped-ico-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:23:\"cropped-ico-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:23:\"cropped-ico-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:21:\"cropped-ico-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(2352,1090,'_wp_attached_file','2017/02/living.jpg'),(2085,8,'_yoast_wpseo_focuskw_text_input','remodeling contractors chicago'),(2086,8,'_yoast_wpseo_focuskw','remodeling contractors chicago'),(2087,8,'_yoast_wpseo_linkdex','50'),(2433,1140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:369;s:6:\"height\";i:233;s:4:\"file\";s:21:\"2017/04/service-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"service-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"service-2-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:21:\"service-2-250x158.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:158;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:{}}}'),(2432,1140,'_wp_attached_file','2017/04/service-2.jpg'),(2111,956,'_edit_lock','1612380950:1'),(2117,956,'_thumbnail_id','964'),(2113,956,'hefo_before','0'),(2119,958,'_wp_attached_file','2017/02/bathroom_home.jpg'),(2116,956,'_yoast_wpseo_primary_category',''),(2109,599,'_wp_old_slug','basements2'),(2114,956,'hefo_after','0'),(2115,956,'_yoast_wpseo_content_score','60'),(2110,956,'_edit_last','1'),(2120,958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:25:\"2017/02/bathroom_home.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bathroom_home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bathroom_home-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:24:\"bathroom_home-250x88.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"bathroom_home-612x216.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:216;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:{}}}'),(2125,959,'_edit_last','1'),(2126,959,'_edit_lock','1612381358:1'),(2127,960,'_wp_attached_file','2017/02/kitchen_home.jpg'),(2128,960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:216;s:4:\"file\";s:24:\"2017/02/kitchen_home.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"kitchen_home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"kitchen_home-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"kitchen_home-250x88.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"kitchen_home-612x216.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:216;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:{}}}'),(2129,959,'_thumbnail_id','965'),(2131,959,'hefo_before','0'),(2132,959,'hefo_after','0'),(2133,959,'_yoast_wpseo_content_score','90'),(2134,959,'_yoast_wpseo_primary_category',''),(2138,962,'_menu_item_type','custom'),(2139,962,'_menu_item_menu_item_parent','52'),(2140,962,'_menu_item_object_id','962'),(2141,962,'_menu_item_object','custom'),(2142,962,'_menu_item_target',''),(2143,962,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2144,962,'_menu_item_xfn',''),(2145,962,'_menu_item_url','/kitchen-remodeling/'),(2147,963,'_menu_item_type','custom'),(2148,963,'_menu_item_menu_item_parent','52'),(2149,963,'_menu_item_object_id','963'),(2150,963,'_menu_item_object','custom'),(2151,963,'_menu_item_target',''),(2152,963,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2153,963,'_menu_item_xfn',''),(2154,963,'_menu_item_url','/bathroom-remodeling/'),(2160,965,'_wp_attached_file','2017/02/kitchen.jpg'),(2161,965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:673;s:6:\"height\";i:401;s:4:\"file\";s:19:\"2017/02/kitchen.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"kitchen-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:\"kitchen-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"kitchen-250x149.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"kitchen-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2176,979,'_edit_lock','1612464849:1'),(2175,979,'_edit_last','1'),(2177,979,'_wp_page_template','default'),(2178,979,'hefo_before','0'),(2179,979,'hefo_after','0'),(2180,979,'_yoast_wpseo_content_score','30'),(2181,981,'_edit_last','1'),(2182,981,'_wp_page_template','default'),(2183,981,'hefo_before','0'),(2184,981,'hefo_after','0'),(2185,981,'_yoast_wpseo_content_score','30'),(2186,981,'_edit_lock','1612377398:1'),(2187,983,'_edit_last','1'),(2188,983,'_wp_page_template','default'),(2189,983,'hefo_before','0'),(2190,983,'hefo_after','0'),(2191,983,'_yoast_wpseo_content_score','30'),(2192,983,'_edit_lock','1612377482:1'),(2193,985,'_menu_item_type','custom'),(2194,985,'_menu_item_menu_item_parent','0'),(2195,985,'_menu_item_object_id','985'),(2196,985,'_menu_item_object','custom'),(2197,985,'_menu_item_target',''),(2198,985,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2199,985,'_menu_item_xfn',''),(2200,985,'_menu_item_url','https://chicagolandremodeling.com/gallery/'),(2202,986,'_menu_item_type','post_type'),(2203,986,'_menu_item_menu_item_parent','985'),(2204,986,'_menu_item_object_id','983'),(2205,986,'_menu_item_object','page'),(2206,986,'_menu_item_target',''),(2207,986,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2208,986,'_menu_item_xfn',''),(2209,986,'_menu_item_url',''),(2211,987,'_menu_item_type','post_type'),(2212,987,'_menu_item_menu_item_parent','985'),(2213,987,'_menu_item_object_id','981'),(2214,987,'_menu_item_object','page'),(2215,987,'_menu_item_target',''),(2216,987,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2217,987,'_menu_item_xfn',''),(2218,987,'_menu_item_url',''),(2220,988,'_menu_item_type','post_type'),(2221,988,'_menu_item_menu_item_parent','985'),(2222,988,'_menu_item_object_id','979'),(2223,988,'_menu_item_object','page'),(2224,988,'_menu_item_target',''),(2225,988,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2226,988,'_menu_item_xfn',''),(2227,988,'_menu_item_url',''),(2277,1009,'_wp_attached_file','2017/02/img1b.jpg'),(2278,1009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2017/02/img1b.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img1b-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:\"img1b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:17:\"img1b-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(2274,1007,'_wp_attached_file','2017/02/img3.jpg'),(2275,1007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2017/02/img3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"img3-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:\"img3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"img3-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(2272,1006,'_wp_attached_file','2017/02/img2.jpg'),(2273,1006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2017/02/img2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"img2-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:\"img2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"img2-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(2270,1005,'_wp_attached_file','2017/02/img1.jpg'),(2271,1005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2017/02/img1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"img1-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:\"img1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"img1-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;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:{}}}'),(2294,1029,'_edit_last','1'),(2295,1029,'_edit_lock','1487845829:1'),(2296,1030,'_edit_last','1'),(2297,1030,'_edit_lock','1487845831:1'),(2298,1030,'_yoast_wpseo_content_score','30'),(2299,1032,'_edit_last','1'),(2300,1032,'_edit_lock','1487845782:1'),(2301,1032,'_yoast_wpseo_content_score','30'),(2302,1033,'_edit_last','1'),(2303,1033,'_edit_lock','1487845781:1'),(2304,1033,'_yoast_wpseo_content_score','30'),(2305,1034,'_edit_last','1'),(2306,1034,'_edit_lock','1487845757:1'),(2307,1034,'_yoast_wpseo_content_score','60'),(2308,1035,'_edit_last','1'),(2309,1035,'_edit_lock','1487845756:1'),(2310,1035,'_yoast_wpseo_content_score','30'),(2311,1036,'_edit_last','1'),(2312,1036,'_edit_lock','1487845748:1'),(2313,1036,'_yoast_wpseo_content_score','30'),(2314,1037,'_edit_last','1'),(2315,1037,'_edit_lock','1487845747:1'),(2316,1037,'_yoast_wpseo_content_score','30'),(2317,1038,'_edit_last','1'),(2318,1038,'_edit_lock','1487845745:1'),(2319,1038,'_yoast_wpseo_content_score','60'),(2320,1039,'_edit_last','1'),(2321,1039,'_edit_lock','1487845742:1'),(2322,1039,'_yoast_wpseo_content_score','60'),(2323,1040,'_edit_last','1'),(2324,1040,'_edit_lock','1487845633:1'),(2325,1040,'_yoast_wpseo_content_score','30'),(2326,1041,'_edit_last','1'),(2327,1041,'_edit_lock','1487845844:1'),(2328,1041,'_yoast_wpseo_content_score','30'),(2329,1029,'_yoast_wpseo_content_score','60'),(2330,1043,'_edit_last','1'),(2331,1043,'_edit_lock','1487846021:1'),(2332,1043,'_yoast_wpseo_content_score','30'),(2333,1044,'_edit_last','1'),(2334,1044,'_edit_lock','1487846178:1'),(2335,1044,'_yoast_wpseo_content_score','30'),(2336,1045,'_wp_attached_file','2017/02/Kitchen-Remodeling-Orange-County-1.jpg'),(2337,1045,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:46:\"2017/02/Kitchen-Remodeling-Orange-County-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Kitchen-Remodeling-Orange-County-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Kitchen-Remodeling-Orange-County-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Kitchen-Remodeling-Orange-County-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Kitchen-Remodeling-Orange-County-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:47:\"Kitchen-Remodeling-Orange-County-1-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:46:\"Kitchen-Remodeling-Orange-County-1-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"Kitchen-Remodeling-Orange-County-1-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2339,1046,'_wp_attached_file','2017/02/18893McSweeney_after-11.jpg'),(2340,1046,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:550;s:4:\"file\";s:35:\"2017/02/18893McSweeney_after-11.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"18893McSweeney_after-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"18893McSweeney_after-11-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"18893McSweeney_after-11-768x352.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"18893McSweeney_after-11-1024x469.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:35:\"18893McSweeney_after-11-250x115.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"18893McSweeney_after-11-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2341,1047,'_wp_attached_file','2017/02/2014-11-04-kitchenremodel.jpg'),(2342,1047,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1677;s:6:\"height\";i:1145;s:4:\"file\";s:37:\"2017/02/2014-11-04-kitchenremodel.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"2014-11-04-kitchenremodel-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:37:\"2014-11-04-kitchenremodel-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"2014-11-04-kitchenremodel-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"2014-11-04-kitchenremodel-1024x699.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:38:\"2014-11-04-kitchenremodel-1677x750.jpg\";s:5:\"width\";i:1677;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:37:\"2014-11-04-kitchenremodel-250x171.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"2014-11-04-kitchenremodel-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:21:\"Chuck Collier Schmidt\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1351164615\";s:9:\"copyright\";s:4:\"2009\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2406,1127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:673;s:6:\"height\";i:401;s:4:\"file\";s:29:\"2013/03/Commercial-Spaces.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Commercial-Spaces-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:\"Commercial-Spaces-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:29:\"Commercial-Spaces-250x149.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Commercial-Spaces-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2405,1127,'_wp_attached_file','2013/03/Commercial-Spaces.jpg'),(2349,1070,'_edit_last','1'),(2350,1070,'_edit_lock','1548928078:1'),(2351,1078,'model','a:28:{s:5:\"tmpid\";s:0:\"\";s:6:\"fields\";a:0:{}s:5:\"title\";s:9:\"Form Name\";s:11:\"description\";s:35:\"Click me to change the description.\";s:4:\"lang\";s:2:\"en\";s:14:\"labelPlacement\";s:3:\"top\";s:18:\"confirmationOption\";s:4:\"text\";s:11:\"textMessage\";s:38:\"Thanks for submitting your information\";s:11:\"redirectUrl\";s:0:\"\";s:7:\"captcha\";b:0;s:11:\"noOfEntries\";s:0:\"\";s:12:\"onlySingleIP\";b:0;s:9:\"formTimer\";b:0;s:13:\"formStartTime\";N;s:11:\"formEndTime\";N;s:5:\"theme\";a:0:{}s:9:\"extraData\";a:0:{}s:23:\"confirmationEmailToUser\";b:0;s:17:\"emailAddressField\";s:0:\"\";s:12:\"replyToEmail\";s:0:\"\";s:9:\"submitBtn\";b:1;s:13:\"submitBtnText\";s:6:\"Submit\";s:13:\"submitBtnType\";s:6:\"normal\";s:13:\"errorMessages\";a:0:{}s:5:\"style\";a:0:{}s:18:\"mailchimpAddOnData\";a:0:{}s:9:\"addOnData\";a:0:{}s:2:\"id\";i:1078;}'),(2353,1090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:550;s:4:\"file\";s:18:\"2017/02/living.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"living-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:\"living-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"living-768x352.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"living-1024x469.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"living-250x115.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"living-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2354,1091,'_wp_attached_file','2017/02/bahtrom.jpg'),(2355,1091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:550;s:4:\"file\";s:19:\"2017/02/bahtrom.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bahtrom-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:\"bahtrom-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"bahtrom-768x352.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bahtrom-1024x469.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"bahtrom-250x115.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"bahtrom-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(120208,1382,'second_featured_img',NULL),(120292,8170,'_yoast_wpseo_title','Blog - Tips'),(120404,44,'_yoast_wpseo_estimated-reading-time-minutes','1'),(2423,1132,'_menu_item_url','https://chicagolandroofingcompanies.com/'),(2422,1132,'_menu_item_xfn',''),(2367,1105,'_form','<label> <p style=\"color:#fff;\">Your Name (required) </p>\n    [text* your-name] </label> \n\n<label> <p style=\"color:#fff;\">Your Email (required) </p>\n    [email* your-email] </label> \n\n<label> <p style=\"color:#fff;\">Your Message </p>\n    [textarea your-message] </label>\n[submit \"Send\"]'),(2377,1111,'_form','<div style=\"text-align:center;\">\n<label> <p style=\"color:#fff;\">Your Name (required)</p>\n[text text-597 your-name] </label>\n\n<label> <p style=\"color:#fff;\">Your Email (required)</p>\n[email email-976 your-email]\n </label>\n\n<label> <p style=\"color:#fff;\">Phone</p>\n    [tel tel-679] </label>\n\n\n<label> <p style=\"color:#fff;\">Your Message</p>\n    [textarea textarea-473 your-message] </label>\n\n[submit \"Send\"]\n</div>'),(2368,1105,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:49:\"[your-name] <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:23:\"kacper@infosystrade.com\";s:4:\"body\";s:199:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.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;}'),(2369,1105,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2370,1105,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120213,8136,'second_featured_img',NULL),(2371,1105,'_additional_settings',''),(2372,1105,'_locale','en_US'),(120438,8170,'_yoast_wpseo_estimated-reading-time-minutes','1'),(120439,8170,'ulm_custom_get_post_template','single_fullwidth.php'),(2378,1111,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:37:\"<wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:189:\"From: [text-597] <[email-976]>\nPhone: [tel-679]\nMessage Body:\n[textarea-473]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2421,1132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2379,1111,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2380,1111,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120210,1113,'second_featured_img',NULL),(2381,1111,'_additional_settings',''),(2382,1111,'_locale','en_US'),(2416,1132,'_menu_item_type','custom'),(2417,1132,'_menu_item_menu_item_parent','52'),(2418,1132,'_menu_item_object_id','1132'),(2419,1132,'_menu_item_object','custom'),(2420,1132,'_menu_item_target',''),(120214,8136,'_form','<div class=\"row mb20 quick-quote\">\n<h2 class=\"text-center-align\"><span style=\"color: rgb(255, 255, 255); text-transform: uppercase; font-size: 20px; transition: none 0s ease 0s; text-align: inherit; line-height: 40px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 600;\">Get a free quote</span></h2>\n	<div class=\"col-sm-12 col-xs-12\">\n		[text* your-name Placeholder \"Your name\"]\n	</div>\n	<div class=\"col-sm-12 col-xs-12\">\n		[email* your-email Placeholder \"Your email\"]\n	</div>\n	<div class=\"col-sm-12 col-xs-12\">\n		[text your-phone Placeholder \"Phone number\"]\n	</div>\n</div>\n<div class=\"row quick-quote\">\n	<div class=\"col-xs-12 textarea-bottom\">\n		[textarea your-message x4 class:qtextarea placeholder \"Your message\" ]\n	</div>\n</div>\n\n\n<div class=\"row mb20 btnnn quick-quote\">\n	<div class=\"col-xs-12\">\n		[submit class:btn \"SEND\" ]\n	</div>\n</div>'),(2387,1113,'_form','<div class=\"firstlab\">\n<label> <p style=\"color:#fff;\">Your Name (required)</p>\n    [text* class:namelb your-name] </label> </div>\n<div class=\"firstlab\">\n<label> <p style=\"color:#fff;\">Your Email (required)</p>\n    [email* class:emaillb your-email] </label> </div>\n<div class=\"xyza\">\n<label> <p style=\"color:#fff;\">Phone</p>\n    [tel* tel-404] </label></div>\n\n<label> <p style=\"color:#fff;\">Your Message</p>\n    [textarea your-message] </label>\n[submit \"Send\"]'),(2388,1113,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:46:\"CR Quote <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:197:\"From: [class:namelb] <[class:emaillb]>\nPhone: [tel-404]\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:25:\"Reply-To: [class:emaillb]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2389,1113,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2390,1113,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120211,1105,'second_featured_img',NULL),(2391,1113,'_additional_settings',''),(2392,1113,'_locale','en_US'),(2434,1141,'_wp_attached_file','2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg'),(2435,1141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:70:\"2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:70:\"0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:70:\"0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior-293x257.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:257;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:{}}}'),(2440,1149,'_wp_attached_file','2017/04/cr1.jpg'),(2441,1149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"2017/04/cr1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"cr1-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:\"cr1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"cr1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"cr1-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:16:\"cr1-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:15:\"cr1-250x187.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"cr1-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2478,1187,'_wp_attached_file','2017/05/customCherryWoodOffice.jpg'),(120412,956,'slide_template','default'),(2493,789,'_wp_attachment_image_alt','homely kitchen remodel project'),(2494,787,'_wp_attachment_image_alt','old-fashioned dining room project'),(2492,1141,'_wp_attachment_image_alt','home after remodeling'),(119731,981,'_yoast_wpseo_title','Kitchen Gallery'),(119730,979,'_yoast_wpseo_title','Bathroom Gallery'),(119732,983,'_yoast_wpseo_title','Living Room Gallery'),(120410,40,'_yoast_wpseo_estimated-reading-time-minutes',''),(120207,782,'second_featured_img',NULL),(2479,1187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:550;s:4:\"file\";s:34:\"2017/05/customCherryWoodOffice.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"customCherryWoodOffice-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"customCherryWoodOffice-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"customCherryWoodOffice-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:34:\"customCherryWoodOffice-250x148.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"customCherryWoodOffice-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(120402,34,'second_featured_img',''),(120401,34,'slide_template','default'),(120399,910,'_yoast_wpseo_estimated-reading-time-minutes',''),(120394,979,'slide_template','default'),(2496,790,'_wp_attachment_image_alt','modern style basements'),(2495,791,'_wp_attachment_image_alt','elegant stairs'),(2546,1329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:17:\"2017/10/badge.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"badge-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:17:\"badge-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:17:\"badge-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"badge-512x257.png\";s:5:\"width\";i:512;s:6:\"height\";i:257;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:{}}}'),(2545,1329,'_wp_attached_file','2017/10/badge.png'),(2549,1331,'_wp_attached_file','2017/10/target.png'),(2550,1331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:18:\"2017/10/target.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"target-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:18:\"target-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"target-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"target-512x257.png\";s:5:\"width\";i:512;s:6:\"height\";i:257;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:{}}}'),(2753,1364,'_menu_item_target',''),(2752,1364,'_menu_item_object','category'),(2751,1364,'_menu_item_object_id','20'),(2750,1364,'_menu_item_menu_item_parent','0'),(2749,1364,'_menu_item_type','taxonomy'),(2559,1331,'_wp_attachment_image_alt','logo'),(2560,1329,'_wp_attachment_image_alt','badge logo'),(2561,1330,'_wp_attachment_image_alt','settings logo'),(2562,1230,'_wp_attachment_image_alt','quality badge logo'),(2563,1187,'_wp_attachment_image_alt','office room remodeling'),(2564,1149,'_wp_attachment_image_alt','kitchen remodeling project chicago'),(2565,1140,'_wp_attachment_image_alt','shingle roof replacement'),(2566,1139,'_wp_attachment_image_alt','completed home remodeling project'),(2567,1127,'_wp_attachment_image_alt','funitures in office'),(2568,1091,'_wp_attachment_image_alt','bathroom project remodeling'),(2569,1090,'_wp_attachment_image_alt','living room remodeling'),(2570,1047,'_wp_attachment_image_alt',''),(2571,1046,'_wp_attachment_image_alt','modern kitchen remodeling project'),(2572,1045,'_wp_attachment_image_alt','kitchen remodeling tips'),(2573,1017,'_wp_attachment_image_alt','Basements remodel project'),(2574,1011,'_wp_attachment_image_alt','elegant bathroom project'),(2575,1010,'_wp_attachment_image_alt','washbasin after renovation'),(2576,1009,'_wp_attachment_image_alt','white washbasin'),(2577,1007,'_wp_attachment_image_alt','white funitures in kitchen'),(2578,1006,'_wp_attachment_image_alt','dining room remodeling project'),(2579,1005,'_wp_attachment_image_alt','kitchen renovation'),(2580,965,'_wp_old_slug','kitchen'),(2581,965,'_wp_attachment_image_alt','elegant style kitchen project'),(2582,964,'_wp_old_slug','bathroom'),(2583,964,'_wp_attachment_image_alt','minimalistic style bathroom project'),(2584,960,'_wp_attachment_image_alt','homely kitchen remodel'),(2585,958,'_wp_attachment_image_alt','light space bathroom'),(2586,934,'_wp_attachment_image_alt','cropped-ico.png logo'),(2587,933,'_wp_attachment_image_alt','ico logo'),(2588,880,'_wp_attachment_image_alt','angie\'s list logo'),(2589,872,'_wp_attachment_image_alt','graph'),(2590,865,'_wp_attachment_image_alt','SmithProBadge logo'),(2591,862,'_wp_attachment_image_alt','bbb logo'),(2592,860,'_wp_attachment_image_alt','angie\'s list logo'),(2593,858,'_wp_attachment_image_alt','bbb logo'),(2594,850,'_wp_attachment_image_alt','mapquest logo'),(2595,849,'_wp_attachment_image_alt','yelp logo'),(2596,835,'_wp_attachment_image_alt','facebook logo'),(2597,828,'_wp_attachment_image_alt','google + logo'),(2598,815,'_wp_attachment_image_alt','modern style bathroom remodel project'),(2599,814,'_wp_attachment_image_alt','finished kitchen remodeling project'),(2600,810,'_wp_attachment_image_alt','white'),(2601,690,'_wp_attachment_image_alt','wooden balcony'),(2602,676,'_wp_attachment_image_alt','office remodeling project'),(2603,671,'_wp_attachment_image_alt','elegant style basement remodeling'),(2604,639,'_wp_attachment_image_alt','window'),(2605,637,'_wp_attachment_image_alt','shingle roof'),(2606,638,'_wp_attachment_image_alt','stairs'),(2607,636,'_wp_attachment_image_alt','roof'),(2608,635,'_wp_attachment_image_alt','icon'),(2609,633,'_wp_attachment_image_alt','living room'),(2610,634,'_wp_attachment_image_alt','roof'),(2611,632,'_wp_attachment_image_alt','office'),(2612,631,'_wp_attachment_image_alt','kitchen'),(2613,630,'_wp_attachment_image_alt','gutter'),(2614,628,'_wp_attachment_image_alt','living room'),(2615,629,'_wp_attachment_image_alt','living room'),(2616,627,'_wp_attachment_image_alt','wooden balcony icon'),(2617,626,'_wp_attachment_image_alt','chimney and roof'),(2618,625,'_wp_attachment_image_alt','bedroom'),(2619,623,'_wp_attachment_image_alt','shower'),(2620,624,'_wp_attachment_image_alt','besement'),(2621,622,'_wp_attachment_image_alt','house'),(2622,589,'_wp_attachment_image_alt','basement'),(2623,500,'_wp_attachment_image_alt','shingle roof and chimney'),(2624,496,'_wp_attachment_image_alt','house after renovation'),(2625,495,'_wp_attachment_image_alt','shingle roof after replacement'),(2626,485,'_wp_attachment_image_alt','completed living room reodeling project'),(2627,484,'_wp_attachment_image_alt','living room after remodeling'),(2628,483,'_wp_attachment_image_alt','house before remodel'),(2629,479,'_wp_attachment_image_alt','living room after makeover'),(2630,478,'_wp_attachment_image_alt','living room after remodel'),(2631,477,'_wp_attachment_image_alt','living room before makeover'),(2632,471,'_wp_attachment_image_alt','calculator'),(2633,470,'_wp_attachment_image_alt','remodeling contractors'),(2634,431,'_wp_attachment_image_alt','shower after remodel'),(2635,430,'_wp_attachment_image_alt','finished bathroom remodeling'),(2636,429,'_wp_attachment_image_alt','hanger in bathroom'),(2637,428,'_wp_attachment_image_alt','shower after renovated'),(2638,427,'_wp_attachment_image_alt','completed bathroom remodeling'),(2639,367,'_wp_attachment_image_alt','thank you logo'),(2640,363,'_wp_attachment_image_alt','examples room remodeling projects'),(2641,362,'_wp_attachment_image_alt','living room remodeling project'),(2642,308,'_wp_attachment_image_alt','roof remodeling project'),(2643,302,'_wp_attachment_image_alt','roof remodeling in progress'),(2644,301,'_wp_attachment_image_alt','chimneys remodel'),(2695,1355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2017/11/bathroom-photos-10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"bathroom-photos-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"bathroom-photos-10-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"bathroom-photos-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:30:\"bathroom-photos-10-250x156.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"bathroom-photos-10-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2645,276,'_wp_attachment_image_alt','house before and after remodel'),(2646,191,'_wp_attachment_image_alt','finished roof remodeling'),(2647,183,'_wp_attachment_image_alt','bath after renovation'),(2648,182,'_wp_attachment_image_alt','completed bathroom remodeling project'),(2649,181,'_wp_attachment_image_alt','basement remodel'),(2650,180,'_wp_attachment_image_alt','bathroom funiture'),(2651,179,'_wp_attachment_image_alt','floor remodeling project'),(2652,178,'_wp_attachment_image_alt','walls before remodeling'),(2653,177,'_wp_attachment_image_alt','bathroom remodeling in progress'),(2654,176,'_wp_attachment_image_alt','walls remodeling in progress'),(2655,175,'_wp_attachment_image_alt','walls renovation'),(2656,174,'_wp_attachment_image_alt','walls makeover'),(2657,173,'_wp_attachment_image_alt','walls before renovation'),(2658,172,'_wp_attachment_image_alt','walls before remodeling'),(2659,168,'_wp_attachment_image_alt','tiles after remodeling'),(2660,167,'_wp_attachment_image_alt','bathroom before makeover'),(2661,166,'_wp_attachment_image_alt','bathroom before remodel'),(2662,164,'_wp_attachment_image_alt','washbasin after renovation'),(2663,163,'_wp_attachment_image_alt','glaze after remodeling'),(2664,162,'_wp_attachment_image_alt','glaze and shower remodeling'),(2665,161,'_wp_attachment_image_alt','mirror after exchange'),(2666,160,'_wp_attachment_image_alt','tubing in bathroom'),(2667,159,'_wp_attachment_image_alt','exchange tubing in bathroom'),(2694,1355,'_wp_attached_file','2017/11/bathroom-photos-10.jpg'),(2668,138,'_wp_attachment_image_alt','kitchen before and after renovation'),(2669,137,'_wp_attachment_image_alt','dining room before and after remodeling'),(2670,136,'_wp_attachment_image_alt','new door project'),(2671,133,'_wp_attachment_image_alt','glaze after exchange'),(2672,132,'_wp_attachment_image_alt','contractor during work in bathroom'),(2673,131,'_wp_attachment_image_alt','new glaze project'),(2674,130,'_wp_attachment_image_alt','bath after exchange'),(2675,129,'_wp_attachment_image_alt','bath exchange in progress'),(2693,1354,'_edit_lock','1612441891:1'),(2676,125,'_wp_attachment_image_alt','bathroom before and after remodeling'),(2677,112,'_wp_attachment_image_alt','kitchen before and after renovation'),(2692,1354,'_edit_last','1'),(2678,104,'_wp_attachment_image_alt','siding before renovation'),(2679,103,'_wp_attachment_image_alt','house before and after renovation'),(2680,102,'_wp_attachment_image_alt','kitchen remodeling in progress'),(2681,101,'_wp_attachment_image_alt','uncompleted kitchen renovation'),(2682,100,'_wp_attachment_image_alt','kitchen funiture'),(2683,99,'_wp_attachment_image_alt','floor remodeling in room'),(2684,98,'_wp_attachment_image_alt','kitchen before remodeling'),(2685,97,'_wp_attachment_image_alt','kitchen before makeover'),(2686,96,'_wp_attachment_image_alt','kitchen before remodeling'),(2687,84,'_wp_attachment_image_alt','new siding and windows on house'),(2688,82,'_wp_attachment_image_alt','roof remodeling and repair'),(2689,73,'_wp_attachment_image_alt','house remodeling projects'),(2690,72,'_wp_attachment_image_alt','bathrooms makeover projects'),(2691,71,'_wp_attachment_image_alt','kitchens after renovations'),(2696,1354,'_thumbnail_id','1355'),(2698,1354,'hefo_before','0'),(2699,1354,'hefo_after','0'),(2700,1354,'_yoast_wpseo_content_score','30'),(2701,1354,'_yoast_wpseo_primary_category','20'),(2766,1382,'_form','<div class=\"contact-form-box\"><h4 style=\"text-align:center;color:#000\">QUICK QUOTE</h4>\n<div class=\"contact-form-input\">[text* yname placeholder \"Name *\"] </div>\n<div class=\"contact-form-input\">[email* email placeholder \"Email *\"]</div>\n<div class=\"contact-form-input\">[text* phone placeholder \"Phone *\"] </div>\n<div class=\"contact-form-textarea\">[textarea message 40x5 placeholder \"Message \"]</div>\n\n<div class=\"wpcf7-submit-wrap\">\n[submit \"Submit\"]\n</div>\n</div>'),(2756,1364,'_menu_item_url',''),(2755,1364,'_menu_item_xfn',''),(2754,1364,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2767,1382,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:45:\"[yname] <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:176:\"From: [yname] <[email]>\nPhone: [phone]\n\nMessage Body:\n[message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2768,1382,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2769,1382,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120209,1111,'second_featured_img',NULL),(2770,1382,'_additional_settings',''),(2771,1382,'_locale','en_US'),(120307,886,'slide_template','default'),(39700,3458,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:643;s:10:\"size_after\";i:643;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:643;s:10:\"size_after\";i:643;s:4:\"time\";d:0.01;}}}'),(120476,1354,'ulm_custom_get_post_template','single_fullwidth.php'),(2844,1427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:500;s:4:\"file\";s:54:\"2018/03/vinyl_replacment_windows_benefits-900x500.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"vinyl_replacment_windows_benefits-900x500-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:54:\"vinyl_replacment_windows_benefits-900x500-300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"vinyl_replacment_windows_benefits-900x500-768x427.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:54:\"vinyl_replacment_windows_benefits-900x500-250x139.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"vinyl_replacment_windows_benefits-900x500-612x257.jpeg\";s:5:\"width\";i:612;s:6:\"height\";i:257;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:{}}}'),(2843,1427,'_wp_attached_file','2018/03/vinyl_replacment_windows_benefits-900x500.jpeg'),(2842,1424,'_yoast_wpseo_primary_category','20'),(2841,1424,'_yoast_wpseo_content_score','90'),(2837,1424,'_edit_last','1'),(2838,1424,'_edit_lock','1612441734:1'),(2839,1424,'hefo_before','0'),(2840,1424,'hefo_after','0'),(120329,8204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2020/09/incredilble-bathroom-remodeling-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"incredilble-bathroom-remodeling-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"incredilble-bathroom-remodeling-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"incredilble-bathroom-remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"incredilble-bathroom-remodeling-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"incredilble-bathroom-remodeling-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"incredilble-bathroom-remodeling-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:44:\"incredilble-bathroom-remodeling-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:43:\"incredilble-bathroom-remodeling-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"incredilble-bathroom-remodeling-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:35:\"incredilble-bathroom-remodeling.jpg\";}'),(120224,8137,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(120392,32,'second_featured_img',''),(120391,32,'slide_template','default'),(119797,7941,'_wp_attached_file','2018/08/313.jpg'),(119798,7941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1397;s:4:\"file\";s:15:\"2018/08/313.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"313-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:\"313-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"313-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"313-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:16:\"313-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:15:\"313-250x182.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"313-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:248:\"Open Kitchen Living Room Small Kitchen Decorating Ideas For Apartment Open Kitchen Living Room Decorating Ideas Interior Design Ideas Kitchen Family Room within Contemporary Apartment Kitchen White Color Floor Interior Design - Kitchen Design Ideas\";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:225:\"Open Kitchen Living Room Small Kitchen Decorating Ideas For Apartment Open Kitchen Living Room Decorating Ideas Interior Design Ideas Kitchen Family Room within Contemporary Apartment Kitchen White Color Floor Interior Design\";s:11:\"orientation\";s:1:\"0\";}}'),(2845,1427,'_wp_attachment_image_alt','kitchen remodeling tips'),(2846,1424,'_thumbnail_id','1427'),(120221,8137,'second_featured_img',NULL),(120222,8137,'_form','<div class=\"row mb20 quick-quote\">\n	<div class=\"col-sm-12 col-xs-12\">\n		[text* your-name Placeholder \"Your name\"]\n	</div>\n	<div class=\"col-sm-12 col-xs-12\">\n		[email* your-email Placeholder \"Your email\"]\n	</div>\n	<div class=\"col-sm-12 col-xs-12\">\n		[text your-phone Placeholder \"Phone number\"]\n	</div>\n</div>\n<div class=\"row quick-quote\">\n	<div class=\"col-xs-12 textarea-bottom\">\n		[textarea your-message x4 class:qtextarea placeholder \"Your message\" ]\n	</div>\n</div>\n\n\n<div class=\"row mb20 btnnn quick-quote\">\n	<div class=\"col-xs-12\">\n		[submit class:btn \"SEND\" ]\n	</div>\n</div>'),(120471,1424,'ulm_custom_get_post_template','single_fullwidth.php'),(120223,8137,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:49:\"[your-name] <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:195:\"From: [your-name] <[your-email]>\nPhone: [your-phone]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.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;}'),(120218,8136,'_additional_settings',''),(120219,8136,'_locale','en_US'),(120052,8072,'_wp_attached_file','2019/08/5_stelle.png'),(119775,7930,'ulm_custom_get_post_template','single_fullwidth.php'),(119803,7939,'hefo_before','0'),(119778,7934,'_edit_last','1'),(119779,7934,'_edit_lock','1612441489:1'),(119780,7935,'_wp_attached_file','2018/08/photo-1495433324511-bf8e92934d90.jpg'),(119781,7935,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:4:\"1350\";s:6:\"height\";s:3:\"900\";s:4:\"file\";s:44:\"2018/08/photo-1495433324511-bf8e92934d90.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"photo-1495433324511-bf8e92934d90-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"photo-1495433324511-bf8e92934d90-300x200.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"photo-1495433324511-bf8e92934d90-768x512.jpg\";s:5:\"width\";s:3:\"768\";s:6:\"height\";s:3:\"512\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"photo-1495433324511-bf8e92934d90-1024x683.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"683\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:45:\"photo-1495433324511-bf8e92934d90-1350x750.jpg\";s:5:\"width\";s:4:\"1350\";s:6:\"height\";s:3:\"750\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:44:\"photo-1495433324511-bf8e92934d90-250x167.jpg\";s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"167\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"photo-1495433324511-bf8e92934d90-612x257.jpg\";s:5:\"width\";s:3:\"612\";s:6:\"height\";s:3:\"257\";s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119782,7935,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.433627305005154;s:5:\"bytes\";i:15484;s:11:\"size_before\";i:349240;s:10:\"size_after\";i:333756;s:4:\"time\";d:0.23999999999999999;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.1600000000000001;s:5:\"bytes\";i:329;s:11:\"size_before\";i:6375;s:10:\"size_after\";i:6046;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:541;s:11:\"size_before\";i:13268;s:10:\"size_after\";i:12727;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:2804;s:11:\"size_before\";i:59685;s:10:\"size_after\";i:56881;s:4:\"time\";d:0.050000000000000003;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:4159;s:11:\"size_before\";i:95922;s:10:\"size_after\";i:91763;s:4:\"time\";d:0.080000000000000002;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:5944;s:11:\"size_before\";i:136814;s:10:\"size_after\";i:130870;s:4:\"time\";d:0.040000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:479;s:11:\"size_before\";i:10081;s:10:\"size_after\";i:9602;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5300000000000002;s:5:\"bytes\";i:1228;s:11:\"size_before\";i:27095;s:10:\"size_after\";i:25867;s:4:\"time\";d:0.02;}}}'),(119783,7935,'_wp_attachment_image_alt','kitchen remodeling contractors'),(119784,7934,'_thumbnail_id','7935'),(119792,7939,'_edit_last','1'),(119786,7934,'hefo_before','0'),(119787,7934,'hefo_after','0'),(119788,7934,'_yoast_wpseo_content_score','60'),(119789,7934,'_yoast_wpseo_primary_category','20'),(120465,7934,'ulm_custom_get_post_template','single_fullwidth.php'),(119793,7939,'_edit_lock','1612441225:1'),(119800,7941,'_wp_attachment_image_alt','kitchen remodeling contractors'),(119801,7939,'_thumbnail_id','7941'),(119799,7941,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9238760843560736;s:5:\"bytes\";i:12417;s:11:\"size_before\";i:424676;s:10:\"size_after\";i:412259;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.4100000000000001;s:5:\"bytes\";i:270;s:11:\"size_before\";i:6122;s:10:\"size_after\";i:5852;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4000000000000004;s:5:\"bytes\";i:651;s:11:\"size_before\";i:14788;s:10:\"size_after\";i:14137;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8599999999999999;s:5:\"bytes\";i:1802;s:11:\"size_before\";i:62954;s:10:\"size_after\";i:61152;s:4:\"time\";d:0.040000000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5699999999999998;s:5:\"bytes\";i:2556;s:11:\"size_before\";i:99479;s:10:\"size_after\";i:96923;s:4:\"time\";d:0.059999999999999998;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.73;s:5:\"bytes\";i:5389;s:11:\"size_before\";i:197114;s:10:\"size_after\";i:191725;s:4:\"time\";d:0.059999999999999998;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5700000000000003;s:5:\"bytes\";i:511;s:11:\"size_before\";i:11190;s:10:\"size_after\";i:10679;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:1238;s:11:\"size_before\";i:33029;s:10:\"size_after\";i:31791;s:4:\"time\";d:0.02;}}}'),(120107,8087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:869;s:4:\"file\";s:32:\"2019/09/kitchen-2014860_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"kitchen-2014860_1920-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:\"kitchen-2014860_1920-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:32:\"kitchen-2014860_1920-620x750.jpg\";s:5:\"width\";i:620;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:32:\"kitchen-2014860_1920-250x350.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"kitchen-2014860_1920-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1464180065\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"10\";s:3:\"iso\";s:3:\"450\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(120097,819,'second_featured_img',NULL),(120098,1132,'second_featured_img',NULL),(120072,8075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:116;s:4:\"file\";s:17:\"2019/08/60630.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"60630-150x116.png\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"60630-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"60630-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120074,8081,'_wp_attached_file','2019/08/Exceptional-Home-Remodeling-Image.jpg'),(120073,8075,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.90970486054742;s:5:\"bytes\";i:11648;s:11:\"size_before\";i:61598;s:10:\"size_after\";i:49950;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.44;s:5:\"bytes\";i:3495;s:11:\"size_before\";i:9334;s:10:\"size_after\";i:5839;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9;s:5:\"bytes\";i:4461;s:11:\"size_before\";i:29942;s:10:\"size_after\";i:25481;s:4:\"time\";d:0.04;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.54;s:5:\"bytes\";i:3692;s:11:\"size_before\";i:22322;s:10:\"size_after\";i:18630;s:4:\"time\";d:0.06;}}}'),(120075,8081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:497;s:6:\"height\";i:662;s:4:\"file\";s:45:\"2019/08/Exceptional-Home-Remodeling-Image.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Exceptional-Home-Remodeling-Image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Exceptional-Home-Remodeling-Image-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:45:\"Exceptional-Home-Remodeling-Image-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"Exceptional-Home-Remodeling-Image-497x257.jpg\";s:5:\"width\";i:497;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120076,8081,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.128926008704859;s:5:\"bytes\";i:2808;s:11:\"size_before\";i:68008;s:10:\"size_after\";i:65200;s:4:\"time\";d:0.76;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.69;s:5:\"bytes\";i:376;s:11:\"size_before\";i:6603;s:10:\"size_after\";i:6227;s:4:\"time\";d:0.71;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.33;s:5:\"bytes\";i:651;s:11:\"size_before\";i:15038;s:10:\"size_after\";i:14387;s:4:\"time\";d:0.02;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.36;s:5:\"bytes\";i:578;s:11:\"size_before\";i:17180;s:10:\"size_after\";i:16602;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12;s:5:\"bytes\";i:1203;s:11:\"size_before\";i:29187;s:10:\"size_after\";i:27984;s:4:\"time\";d:0.02;}}}'),(120122,8092,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4258206575528445;s:5:\"bytes\";i:8505;s:11:\"size_before\";i:350603;s:10:\"size_after\";i:342098;s:4:\"time\";d:0.21;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.14;s:5:\"bytes\";i:222;s:11:\"size_before\";i:5366;s:10:\"size_after\";i:5144;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:497;s:11:\"size_before\";i:13197;s:10:\"size_after\";i:12700;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.63;s:5:\"bytes\";i:2653;s:11:\"size_before\";i:100790;s:10:\"size_after\";i:98137;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98137;s:10:\"size_after\";i:98137;s:4:\"time\";d:0.05;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.84;s:5:\"bytes\";i:3783;s:11:\"size_before\";i:98561;s:10:\"size_after\";i:94778;s:4:\"time\";d:0.06;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.21;s:5:\"bytes\";i:498;s:11:\"size_before\";i:15501;s:10:\"size_after\";i:15003;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.47;s:5:\"bytes\";i:852;s:11:\"size_before\";i:19051;s:10:\"size_after\";i:18199;s:4:\"time\";d:0.02;}}}'),(120095,818,'second_featured_img',NULL),(120096,820,'second_featured_img',NULL),(120388,983,'slide_template','default'),(120389,983,'second_featured_img',''),(120094,962,'second_featured_img',NULL),(120088,53,'second_featured_img',NULL),(120089,1364,'second_featured_img',NULL),(120087,539,'second_featured_img',NULL),(120092,52,'second_featured_img',NULL),(120093,963,'second_featured_img',NULL),(120106,8087,'_wp_attached_file','2019/09/kitchen-2014860_1920.jpg'),(120104,48,'second_featured_img',NULL),(120103,50,'second_featured_img',NULL),(120102,986,'second_featured_img',NULL),(120100,987,'second_featured_img',NULL),(120101,988,'second_featured_img',NULL),(120099,985,'second_featured_img',NULL),(120071,8075,'_wp_attached_file','2019/08/60630.png'),(39698,3458,'_wp_attached_file','2018/04/call-answer.png'),(39699,3458,'_wp_attachment_metadata','a:4:{s:5:\"width\";s:2:\"32\";s:6:\"height\";s:2:\"32\";s:4:\"file\";s:23:\"2018/04/call-answer.png\";s:10:\"image_meta\";a:11:{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\";}}'),(120283,8170,'second_featured_img',NULL),(120225,8137,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120194,8118,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.44229994570643;s:5:\"bytes\";i:10530;s:11:\"size_before\";i:57097;s:10:\"size_after\";i:46567;s:4:\"time\";d:1.59;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:34.47;s:5:\"bytes\";i:3415;s:11:\"size_before\";i:9906;s:10:\"size_after\";i:6491;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57;s:5:\"bytes\";i:3111;s:11:\"size_before\";i:24756;s:10:\"size_after\";i:21645;s:4:\"time\";d:0.04;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.85;s:5:\"bytes\";i:4004;s:11:\"size_before\";i:22435;s:10:\"size_after\";i:18431;s:4:\"time\";d:1.53;}}}'),(120199,8128,'_wp_attached_file','2019/11/chicagoland-home-remodeling-contractors-logo.png'),(120200,8128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:56:\"2019/11/chicagoland-home-remodeling-contractors-logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"chicagoland-home-remodeling-contractors-logo-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"chicagoland-home-remodeling-contractors-logo-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:55:\"chicagoland-home-remodeling-contractors-logo-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120201,8128,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.608635097493035;s:5:\"bytes\";i:9540;s:11:\"size_before\";i:57440;s:10:\"size_after\";i:47900;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.06;s:5:\"bytes\";i:3400;s:11:\"size_before\";i:9698;s:10:\"size_after\";i:6298;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.49;s:5:\"bytes\";i:2744;s:11:\"size_before\";i:23875;s:10:\"size_after\";i:21131;s:4:\"time\";d:0.05;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.23;s:5:\"bytes\";i:3396;s:11:\"size_before\";i:23867;s:10:\"size_after\";i:20471;s:4:\"time\";d:0.03;}}}'),(120205,44,'slide_template','default'),(120206,44,'second_featured_img',''),(120174,8113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.175060126812916;s:5:\"bytes\";i:12469;s:11:\"size_before\";i:68605;s:10:\"size_after\";i:56136;s:4:\"time\";d:0.21;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:31.17;s:5:\"bytes\";i:2744;s:11:\"size_before\";i:8804;s:10:\"size_after\";i:6060;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.64;s:5:\"bytes\";i:5350;s:11:\"size_before\";i:34211;s:10:\"size_after\";i:28861;s:4:\"time\";d:0.09;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.1;s:5:\"bytes\";i:4375;s:11:\"size_before\";i:25590;s:10:\"size_after\";i:21215;s:4:\"time\";d:0.09;}}}'),(120167,8101,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.81857736630663;s:5:\"bytes\";i:16415;s:11:\"size_before\";i:71937;s:10:\"size_after\";i:55522;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.55;s:5:\"bytes\";i:4275;s:11:\"size_before\";i:12743;s:10:\"size_after\";i:8468;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.77;s:5:\"bytes\";i:5738;s:11:\"size_before\";i:30570;s:10:\"size_after\";i:24832;s:4:\"time\";d:0.05;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.37;s:5:\"bytes\";i:6402;s:11:\"size_before\";i:28624;s:10:\"size_after\";i:22222;s:4:\"time\";d:0.04;}}}'),(120192,8118,'_wp_attached_file','2019/09/GLEN-ELLYN.png'),(120193,8118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:22:\"2019/09/GLEN-ELLYN.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"GLEN-ELLYN-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"GLEN-ELLYN-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:21:\"GLEN-ELLYN-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120291,8170,'_thumbnail_id','8173'),(120290,8173,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.521205542474886;s:5:\"bytes\";i:40289;s:11:\"size_before\";i:1144182;s:10:\"size_after\";i:1103893;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.06;s:5:\"bytes\";i:792;s:11:\"size_before\";i:15637;s:10:\"size_after\";i:14845;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.77;s:5:\"bytes\";i:4542;s:11:\"size_before\";i:120322;s:10:\"size_after\";i:115780;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.65;s:5:\"bytes\";i:394;s:11:\"size_before\";i:6969;s:10:\"size_after\";i:6575;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9;s:5:\"bytes\";i:2902;s:11:\"size_before\";i:74380;s:10:\"size_after\";i:71478;s:4:\"time\";d:0.04;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.41;s:5:\"bytes\";i:8221;s:11:\"size_before\";i:241040;s:10:\"size_after\";i:232819;s:4:\"time\";d:0.15;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.11;s:5:\"bytes\";i:12189;s:11:\"size_before\";i:391353;s:10:\"size_after\";i:379164;s:4:\"time\";d:0.17;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.56;s:5:\"bytes\";i:8710;s:11:\"size_before\";i:244429;s:10:\"size_after\";i:235719;s:4:\"time\";d:0.07;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.05;s:5:\"bytes\";i:591;s:11:\"size_before\";i:11698;s:10:\"size_after\";i:11107;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.08;s:5:\"bytes\";i:1948;s:11:\"size_before\";i:38354;s:10:\"size_after\";i:36406;s:4:\"time\";d:0.01;}}}'),(3915,1427,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4007716968820039;s:5:\"bytes\";i:4231;s:11:\"size_before\";i:176235;s:10:\"size_after\";i:172004;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:5.5;s:5:\"bytes\";i:350;s:11:\"size_before\";i:6368;s:10:\"size_after\";i:6018;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:634;s:11:\"size_before\";i:12795;s:10:\"size_after\";i:12161;s:4:\"time\";d:0.029999999999999999;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9300000000000002;s:5:\"bytes\";i:1502;s:11:\"size_before\";i:51219;s:10:\"size_after\";i:49717;s:4:\"time\";d:0.029999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8399999999999999;s:5:\"bytes\";i:579;s:11:\"size_before\";i:9913;s:10:\"size_after\";i:9334;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6600000000000001;s:5:\"bytes\";i:1070;s:11:\"size_before\";i:29268;s:10:\"size_after\";i:28198;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.14000000000000001;s:5:\"bytes\";i:96;s:11:\"size_before\";i:66672;s:10:\"size_after\";i:66576;s:4:\"time\";d:0.040000000000000001;}}}'),(120054,8072,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.648732770120054;s:5:\"bytes\";i:217;s:11:\"size_before\";i:2249;s:10:\"size_after\";i:2032;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.65;s:5:\"bytes\";i:217;s:11:\"size_before\";i:2249;s:10:\"size_after\";i:2032;s:4:\"time\";d:0.01;}}}'),(120173,8113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:100;s:4:\"file\";s:39:\"2019/09/chicagoland-remodeling-logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"chicagoland-remodeling-logo-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"chicagoland-remodeling-logo-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:38:\"chicagoland-remodeling-logo-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120172,8113,'_wp_attached_file','2019/09/chicagoland-remodeling-logo.png'),(120171,8109,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.68588540914995;s:5:\"bytes\";i:8695;s:11:\"size_before\";i:55432;s:10:\"size_after\";i:46737;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.72;s:5:\"bytes\";i:2438;s:11:\"size_before\";i:9124;s:10:\"size_after\";i:6686;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.58;s:5:\"bytes\";i:2245;s:11:\"size_before\";i:23440;s:10:\"size_after\";i:21195;s:4:\"time\";d:0.1;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.54;s:5:\"bytes\";i:4012;s:11:\"size_before\";i:22868;s:10:\"size_after\";i:18856;s:4:\"time\";d:0.03;}}}'),(120020,8050,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.735037824379969;s:5:\"bytes\";i:4561;s:11:\"size_before\";i:52215;s:10:\"size_after\";i:47654;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.09;s:5:\"bytes\";i:932;s:11:\"size_before\";i:2325;s:10:\"size_after\";i:1393;s:4:\"time\";d:0.05;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71;s:5:\"bytes\";i:2561;s:11:\"size_before\";i:29411;s:10:\"size_after\";i:26850;s:4:\"time\";d:0.09;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.22;s:5:\"bytes\";i:1068;s:11:\"size_before\";i:20479;s:10:\"size_after\";i:19411;s:4:\"time\";d:0.05;}}}'),(120047,8063,'_wp_attached_file','2019/08/roselle-image-2.png'),(120048,8063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1102;s:6:\"height\";i:785;s:4:\"file\";s:27:\"2019/08/roselle-image-2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"roselle-image-2-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:27:\"roselle-image-2-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"roselle-image-2-768x547.png\";s:5:\"width\";i:768;s:6:\"height\";i:547;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"roselle-image-2-1024x729.png\";s:5:\"width\";i:1024;s:6:\"height\";i:729;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:28:\"roselle-image-2-1102x750.png\";s:5:\"width\";i:1102;s:6:\"height\";i:750;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:27:\"roselle-image-2-250x178.png\";s:5:\"width\";i:250;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"roselle-image-2-612x257.png\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120169,8109,'_wp_attached_file','2019/09/60606-NEW.png'),(120170,8109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:21:\"2019/09/60606-NEW.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"60606-NEW-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"60606-NEW-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"60606-NEW-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120041,8058,'_wp_attached_file','2019/08/roselle-image.png'),(120042,8058,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:458;s:6:\"height\";i:608;s:4:\"file\";s:25:\"2019/08/roselle-image.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"roselle-image-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:25:\"roselle-image-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:25:\"roselle-image-250x332.png\";s:5:\"width\";i:250;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"roselle-image-458x257.png\";s:5:\"width\";i:458;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120043,8058,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.829015451791879;s:5:\"bytes\";i:57645;s:11:\"size_before\";i:449333;s:10:\"size_after\";i:391688;s:4:\"time\";d:5.7;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.33;s:5:\"bytes\";i:4913;s:11:\"size_before\";i:39861;s:10:\"size_after\";i:34948;s:4:\"time\";d:1.26;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.22;s:5:\"bytes\";i:13725;s:11:\"size_before\";i:103784;s:10:\"size_after\";i:90059;s:4:\"time\";d:1.7;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.57;s:5:\"bytes\";i:16916;s:11:\"size_before\";i:124652;s:10:\"size_after\";i:107736;s:4:\"time\";d:1.45;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2;s:5:\"bytes\";i:22091;s:11:\"size_before\";i:181036;s:10:\"size_after\";i:158945;s:4:\"time\";d:1.29;}}}'),(120053,8072,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:83;s:6:\"height\";i:15;s:4:\"file\";s:20:\"2019/08/5_stelle.png\";s:10:\"image_meta\";a:11:{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\";}}'),(120049,8063,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.30572130811965;s:5:\"bytes\";i:888846;s:11:\"size_before\";i:3512431;s:10:\"size_after\";i:2623585;s:4:\"time\";d:25.68;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:13.14;s:5:\"bytes\";i:5642;s:11:\"size_before\";i:42938;s:10:\"size_after\";i:37296;s:4:\"time\";d:0.27;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.32;s:5:\"bytes\";i:15243;s:11:\"size_before\";i:114410;s:10:\"size_after\";i:99167;s:4:\"time\";d:2.26;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.68;s:5:\"bytes\";i:86884;s:11:\"size_before\";i:685242;s:10:\"size_after\";i:598358;s:4:\"time\";d:7.12;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17;s:5:\"bytes\";i:142973;s:11:\"size_before\";i:1174586;s:10:\"size_after\";i:1031613;s:4:\"time\";d:11.88;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.1;s:5:\"bytes\";i:592200;s:11:\"size_before\";i:1136669;s:10:\"size_after\";i:544469;s:4:\"time\";d:1.43;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.39;s:5:\"bytes\";i:10889;s:11:\"size_before\";i:81306;s:10:\"size_after\";i:70417;s:4:\"time\";d:0.59;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.63;s:5:\"bytes\";i:35015;s:11:\"size_before\";i:277280;s:10:\"size_after\";i:242265;s:4:\"time\";d:2.13;}}}'),(4068,1355,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5902254722069404;s:5:\"bytes\";i:35384;s:11:\"size_before\";i:368959;s:10:\"size_after\";i:333575;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.1799999999999997;s:5:\"bytes\";i:265;s:11:\"size_before\";i:5119;s:10:\"size_after\";i:4854;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:453;s:11:\"size_before\";i:11072;s:10:\"size_after\";i:10619;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2999999999999998;s:5:\"bytes\";i:1048;s:11:\"size_before\";i:45474;s:10:\"size_after\";i:44426;s:4:\"time\";d:0.029999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2000000000000002;s:5:\"bytes\";i:352;s:11:\"size_before\";i:8388;s:10:\"size_after\";i:8036;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6200000000000001;s:5:\"bytes\";i:572;s:11:\"size_before\";i:21864;s:10:\"size_after\";i:21292;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000001;s:5:\"bytes\";i:32694;s:11:\"size_before\";i:277042;s:10:\"size_after\";i:244348;s:4:\"time\";d:0.12;}}}'),(120311,8178,'_edit_last','1'),(119766,7931,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8779740422460405;s:5:\"bytes\";i:14327;s:11:\"size_before\";i:293708;s:10:\"size_after\";i:279381;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:4.4699999999999998;s:5:\"bytes\";i:265;s:11:\"size_before\";i:5923;s:10:\"size_after\";i:5658;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:518;s:11:\"size_before\";i:12913;s:10:\"size_after\";i:12395;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6299999999999999;s:5:\"bytes\";i:1426;s:11:\"size_before\";i:54133;s:10:\"size_after\";i:52707;s:4:\"time\";d:0.050000000000000003;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999;s:5:\"bytes\";i:2253;s:11:\"size_before\";i:84415;s:10:\"size_after\";i:82162;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7300000000000004;s:5:\"bytes\";i:8493;s:11:\"size_before\";i:97244;s:10:\"size_after\";i:88751;s:4:\"time\";d:0.040000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:390;s:11:\"size_before\";i:9751;s:10:\"size_after\";i:9361;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3500000000000001;s:5:\"bytes\";i:982;s:11:\"size_before\";i:29329;s:10:\"size_after\";i:28347;s:4:\"time\";d:0.02;}}}'),(120284,8170,'_edit_last','1'),(120285,8170,'_edit_lock','1612464863:1'),(120286,8170,'slide_template','default'),(120287,8170,'_yoast_wpseo_content_score','90'),(120288,8173,'_wp_attached_file','2020/04/home-remodeling-scaled.jpg'),(120289,8173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:34:\"2020/04/home-remodeling-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"home-remodeling-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"home-remodeling-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"home-remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"home-remodeling-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"home-remodeling-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"home-remodeling-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:28:\"home-remodeling-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:27:\"home-remodeling-250x167.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"home-remodeling-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:29:\"Susie Soleimani   Photography\";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:14:\"original_image\";s:19:\"home-remodeling.jpg\";}'),(120409,40,'second_featured_img',''),(120408,40,'slide_template','default'),(120406,46,'second_featured_img',''),(120385,981,'slide_template','default'),(120386,981,'second_featured_img',''),(120387,981,'_yoast_wpseo_estimated-reading-time-minutes',''),(120226,8137,'_additional_settings',''),(120227,8137,'_locale','en_US'),(120228,942,'second_featured_img',NULL),(120294,8170,'_yoast_wpseo_primary_category','20'),(119734,956,'_yoast_wpseo_title','Bathroom'),(120414,956,'_yoast_wpseo_estimated-reading-time-minutes','3'),(120419,959,'_yoast_wpseo_estimated-reading-time-minutes','3'),(120309,8178,'second_featured_img',''),(119769,7930,'hefo_before','0'),(119770,7930,'hefo_after','0'),(119771,7930,'_yoast_wpseo_content_score','90'),(119772,7930,'_yoast_wpseo_primary_category','20'),(119767,7930,'_thumbnail_id','7931'),(4145,1331,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.219145569620252;s:5:\"bytes\";i:32580;s:11:\"size_before\";i:101120;s:10:\"size_after\";i:68540;s:4:\"time\";d:0.85999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.75;s:5:\"bytes\";i:4442;s:11:\"size_before\";i:12424;s:10:\"size_after\";i:7982;s:4:\"time\";d:0.11;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.670000000000002;s:5:\"bytes\";i:12696;s:11:\"size_before\";i:36622;s:10:\"size_after\";i:23926;s:4:\"time\";d:0.26000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.109999999999999;s:5:\"bytes\";i:9251;s:11:\"size_before\";i:26350;s:10:\"size_after\";i:17099;s:4:\"time\";d:0.14000000000000001;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.989999999999998;s:5:\"bytes\";i:3816;s:11:\"size_before\";i:13161;s:10:\"size_after\";i:9345;s:4:\"time\";d:0.17999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.899999999999999;s:5:\"bytes\";i:2375;s:11:\"size_before\";i:12563;s:10:\"size_after\";i:10188;s:4:\"time\";d:0.17000000000000001;}}}'),(120121,8092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2019/09/bathroom-1597027_1920.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"bathroom-1597027_1920-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:\"bathroom-1597027_1920-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"bathroom-1597027_1920-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"bathroom-1597027_1920-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:33:\"bathroom-1597027_1920-960x750.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:33:\"bathroom-1597027_1920-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"bathroom-1597027_1920-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120120,8092,'_wp_attached_file','2019/09/bathroom-1597027_1920.jpg'),(120108,8087,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.707936537033812;s:5:\"bytes\";i:10273;s:11:\"size_before\";i:218206;s:10:\"size_after\";i:207933;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29;s:5:\"bytes\";i:527;s:11:\"size_before\";i:8381;s:10:\"size_after\";i:7854;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.06;s:5:\"bytes\";i:955;s:11:\"size_before\";i:18883;s:10:\"size_after\";i:17928;s:4:\"time\";d:0.02;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.48;s:5:\"bytes\";i:5442;s:11:\"size_before\";i:121420;s:10:\"size_after\";i:115978;s:4:\"time\";d:0.04;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.99;s:5:\"bytes\";i:1232;s:11:\"size_before\";i:24680;s:10:\"size_after\";i:23448;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.72;s:5:\"bytes\";i:2117;s:11:\"size_before\";i:44842;s:10:\"size_after\";i:42725;s:4:\"time\";d:0.02;}}}'),(120137,8097,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5804652428241055;s:5:\"bytes\";i:14476;s:11:\"size_before\";i:404305;s:10:\"size_after\";i:389829;s:4:\"time\";d:0.24;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.48;s:5:\"bytes\";i:290;s:11:\"size_before\";i:6473;s:10:\"size_after\";i:6183;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.71;s:5:\"bytes\";i:497;s:11:\"size_before\";i:13379;s:10:\"size_after\";i:12882;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62;s:5:\"bytes\";i:4316;s:11:\"size_before\";i:119290;s:10:\"size_after\";i:114974;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62;s:5:\"bytes\";i:3940;s:11:\"size_before\";i:108732;s:10:\"size_after\";i:104792;s:4:\"time\";d:0.07;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5;s:5:\"bytes\";i:3950;s:11:\"size_before\";i:112697;s:10:\"size_after\";i:108747;s:4:\"time\";d:0.07;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.55;s:5:\"bytes\";i:622;s:11:\"size_before\";i:17503;s:10:\"size_after\";i:16881;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.28;s:5:\"bytes\";i:861;s:11:\"size_before\";i:26231;s:10:\"size_after\";i:25370;s:4:\"time\";d:0.02;}}}'),(120136,8097,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:905;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2019/09/kitchen-3689918_1920.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"kitchen-3689918_1920-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:\"kitchen-3689918_1920-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"kitchen-3689918_1920-768x1086.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"kitchen-3689918_1920-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:32:\"kitchen-3689918_1920-905x750.jpg\";s:5:\"width\";i:905;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:32:\"kitchen-3689918_1920-250x354.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"kitchen-3689918_1920-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6500\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535018672\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"10\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(120135,8097,'_wp_attached_file','2019/09/kitchen-3689918_1920.jpg'),(4260,1330,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.274673697035063;s:5:\"bytes\";i:35323;s:11:\"size_before\";i:100137;s:10:\"size_after\";i:64814;s:4:\"time\";d:0.75000000000000011;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.109999999999999;s:5:\"bytes\";i:4838;s:11:\"size_before\";i:13037;s:10:\"size_after\";i:8199;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.549999999999997;s:5:\"bytes\";i:16039;s:11:\"size_before\";i:42712;s:10:\"size_after\";i:26673;s:4:\"time\";d:0.27000000000000002;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.140000000000001;s:5:\"bytes\";i:10582;s:11:\"size_before\";i:27742;s:10:\"size_after\";i:17160;s:4:\"time\";d:0.12;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.420000000000002;s:5:\"bytes\";i:2588;s:11:\"size_before\";i:7519;s:10:\"size_after\";i:4931;s:4:\"time\";d:0.13;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.98;s:5:\"bytes\";i:1276;s:11:\"size_before\";i:9127;s:10:\"size_after\";i:7851;s:4:\"time\";d:0.16;}}}'),(120217,8136,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(120216,8136,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:45:\"Chicagoland Remodeling, Inc. \"[your-subject]\"\";s:6:\"sender\";s:66:\"Chicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:141:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\";s:18:\"additional_headers\";s:33:\"Reply-To: kacper@infosystrade.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(120215,8136,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:31:\"chicagolandremodeling.com quote\";s:6:\"sender\";s:49:\"[your-name] <wordpress@chicagolandremodeling.com>\";s:9:\"recipient\";s:17:\"cr@strony1234.com\";s:4:\"body\";s:195:\"From: [your-name] <[your-email]>\nPhone: [your-phone]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.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;}'),(4299,1329,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.010997643362138;s:5:\"bytes\";i:36675;s:11:\"size_before\";i:114570;s:10:\"size_after\";i:77895;s:4:\"time\";d:0.8600000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.259999999999998;s:5:\"bytes\";i:4534;s:11:\"size_before\";i:13236;s:10:\"size_after\";i:8702;s:4:\"time\";d:0.050000000000000003;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.079999999999998;s:5:\"bytes\";i:14331;s:11:\"size_before\";i:40853;s:10:\"size_after\";i:26522;s:4:\"time\";d:0.23000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.32;s:5:\"bytes\";i:10137;s:11:\"size_before\";i:28699;s:10:\"size_after\";i:18562;s:4:\"time\";d:0.14000000000000001;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.25;s:5:\"bytes\";i:2418;s:11:\"size_before\";i:10398;s:10:\"size_after\";i:7980;s:4:\"time\";d:0.13;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.57;s:5:\"bytes\";i:5255;s:11:\"size_before\";i:21384;s:10:\"size_after\";i:16129;s:4:\"time\";d:0.31;}}}'),(120315,8178,'hefo_after','0'),(120316,8178,'_yoast_wpseo_content_score','30'),(120318,8178,'slide_template','default'),(120317,8178,'_yoast_wpseo_title','Pozycjonowanie Stron & Strony Internetowe Chicago, IL | Strony123'),(120314,8178,'hefo_before','0'),(120313,8178,'_wp_page_template','default'),(120312,8178,'_edit_lock','1612378913:1'),(119765,7931,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:4:\"1125\";s:6:\"height\";s:3:\"750\";s:4:\"file\";s:32:\"2018/08/pexels-photo-276554.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-276554-150x150.jpeg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-276554-300x200.jpeg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-276554-768x512.jpeg\";s:5:\"width\";s:3:\"768\";s:6:\"height\";s:3:\"512\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-276554-1024x683.jpeg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"683\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:33:\"pexels-photo-276554-1125x750.jpeg\";s:5:\"width\";s:4:\"1125\";s:6:\"height\";s:3:\"750\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-276554-250x167.jpeg\";s:5:\"width\";s:3:\"250\";s:6:\"height\";s:3:\"167\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-276554-612x257.jpeg\";s:5:\"width\";s:3:\"612\";s:6:\"height\";s:3:\"257\";s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119762,7930,'_edit_last','1'),(119763,7930,'_edit_lock','1533120274:1'),(119764,7931,'_wp_attached_file','2018/08/pexels-photo-276554.jpeg'),(119811,7946,'_wp_attached_file','2018/09/zz.jpg'),(119812,7946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2018/09/zz.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"zz-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:\"zz-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"zz-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"zz-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:15:\"zz-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:14:\"zz-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"zz-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120390,983,'_yoast_wpseo_estimated-reading-time-minutes',''),(119810,7945,'_edit_lock','1612441137:1'),(119809,7945,'_edit_last','1'),(119752,7927,'_edit_lock','1533115693:1'),(119751,7927,'_edit_last','1'),(119729,910,'_yoast_wpseo_title','Gallery'),(4357,1230,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.6752573709643532;s:5:\"bytes\";i:382;s:11:\"size_before\";i:14279;s:10:\"size_after\";i:13897;s:4:\"time\";d:0.02;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:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0599999999999996;s:5:\"bytes\";i:382;s:11:\"size_before\";i:6305;s:10:\"size_after\";i:5923;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:7974;s:10:\"size_after\";i:7974;s:4:\"time\";d:0.01;}}}'),(4423,1046,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.0082962606709152;s:5:\"bytes\";i:5004;s:11:\"size_before\";i:166340;s:10:\"size_after\";i:161336;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.6200000000000001;s:5:\"bytes\";i:376;s:11:\"size_before\";i:6694;s:10:\"size_after\";i:6318;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999998;s:5:\"bytes\";i:505;s:11:\"size_before\";i:10608;s:10:\"size_after\";i:10103;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6800000000000002;s:5:\"bytes\";i:1170;s:11:\"size_before\";i:43671;s:10:\"size_after\";i:42501;s:4:\"time\";d:0.050000000000000003;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2200000000000002;s:5:\"bytes\";i:1491;s:11:\"size_before\";i:67183;s:10:\"size_after\";i:65692;s:4:\"time\";d:0.029999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9400000000000004;s:5:\"bytes\";i:399;s:11:\"size_before\";i:8069;s:10:\"size_after\";i:7670;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5299999999999998;s:5:\"bytes\";i:1063;s:11:\"size_before\";i:30115;s:10:\"size_after\";i:29052;s:4:\"time\";d:0.02;}}}'),(120165,8101,'_wp_attached_file','2019/09/northbrook-przerabianiec.png'),(120166,8101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:36:\"2019/09/northbrook-przerabianiec.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"northbrook-przerabianiec-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"northbrook-przerabianiec-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:35:\"northbrook-przerabianiec-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4414,1187,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8680936006527569;s:5:\"bytes\";i:10619;s:11:\"size_before\";i:274528;s:10:\"size_after\";i:263909;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:6.3300000000000001;s:5:\"bytes\";i:564;s:11:\"size_before\";i:8913;s:10:\"size_after\";i:8349;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1600000000000001;s:5:\"bytes\";i:1168;s:11:\"size_before\";i:18968;s:10:\"size_after\";i:17800;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4199999999999999;s:5:\"bytes\";i:4020;s:11:\"size_before\";i:90909;s:10:\"size_after\";i:86889;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2199999999999998;s:5:\"bytes\";i:856;s:11:\"size_before\";i:13753;s:10:\"size_after\";i:12897;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996;s:5:\"bytes\";i:2373;s:11:\"size_before\";i:46523;s:10:\"size_after\";i:44150;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.72;s:5:\"bytes\";i:1638;s:11:\"size_before\";i:95462;s:10:\"size_after\";i:93824;s:4:\"time\";d:0.050000000000000003;}}}'),(4415,1149,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.4121486862026487;s:5:\"bytes\";i:15483;s:11:\"size_before\";i:453761;s:10:\"size_after\";i:438278;s:4:\"time\";d:0.29000000000000004;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.1699999999999999;s:5:\"bytes\";i:317;s:11:\"size_before\";i:6127;s:10:\"size_after\";i:5810;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5300000000000002;s:5:\"bytes\";i:711;s:11:\"size_before\";i:15693;s:10:\"size_after\";i:14982;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999998;s:5:\"bytes\";i:2533;s:11:\"size_before\";i:72094;s:10:\"size_after\";i:69561;s:4:\"time\";d:0.050000000000000003;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.52;s:5:\"bytes\";i:4066;s:11:\"size_before\";i:115403;s:10:\"size_after\";i:111337;s:4:\"time\";d:0.059999999999999998;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.98;s:5:\"bytes\";i:5922;s:11:\"size_before\";i:198551;s:10:\"size_after\";i:192629;s:4:\"time\";d:0.12;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6299999999999999;s:5:\"bytes\";i:540;s:11:\"size_before\";i:11662;s:10:\"size_after\";i:11122;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0700000000000003;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:34231;s:10:\"size_after\";i:32837;s:4:\"time\";d:0.029999999999999999;}}}'),(4416,1141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.0156519507918631;s:5:\"bytes\";i:2828;s:11:\"size_before\";i:140302;s:10:\"size_after\";i:137474;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6399999999999997;s:5:\"bytes\";i:522;s:11:\"size_before\";i:7862;s:10:\"size_after\";i:7340;s:4:\"time\";d:0.02;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5499999999999998;s:5:\"bytes\";i:996;s:11:\"size_before\";i:17958;s:10:\"size_after\";i:16962;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000001;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:22848;s:10:\"size_after\";i:21574;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000001;s:5:\"bytes\";i:36;s:11:\"size_before\";i:91634;s:10:\"size_after\";i:91598;s:4:\"time\";d:0.029999999999999999;}}}'),(4417,1140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1895164380412298;s:5:\"bytes\";i:2081;s:11:\"size_before\";i:65245;s:10:\"size_after\";i:63164;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54;s:5:\"bytes\";i:404;s:11:\"size_before\";i:7296;s:10:\"size_after\";i:6892;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:748;s:11:\"size_before\";i:15617;s:10:\"size_after\";i:14869;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:576;s:11:\"size_before\";i:11621;s:10:\"size_after\";i:11045;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1499999999999999;s:5:\"bytes\";i:353;s:11:\"size_before\";i:30711;s:10:\"size_after\";i:30358;s:4:\"time\";d:0.02;}}}'),(4418,1139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.8699214434761262;s:5:\"bytes\";i:11223;s:11:\"size_before\";i:391056;s:10:\"size_after\";i:379833;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:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6399999999999997;s:5:\"bytes\";i:250;s:11:\"size_before\";i:5387;s:10:\"size_after\";i:5137;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8599999999999999;s:5:\"bytes\";i:542;s:11:\"size_before\";i:14025;s:10:\"size_after\";i:13483;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8999999999999999;s:5:\"bytes\";i:1989;s:11:\"size_before\";i:68475;s:10:\"size_after\";i:66486;s:4:\"time\";d:0.040000000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8900000000000001;s:5:\"bytes\";i:3227;s:11:\"size_before\";i:111599;s:10:\"size_after\";i:108372;s:4:\"time\";d:0.070000000000000007;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6600000000000001;s:5:\"bytes\";i:3911;s:11:\"size_before\";i:146884;s:10:\"size_after\";i:142973;s:4:\"time\";d:0.080000000000000002;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8599999999999999;s:5:\"bytes\";i:395;s:11:\"size_before\";i:10238;s:10:\"size_after\";i:9843;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6400000000000001;s:5:\"bytes\";i:909;s:11:\"size_before\";i:34448;s:10:\"size_after\";i:33539;s:4:\"time\";d:0.029999999999999999;}}}'),(4419,1127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.160569679155419;s:5:\"bytes\";i:24128;s:11:\"size_before\";i:237467;s:10:\"size_after\";i:213339;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:431;s:11:\"size_before\";i:7447;s:10:\"size_after\";i:7016;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8700000000000001;s:5:\"bytes\";i:723;s:11:\"size_before\";i:14850;s:10:\"size_after\";i:14127;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3099999999999996;s:5:\"bytes\";i:599;s:11:\"size_before\";i:11273;s:10:\"size_after\";i:10674;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:1256;s:11:\"size_before\";i:33522;s:10:\"size_after\";i:32266;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4;s:5:\"bytes\";i:21119;s:11:\"size_before\";i:170375;s:10:\"size_after\";i:149256;s:4:\"time\";d:0.14000000000000001;}}}'),(4420,1091,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3879347346027284;s:5:\"bytes\";i:7054;s:11:\"size_before\";i:160759;s:10:\"size_after\";i:153705;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:3.9100000000000001;s:5:\"bytes\";i:192;s:11:\"size_before\";i:4916;s:10:\"size_after\";i:4724;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:445;s:11:\"size_before\";i:9191;s:10:\"size_after\";i:8746;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002;s:5:\"bytes\";i:1679;s:11:\"size_before\";i:42066;s:10:\"size_after\";i:40387;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996;s:5:\"bytes\";i:3090;s:11:\"size_before\";i:71010;s:10:\"size_after\";i:67920;s:4:\"time\";d:0.040000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0499999999999998;s:5:\"bytes\";i:349;s:11:\"size_before\";i:6910;s:10:\"size_after\";i:6561;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8700000000000001;s:5:\"bytes\";i:1299;s:11:\"size_before\";i:26666;s:10:\"size_after\";i:25367;s:4:\"time\";d:0.02;}}}'),(4421,1090,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1397182997377024;s:5:\"bytes\";i:9217;s:11:\"size_before\";i:222648;s:10:\"size_after\";i:213431;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.3399999999999999;s:5:\"bytes\";i:403;s:11:\"size_before\";i:7548;s:10:\"size_after\";i:7145;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:741;s:11:\"size_before\";i:13016;s:10:\"size_after\";i:12275;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999998;s:5:\"bytes\";i:2374;s:11:\"size_before\";i:59164;s:10:\"size_after\";i:56790;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5699999999999998;s:5:\"bytes\";i:3418;s:11:\"size_before\";i:95848;s:10:\"size_after\";i:92430;s:4:\"time\";d:0.040000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8600000000000003;s:5:\"bytes\";i:565;s:11:\"size_before\";i:9636;s:10:\"size_after\";i:9071;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000001;s:5:\"bytes\";i:1716;s:11:\"size_before\";i:37436;s:10:\"size_after\";i:35720;s:4:\"time\";d:0.02;}}}'),(4422,1047,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6308355439690092;s:5:\"bytes\";i:11894;s:11:\"size_before\";i:327583;s:10:\"size_after\";i:315689;s:4:\"time\";d:0.23000000000000001;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.5099999999999998;s:5:\"bytes\";i:338;s:11:\"size_before\";i:6135;s:10:\"size_after\";i:5797;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3899999999999997;s:5:\"bytes\";i:566;s:11:\"size_before\";i:12891;s:10:\"size_after\";i:12325;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3700000000000001;s:5:\"bytes\";i:1840;s:11:\"size_before\";i:54523;s:10:\"size_after\";i:52683;s:4:\"time\";d:0.040000000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999;s:5:\"bytes\";i:2664;s:11:\"size_before\";i:84045;s:10:\"size_after\";i:81381;s:4:\"time\";d:0.050000000000000003;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7000000000000002;s:5:\"bytes\";i:4940;s:11:\"size_before\";i:133385;s:10:\"size_after\";i:128445;s:4:\"time\";d:0.089999999999999997;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9299999999999997;s:5:\"bytes\";i:493;s:11:\"size_before\";i:9991;s:10:\"size_after\";i:9498;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.96;s:5:\"bytes\";i:1053;s:11:\"size_before\";i:26613;s:10:\"size_after\";i:25560;s:4:\"time\";d:0.02;}}}'),(4424,1045,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.5802476556864633;s:5:\"bytes\";i:12019;s:11:\"size_before\";i:465808;s:10:\"size_after\";i:453789;s:4:\"time\";d:0.32000000000000006;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.96;s:5:\"bytes\";i:334;s:11:\"size_before\";i:6734;s:10:\"size_after\";i:6400;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:709;s:11:\"size_before\";i:15083;s:10:\"size_after\";i:14374;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.48;s:5:\"bytes\";i:1719;s:11:\"size_before\";i:69291;s:10:\"size_after\";i:67572;s:4:\"time\";d:0.040000000000000001;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3700000000000001;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:113219;s:10:\"size_after\";i:110539;s:4:\"time\";d:0.059999999999999998;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2000000000000002;s:5:\"bytes\";i:4743;s:11:\"size_before\";i:215299;s:10:\"size_after\";i:210556;s:4:\"time\";d:0.14000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6200000000000001;s:5:\"bytes\";i:526;s:11:\"size_before\";i:11392;s:10:\"size_after\";i:10866;s:4:\"time\";d:0.029999999999999999;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999998;s:5:\"bytes\";i:1308;s:11:\"size_before\";i:34790;s:10:\"size_after\";i:33482;s:4:\"time\";d:0.029999999999999999;}}}'),(4425,1017,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.2759114075230291;s:5:\"bytes\";i:2158;s:11:\"size_before\";i:169134;s:10:\"size_after\";i:166976;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1399999999999997;s:5:\"bytes\";i:240;s:11:\"size_before\";i:5804;s:10:\"size_after\";i:5564;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0199999999999996;s:5:\"bytes\";i:510;s:11:\"size_before\";i:12672;s:10:\"size_after\";i:12162;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3899999999999997;s:5:\"bytes\";i:427;s:11:\"size_before\";i:9729;s:10:\"size_after\";i:9302;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0899999999999999;s:5:\"bytes\";i:981;s:11:\"size_before\";i:31769;s:10:\"size_after\";i:30788;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:109160;s:10:\"size_after\";i:109160;s:4:\"time\";d:0.080000000000000002;}}}'),(4426,1011,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.988460516866532;s:5:\"bytes\";i:23368;s:11:\"size_before\";i:101651;s:10:\"size_after\";i:78283;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9400000000000004;s:5:\"bytes\";i:364;s:11:\"size_before\";i:6123;s:10:\"size_after\";i:5759;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:614;s:11:\"size_before\";i:14133;s:10:\"size_after\";i:13519;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9299999999999997;s:5:\"bytes\";i:483;s:11:\"size_before\";i:9791;s:10:\"size_after\";i:9308;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.59;s:5:\"bytes\";i:21907;s:11:\"size_before\";i:71604;s:10:\"size_after\";i:49697;s:4:\"time\";d:0.02;}}}'),(4427,1010,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.982419993181448;s:5:\"bytes\";i:29660;s:11:\"size_before\";i:134926;s:10:\"size_after\";i:105266;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:399;s:11:\"size_before\";i:8337;s:10:\"size_after\";i:7938;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4299999999999997;s:5:\"bytes\";i:968;s:11:\"size_before\";i:21855;s:10:\"size_after\";i:20887;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0300000000000002;s:5:\"bytes\";i:577;s:11:\"size_before\";i:14302;s:10:\"size_after\";i:13725;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.649999999999999;s:5:\"bytes\";i:27716;s:11:\"size_before\";i:90432;s:10:\"size_after\";i:62716;s:4:\"time\";d:0.040000000000000001;}}}'),(4428,1009,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.357271372024883;s:5:\"bytes\";i:19731;s:11:\"size_before\";i:77812;s:10:\"size_after\";i:58081;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.02;s:5:\"bytes\";i:137;s:11:\"size_before\";i:4541;s:10:\"size_after\";i:4404;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8900000000000001;s:5:\"bytes\";i:274;s:11:\"size_before\";i:9482;s:10:\"size_after\";i:9208;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999;s:5:\"bytes\";i:219;s:11:\"size_before\";i:6912;s:10:\"size_after\";i:6693;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.579999999999998;s:5:\"bytes\";i:19101;s:11:\"size_before\";i:56877;s:10:\"size_after\";i:37776;s:4:\"time\";d:0.02;}}}'),(4429,1007,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.580368046490083;s:5:\"bytes\";i:18599;s:11:\"size_before\";i:94988;s:10:\"size_after\";i:76389;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:305;s:11:\"size_before\";i:6100;s:10:\"size_after\";i:5795;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04;s:5:\"bytes\";i:568;s:11:\"size_before\";i:14047;s:10:\"size_after\";i:13479;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8799999999999999;s:5:\"bytes\";i:373;s:11:\"size_before\";i:9616;s:10:\"size_after\";i:9243;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.600000000000001;s:5:\"bytes\";i:17353;s:11:\"size_before\";i:65225;s:10:\"size_after\";i:47872;s:4:\"time\";d:0.02;}}}'),(4430,1006,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.697811607992389;s:5:\"bytes\";i:31133;s:11:\"size_before\";i:131375;s:10:\"size_after\";i:100242;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1600000000000001;s:5:\"bytes\";i:479;s:11:\"size_before\";i:7775;s:10:\"size_after\";i:7296;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4100000000000001;s:5:\"bytes\";i:1062;s:11:\"size_before\";i:19620;s:10:\"size_after\";i:18558;s:4:\"time\";d:0.02;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6600000000000001;s:5:\"bytes\";i:755;s:11:\"size_before\";i:13340;s:10:\"size_after\";i:12585;s:4:\"time\";d:0.029999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.809999999999999;s:5:\"bytes\";i:28837;s:11:\"size_before\";i:90640;s:10:\"size_after\";i:61803;s:4:\"time\";d:0.02;}}}'),(4431,1005,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.857434717055199;s:5:\"bytes\";i:22258;s:11:\"size_before\";i:112089;s:10:\"size_after\";i:89831;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:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1600000000000001;s:5:\"bytes\";i:446;s:11:\"size_before\";i:7238;s:10:\"size_after\";i:6792;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:846;s:11:\"size_before\";i:16931;s:10:\"size_after\";i:16085;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3200000000000003;s:5:\"bytes\";i:628;s:11:\"size_before\";i:11811;s:10:\"size_after\";i:11183;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.719999999999999;s:5:\"bytes\";i:20338;s:11:\"size_before\";i:76109;s:10:\"size_after\";i:55771;s:4:\"time\";d:0.02;}}}'),(4432,965,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6275983195122194;s:5:\"bytes\";i:1631;s:11:\"size_before\";i:100209;s:10:\"size_after\";i:98578;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3700000000000001;s:5:\"bytes\";i:323;s:11:\"size_before\";i:6012;s:10:\"size_after\";i:5689;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6800000000000002;s:5:\"bytes\";i:393;s:11:\"size_before\";i:10681;s:10:\"size_after\";i:10288;s:4:\"time\";d:0.029999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7999999999999998;s:5:\"bytes\";i:307;s:11:\"size_before\";i:8071;s:10:\"size_after\";i:7764;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999998;s:5:\"bytes\";i:608;s:11:\"size_before\";i:24251;s:10:\"size_after\";i:23643;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51194;s:10:\"size_after\";i:51194;s:4:\"time\";d:0.029999999999999999;}}}'),(4433,964,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.8520350480497456;s:5:\"bytes\";i:2621;s:11:\"size_before\";i:141520;s:10:\"size_after\";i:138899;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:310;s:11:\"size_before\";i:5668;s:10:\"size_after\";i:5358;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:612;s:11:\"size_before\";i:12145;s:10:\"size_after\";i:11533;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9100000000000001;s:5:\"bytes\";i:438;s:11:\"size_before\";i:8924;s:10:\"size_after\";i:8486;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999998;s:5:\"bytes\";i:1261;s:11:\"size_before\";i:33568;s:10:\"size_after\";i:32307;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81215;s:10:\"size_after\";i:81215;s:4:\"time\";d:0.050000000000000003;}}}'),(4434,960,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.4939534738192455;s:5:\"bytes\";i:12453;s:11:\"size_before\";i:191763;s:10:\"size_after\";i:179310;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0499999999999998;s:5:\"bytes\";i:249;s:11:\"size_before\";i:6143;s:10:\"size_after\";i:5894;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:415;s:11:\"size_before\";i:8834;s:10:\"size_after\";i:8419;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2699999999999996;s:5:\"bytes\";i:343;s:11:\"size_before\";i:6512;s:10:\"size_after\";i:6169;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.73;s:5:\"bytes\";i:1195;s:11:\"size_before\";i:32037;s:10:\"size_after\";i:30842;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999;s:5:\"bytes\";i:10251;s:11:\"size_before\";i:138237;s:10:\"size_after\";i:127986;s:4:\"time\";d:0.040000000000000001;}}}'),(4435,958,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.4447670399557584;s:5:\"bytes\";i:9323;s:11:\"size_before\";i:144660;s:10:\"size_after\";i:135337;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6299999999999999;s:5:\"bytes\";i:232;s:11:\"size_before\";i:5007;s:10:\"size_after\";i:4775;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4400000000000004;s:5:\"bytes\";i:358;s:11:\"size_before\";i:8065;s:10:\"size_after\";i:7707;s:4:\"time\";d:0.029999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999;s:5:\"bytes\";i:333;s:11:\"size_before\";i:6141;s:10:\"size_after\";i:5808;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8799999999999999;s:5:\"bytes\";i:682;s:11:\"size_before\";i:23676;s:10:\"size_after\";i:22994;s:4:\"time\";d:0.040000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000001;s:5:\"bytes\";i:7718;s:11:\"size_before\";i:101771;s:10:\"size_after\";i:94053;s:4:\"time\";d:0.029999999999999999;}}}'),(4436,934,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:259127;s:10:\"size_after\";i:259127;s:4:\"time\";d:0.80000000000000004;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22374;s:10:\"size_after\";i:22374;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:53552;s:10:\"size_after\";i:53552;s:4:\"time\";d:0.12;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39562;s:10:\"size_after\";i:39562;s:4:\"time\";d:0.089999999999999997;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15342;s:10:\"size_after\";i:15342;s:4:\"time\";d:0.10000000000000001;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44004;s:10:\"size_after\";i:44004;s:4:\"time\";d:0.10000000000000001;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28945;s:10:\"size_after\";i:28945;s:4:\"time\";d:0.050000000000000003;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27229;s:10:\"size_after\";i:27229;s:4:\"time\";d:0.11;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2285;s:10:\"size_after\";i:2285;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:25834;s:10:\"size_after\";i:25834;s:4:\"time\";d:0.19;}}}'),(4437,933,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:73.336277323912569;s:5:\"bytes\";i:16607;s:11:\"size_before\";i:22645;s:10:\"size_after\";i:6038;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.340000000000003;s:5:\"bytes\";i:16607;s:11:\"size_before\";i:22645;s:10:\"size_after\";i:6038;s:4:\"time\";d:0.01;}}}'),(4438,919,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.412995301019798;s:5:\"bytes\";i:4799;s:11:\"size_before\";i:108747;s:10:\"size_after\";i:103948;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.2599999999999998;s:5:\"bytes\";i:250;s:11:\"size_before\";i:4750;s:10:\"size_after\";i:4500;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4699999999999998;s:5:\"bytes\";i:278;s:11:\"size_before\";i:6219;s:10:\"size_after\";i:5941;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3099999999999996;s:5:\"bytes\";i:1188;s:11:\"size_before\";i:27567;s:10:\"size_after\";i:26379;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5599999999999996;s:5:\"bytes\";i:2054;s:11:\"size_before\";i:45021;s:10:\"size_after\";i:42967;s:4:\"time\";d:0.040000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2300000000000004;s:5:\"bytes\";i:203;s:11:\"size_before\";i:4804;s:10:\"size_after\";i:4601;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0499999999999998;s:5:\"bytes\";i:826;s:11:\"size_before\";i:20386;s:10:\"size_after\";i:19560;s:4:\"time\";d:0.02;}}}'),(4439,918,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.0729860042904544;s:5:\"bytes\";i:4455;s:11:\"size_before\";i:144973;s:10:\"size_after\";i:140518;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:4.0300000000000002;s:5:\"bytes\";i:214;s:11:\"size_before\";i:5309;s:10:\"size_after\";i:5095;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.98;s:5:\"bytes\";i:341;s:11:\"size_before\";i:8576;s:10:\"size_after\";i:8235;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9399999999999999;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:37514;s:10:\"size_after\";i:36410;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5800000000000001;s:5:\"bytes\";i:1510;s:11:\"size_before\";i:58533;s:10:\"size_after\";i:57023;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996;s:5:\"bytes\";i:289;s:11:\"size_before\";i:6645;s:10:\"size_after\";i:6356;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999998;s:5:\"bytes\";i:997;s:11:\"size_before\";i:28396;s:10:\"size_after\";i:27399;s:4:\"time\";d:0.029999999999999999;}}}'),(4440,880,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.826279257605144;s:5:\"bytes\";i:45902;s:11:\"size_before\";i:231521;s:10:\"size_after\";i:185619;s:4:\"time\";d:0.59000000000000008;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.210000000000001;s:5:\"bytes\";i:3452;s:11:\"size_before\";i:26124;s:10:\"size_after\";i:22672;s:4:\"time\";d:0.040000000000000001;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.15;s:5:\"bytes\";i:8688;s:11:\"size_before\";i:66049;s:10:\"size_after\";i:57361;s:4:\"time\";d:0.12;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.77;s:5:\"bytes\";i:10371;s:11:\"size_before\";i:47643;s:10:\"size_after\";i:37272;s:4:\"time\";d:0.089999999999999997;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:31;s:5:\"bytes\";i:11191;s:11:\"size_before\";i:36104;s:10:\"size_after\";i:24913;s:4:\"time\";d:0.14999999999999999;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.940000000000001;s:5:\"bytes\";i:12200;s:11:\"size_before\";i:55601;s:10:\"size_after\";i:43401;s:4:\"time\";d:0.19;}}}'),(4556,474,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:218049;s:10:\"size_after\";i:218049;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:218049;s:10:\"size_after\";i:218049;s:4:\"time\";d:0.11;}}}'),(4555,475,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:217845;s:10:\"size_after\";i:217845;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:217845;s:10:\"size_after\";i:217845;s:4:\"time\";d:0.11;}}}'),(4554,476,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199129;s:10:\"size_after\";i:199129;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199129;s:10:\"size_after\";i:199129;s:4:\"time\";d:0.13;}}}'),(4477,872,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.759668463568225;s:5:\"bytes\";i:67208;s:11:\"size_before\";i:308865;s:10:\"size_after\";i:241657;s:4:\"time\";d:1.6600000000000001;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.91;s:5:\"bytes\";i:3672;s:11:\"size_before\";i:12701;s:10:\"size_after\";i:9029;s:4:\"time\";d:0.070000000000000007;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.670000000000002;s:5:\"bytes\";i:3953;s:11:\"size_before\";i:16698;s:10:\"size_after\";i:12745;s:4:\"time\";d:0.070000000000000007;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.280000000000001;s:5:\"bytes\";i:28338;s:11:\"size_before\";i:96798;s:10:\"size_after\";i:68460;s:4:\"time\";d:0.48999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.550000000000001;s:5:\"bytes\";i:17182;s:11:\"size_before\";i:118052;s:10:\"size_after\";i:100870;s:4:\"time\";d:0.73999999999999999;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.719999999999999;s:5:\"bytes\";i:2784;s:11:\"size_before\";i:11738;s:10:\"size_after\";i:8954;s:4:\"time\";d:0.050000000000000003;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.329999999999998;s:5:\"bytes\";i:11279;s:11:\"size_before\";i:52878;s:10:\"size_after\";i:41599;s:4:\"time\";d:0.23999999999999999;}}}'),(4478,865,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0951976601566198;s:5:\"bytes\";i:964;s:11:\"size_before\";i:10599;s:10:\"size_after\";i:9635;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996;s:5:\"bytes\";i:964;s:11:\"size_before\";i:10599;s:10:\"size_after\";i:9635;s:4:\"time\";d:0.070000000000000007;}}}'),(4479,862,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:40.576864380913626;s:5:\"bytes\";i:39883;s:11:\"size_before\";i:98290;s:10:\"size_after\";i:58407;s:4:\"time\";d:0.48999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.329999999999998;s:5:\"bytes\";i:5697;s:11:\"size_before\";i:17621;s:10:\"size_after\";i:11924;s:4:\"time\";d:0.11;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999998;s:5:\"bytes\";i:2203;s:11:\"size_before\";i:22580;s:10:\"size_after\";i:20377;s:4:\"time\";d:0.13;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.100000000000001;s:5:\"bytes\";i:7132;s:11:\"size_before\";i:22935;s:10:\"size_after\";i:15803;s:4:\"time\";d:0.14000000000000001;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.689999999999998;s:5:\"bytes\";i:24851;s:11:\"size_before\";i:35154;s:10:\"size_after\";i:10303;s:4:\"time\";d:0.11;}}}'),(4480,860,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.727028839704897;s:5:\"bytes\";i:797;s:11:\"size_before\";i:2982;s:10:\"size_after\";i:2185;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.73;s:5:\"bytes\";i:797;s:11:\"size_before\";i:2982;s:10:\"size_after\";i:2185;s:4:\"time\";d:0.02;}}}'),(4481,858,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:44.678815662353898;s:5:\"bytes\";i:47171;s:11:\"size_before\";i:105578;s:10:\"size_after\";i:58407;s:4:\"time\";d:0.35999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.329999999999998;s:5:\"bytes\";i:5697;s:11:\"size_before\";i:17621;s:10:\"size_after\";i:11924;s:4:\"time\";d:0.080000000000000002;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.780000000000001;s:5:\"bytes\";i:9491;s:11:\"size_before\";i:29868;s:10:\"size_after\";i:20377;s:4:\"time\";d:0.10000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.100000000000001;s:5:\"bytes\";i:7132;s:11:\"size_before\";i:22935;s:10:\"size_after\";i:15803;s:4:\"time\";d:0.070000000000000007;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.689999999999998;s:5:\"bytes\";i:24851;s:11:\"size_before\";i:35154;s:10:\"size_after\";i:10303;s:4:\"time\";d:0.11;}}}'),(4482,850,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6460126219162365;s:5:\"bytes\";i:4521;s:11:\"size_before\";i:52290;s:10:\"size_after\";i:47769;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1799999999999997;s:5:\"bytes\";i:364;s:11:\"size_before\";i:4448;s:10:\"size_after\";i:4084;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1680;s:10:\"size_after\";i:1680;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.01;s:5:\"bytes\";i:959;s:11:\"size_before\";i:8707;s:10:\"size_after\";i:7748;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:14;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:7237;s:10:\"size_after\";i:6224;s:4:\"time\";d:0.01;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2300000000000004;s:5:\"bytes\";i:2185;s:11:\"size_before\";i:30218;s:10:\"size_after\";i:28033;s:4:\"time\";d:0.02;}}}'),(4483,849,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.5782179681436865;s:5:\"bytes\";i:21360;s:11:\"size_before\";i:324708;s:10:\"size_after\";i:303348;s:4:\"time\";d:0.28999999999999998;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:1714;s:10:\"size_after\";i:1714;s:4:\"time\";d:0.029999999999999999;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:14314;s:10:\"size_after\";i:13097;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:4971;s:11:\"size_before\";i:47341;s:10:\"size_after\";i:42370;s:4:\"time\";d:0.040000000000000001;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57;s:5:\"bytes\";i:7753;s:11:\"size_before\";i:61663;s:10:\"size_after\";i:53910;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999998;s:5:\"bytes\";i:1025;s:11:\"size_before\";i:11704;s:10:\"size_after\";i:10679;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9699999999999998;s:5:\"bytes\";i:1708;s:11:\"size_before\";i:24502;s:10:\"size_after\";i:22794;s:4:\"time\";d:0.02;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8700000000000001;s:5:\"bytes\";i:4686;s:11:\"size_before\";i:163470;s:10:\"size_after\";i:158784;s:4:\"time\";d:0.12;}}}'),(4484,835,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:37.927664618642147;s:5:\"bytes\";i:41915;s:11:\"size_before\";i:110513;s:10:\"size_after\";i:68598;s:4:\"time\";d:0.90000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000004;s:5:\"bytes\";i:257;s:11:\"size_before\";i:2596;s:10:\"size_after\";i:2339;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.159999999999997;s:5:\"bytes\";i:25397;s:11:\"size_before\";i:60243;s:10:\"size_after\";i:34846;s:4:\"time\";d:0.39000000000000001;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.899999999999999;s:5:\"bytes\";i:16261;s:11:\"size_before\";i:38808;s:10:\"size_after\";i:22547;s:4:\"time\";d:0.20999999999999999;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2670;s:10:\"size_after\";i:2670;s:4:\"time\";d:0.13;}s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6196;s:10:\"size_after\";i:6196;s:4:\"time\";d:0.14999999999999999;}}}'),(4485,828,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2907180385288965;s:5:\"bytes\";i:98;s:11:\"size_before\";i:2284;s:10:\"size_after\";i:2186;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29;s:5:\"bytes\";i:98;s:11:\"size_before\";i:2284;s:10:\"size_after\";i:2186;s:4:\"time\";d:0.02;}}}'),(4486,815,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3153434433541475;s:5:\"bytes\";i:5805;s:11:\"size_before\";i:134520;s:10:\"size_after\";i:128715;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:400;s:11:\"size_before\";i:6895;s:10:\"size_after\";i:6495;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:530;s:11:\"size_before\";i:10506;s:10:\"size_after\";i:9976;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000001;s:5:\"bytes\";i:3304;s:11:\"size_before\";i:80898;s:10:\"size_after\";i:77594;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3899999999999997;s:5:\"bytes\";i:435;s:11:\"size_before\";i:8071;s:10:\"size_after\";i:7636;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04;s:5:\"bytes\";i:1136;s:11:\"size_before\";i:28150;s:10:\"size_after\";i:27014;s:4:\"time\";d:0.02;}}}'),(4487,814,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2145087952969273;s:5:\"bytes\";i:7341;s:11:\"size_before\";i:174184;s:10:\"size_after\";i:166843;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:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:427;s:11:\"size_before\";i:7461;s:10:\"size_after\";i:7034;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5499999999999998;s:5:\"bytes\";i:794;s:11:\"size_before\";i:14308;s:10:\"size_after\";i:13514;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6600000000000001;s:5:\"bytes\";i:3791;s:11:\"size_before\";i:103474;s:10:\"size_after\";i:99683;s:4:\"time\";d:0.050000000000000003;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7699999999999996;s:5:\"bytes\";i:613;s:11:\"size_before\";i:10617;s:10:\"size_after\";i:10004;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4800000000000004;s:5:\"bytes\";i:1716;s:11:\"size_before\";i:38324;s:10:\"size_after\";i:36608;s:4:\"time\";d:0.02;}}}'),(4488,810,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:45.63304857835012;s:5:\"bytes\";i:10737;s:11:\"size_before\";i:23529;s:10:\"size_after\";i:12792;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:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.350000000000001;s:5:\"bytes\";i:416;s:11:\"size_before\";i:1211;s:10:\"size_after\";i:795;s:4:\"time\";i:0;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.810000000000002;s:5:\"bytes\";i:628;s:11:\"size_before\";i:1706;s:10:\"size_after\";i:1078;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.479999999999997;s:5:\"bytes\";i:5282;s:11:\"size_before\";i:8880;s:10:\"size_after\";i:3598;s:4:\"time\";d:0.029999999999999999;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.920000000000002;s:5:\"bytes\";i:2320;s:11:\"size_before\";i:5811;s:10:\"size_after\";i:3491;s:4:\"time\";d:0.01;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.789999999999999;s:5:\"bytes\";i:534;s:11:\"size_before\";i:1680;s:10:\"size_after\";i:1146;s:4:\"time\";i:0;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.710000000000001;s:5:\"bytes\";i:1557;s:11:\"size_before\";i:4241;s:10:\"size_after\";i:2684;s:4:\"time\";d:0.02;}}}'),(4489,690,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0583074491853308;s:5:\"bytes\";i:7426;s:11:\"size_before\";i:146808;s:10:\"size_after\";i:139382;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0599999999999996;s:5:\"bytes\";i:7426;s:11:\"size_before\";i:146808;s:10:\"size_after\";i:139382;s:4:\"time\";d:0.040000000000000001;}}}'),(4490,676,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8850140805264806;s:5:\"bytes\";i:3849;s:11:\"size_before\";i:99073;s:10:\"size_after\";i:95224;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8900000000000001;s:5:\"bytes\";i:3849;s:11:\"size_before\";i:99073;s:10:\"size_after\";i:95224;s:4:\"time\";d:0.029999999999999999;}}}'),(4491,671,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8239190193432941;s:5:\"bytes\";i:6686;s:11:\"size_before\";i:138601;s:10:\"size_after\";i:131915;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8200000000000003;s:5:\"bytes\";i:6686;s:11:\"size_before\";i:138601;s:10:\"size_after\";i:131915;s:4:\"time\";d:0.040000000000000001;}}}'),(4492,639,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.541281712861123;s:5:\"bytes\";i:787;s:11:\"size_before\";i:6819;s:10:\"size_after\";i:6032;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.539999999999999;s:5:\"bytes\";i:787;s:11:\"size_before\";i:6819;s:10:\"size_after\";i:6032;s:4:\"time\";d:0.02;}}}'),(4493,638,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.327807573541362;s:5:\"bytes\";i:697;s:11:\"size_before\";i:6153;s:10:\"size_after\";i:5456;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.33;s:5:\"bytes\";i:697;s:11:\"size_before\";i:6153;s:10:\"size_after\";i:5456;s:4:\"time\";d:0.02;}}}'),(4494,637,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.800759013282732;s:5:\"bytes\";i:702;s:11:\"size_before\";i:4743;s:10:\"size_after\";i:4041;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.800000000000001;s:5:\"bytes\";i:702;s:11:\"size_before\";i:4743;s:10:\"size_after\";i:4041;s:4:\"time\";d:0.02;}}}'),(4495,636,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1837893063911906;s:5:\"bytes\";i:809;s:11:\"size_before\";i:8809;s:10:\"size_after\";i:8000;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1799999999999997;s:5:\"bytes\";i:809;s:11:\"size_before\";i:8809;s:10:\"size_after\";i:8000;s:4:\"time\";d:0.02;}}}'),(4496,635,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0144792153199447;s:5:\"bytes\";i:772;s:11:\"size_before\";i:8564;s:10:\"size_after\";i:7792;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999998;s:5:\"bytes\";i:772;s:11:\"size_before\";i:8564;s:10:\"size_after\";i:7792;s:4:\"time\";d:0.02;}}}'),(4497,634,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.13739099483894;s:5:\"bytes\";i:682;s:11:\"size_before\";i:5619;s:10:\"size_after\";i:4937;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.140000000000001;s:5:\"bytes\";i:682;s:11:\"size_before\";i:5619;s:10:\"size_after\";i:4937;s:4:\"time\";d:0.02;}}}'),(4498,633,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.972789115646258;s:5:\"bytes\";i:792;s:11:\"size_before\";i:6615;s:10:\"size_after\";i:5823;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.970000000000001;s:5:\"bytes\";i:792;s:11:\"size_before\";i:6615;s:10:\"size_after\";i:5823;s:4:\"time\";d:0.01;}}}'),(4499,632,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.506727741196679;s:5:\"bytes\";i:734;s:11:\"size_before\";i:6986;s:10:\"size_after\";i:6252;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.51;s:5:\"bytes\";i:734;s:11:\"size_before\";i:6986;s:10:\"size_after\";i:6252;s:4:\"time\";d:0.01;}}}'),(4500,631,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8079478197849976;s:5:\"bytes\";i:812;s:11:\"size_before\";i:8279;s:10:\"size_after\";i:7467;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000005;s:5:\"bytes\";i:812;s:11:\"size_before\";i:8279;s:10:\"size_after\";i:7467;s:4:\"time\";d:0.01;}}}'),(4501,630,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.798750557786702;s:5:\"bytes\";i:726;s:11:\"size_before\";i:6723;s:10:\"size_after\";i:5997;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000001;s:5:\"bytes\";i:726;s:11:\"size_before\";i:6723;s:10:\"size_after\";i:5997;s:4:\"time\";d:0.01;}}}'),(4502,629,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.702808439290205;s:5:\"bytes\";i:766;s:11:\"size_before\";i:7157;s:10:\"size_after\";i:6391;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999;s:5:\"bytes\";i:766;s:11:\"size_before\";i:7157;s:10:\"size_after\";i:6391;s:4:\"time\";d:0.01;}}}'),(4503,628,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.524193548387096;s:5:\"bytes\";i:783;s:11:\"size_before\";i:7440;s:10:\"size_after\";i:6657;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.52;s:5:\"bytes\";i:783;s:11:\"size_before\";i:7440;s:10:\"size_after\";i:6657;s:4:\"time\";d:0.01;}}}'),(4504,627,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0608546589935095;s:5:\"bytes\";i:740;s:11:\"size_before\";i:8167;s:10:\"size_after\";i:7427;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000005;s:5:\"bytes\";i:740;s:11:\"size_before\";i:8167;s:10:\"size_after\";i:7427;s:4:\"time\";d:0.01;}}}'),(4505,626,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8505730451182352;s:5:\"bytes\";i:679;s:11:\"size_before\";i:6893;s:10:\"size_after\";i:6214;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996;s:5:\"bytes\";i:679;s:11:\"size_before\";i:6893;s:10:\"size_after\";i:6214;s:4:\"time\";d:0.01;}}}'),(4506,625,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.41280023869909;s:5:\"bytes\";i:765;s:11:\"size_before\";i:6703;s:10:\"size_after\";i:5938;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.41;s:5:\"bytes\";i:765;s:11:\"size_before\";i:6703;s:10:\"size_after\";i:5938;s:4:\"time\";d:0.01;}}}'),(4507,624,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5722051524462302;s:5:\"bytes\";i:810;s:11:\"size_before\";i:8462;s:10:\"size_after\";i:7652;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5700000000000003;s:5:\"bytes\";i:810;s:11:\"size_before\";i:8462;s:10:\"size_after\";i:7652;s:4:\"time\";d:0.040000000000000001;}}}'),(4508,623,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.782770324874738;s:5:\"bytes\";i:729;s:11:\"size_before\";i:6187;s:10:\"size_after\";i:5458;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.779999999999999;s:5:\"bytes\";i:729;s:11:\"size_before\";i:6187;s:10:\"size_after\";i:5458;s:4:\"time\";d:0.01;}}}'),(4509,622,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8210134821013479;s:5:\"bytes\";i:845;s:11:\"size_before\";i:8604;s:10:\"size_after\";i:7759;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8200000000000003;s:5:\"bytes\";i:845;s:11:\"size_before\";i:8604;s:10:\"size_after\";i:7759;s:4:\"time\";d:0.02;}}}'),(4510,589,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.706200950591358;s:5:\"bytes\";i:1240;s:11:\"size_before\";i:9047;s:10:\"size_after\";i:7807;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.710000000000001;s:5:\"bytes\";i:1240;s:11:\"size_before\";i:9047;s:10:\"size_after\";i:7807;s:4:\"time\";d:0.02;}}}'),(4511,588,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.836188436830835;s:5:\"bytes\";i:1258;s:11:\"size_before\";i:7472;s:10:\"size_after\";i:6214;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.84;s:5:\"bytes\";i:1258;s:11:\"size_before\";i:7472;s:10:\"size_after\";i:6214;s:4:\"time\";d:0.01;}}}'),(4512,501,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7895967897684599;s:5:\"bytes\";i:2232;s:11:\"size_before\";i:46601;s:10:\"size_after\";i:44369;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79;s:5:\"bytes\";i:2232;s:11:\"size_before\";i:46601;s:10:\"size_after\";i:44369;s:4:\"time\";d:0.040000000000000001;}}}'),(4513,500,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.4657961267519211;s:5:\"bytes\";i:2824;s:11:\"size_before\";i:81482;s:10:\"size_after\";i:78658;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4700000000000002;s:5:\"bytes\";i:2824;s:11:\"size_before\";i:81482;s:10:\"size_after\";i:78658;s:4:\"time\";d:0.02;}}}'),(4514,499,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6100109249257564;s:5:\"bytes\";i:2996;s:11:\"size_before\";i:64989;s:10:\"size_after\";i:61993;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6100000000000003;s:5:\"bytes\";i:2996;s:11:\"size_before\";i:64989;s:10:\"size_after\";i:61993;s:4:\"time\";d:0.02;}}}'),(4515,498,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6642024026574092;s:5:\"bytes\";i:3735;s:11:\"size_before\";i:80078;s:10:\"size_after\";i:76343;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6600000000000001;s:5:\"bytes\";i:3735;s:11:\"size_before\";i:80078;s:10:\"size_after\";i:76343;s:4:\"time\";d:0.040000000000000001;}}}'),(4516,497,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3263930450121268;s:5:\"bytes\";i:2747;s:11:\"size_before\";i:63494;s:10:\"size_after\";i:60747;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000001;s:5:\"bytes\";i:2747;s:11:\"size_before\";i:63494;s:10:\"size_after\";i:60747;s:4:\"time\";d:0.050000000000000003;}}}'),(4517,496,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3830860987918641;s:5:\"bytes\";i:2816;s:11:\"size_before\";i:52312;s:10:\"size_after\";i:49496;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3799999999999999;s:5:\"bytes\";i:2816;s:11:\"size_before\";i:52312;s:10:\"size_after\";i:49496;s:4:\"time\";d:0.02;}}}'),(4518,495,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4929312740050662;s:5:\"bytes\";i:2749;s:11:\"size_before\";i:61185;s:10:\"size_after\";i:58436;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002;s:5:\"bytes\";i:2749;s:11:\"size_before\";i:61185;s:10:\"size_after\";i:58436;s:4:\"time\";d:0.029999999999999999;}}}'),(4519,494,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7034007471338404;s:5:\"bytes\";i:2921;s:11:\"size_before\";i:62104;s:10:\"size_after\";i:59183;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7000000000000002;s:5:\"bytes\";i:2921;s:11:\"size_before\";i:62104;s:10:\"size_after\";i:59183;s:4:\"time\";d:0.02;}}}'),(4520,493,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4952141409907078;s:5:\"bytes\";i:3217;s:11:\"size_before\";i:71565;s:10:\"size_after\";i:68348;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:3217;s:11:\"size_before\";i:71565;s:10:\"size_after\";i:68348;s:4:\"time\";d:0.02;}}}'),(4521,492,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.362625207398759;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:81365;s:10:\"size_after\";i:78629;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3599999999999999;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:81365;s:10:\"size_after\";i:78629;s:4:\"time\";d:0.02;}}}'),(4522,491,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1318447343997384;s:5:\"bytes\";i:3760;s:11:\"size_before\";i:73268;s:10:\"size_after\";i:69508;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1299999999999999;s:5:\"bytes\";i:3760;s:11:\"size_before\";i:73268;s:10:\"size_after\";i:69508;s:4:\"time\";d:0.02;}}}'),(4523,490,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.0915538362346879;s:5:\"bytes\";i:3173;s:11:\"size_before\";i:77550;s:10:\"size_after\";i:74377;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0899999999999999;s:5:\"bytes\";i:3173;s:11:\"size_before\";i:77550;s:10:\"size_after\";i:74377;s:4:\"time\";d:0.050000000000000003;}}}'),(4524,489,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3296817944705266;s:5:\"bytes\";i:2905;s:11:\"size_before\";i:67095;s:10:\"size_after\";i:64190;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000001;s:5:\"bytes\";i:2905;s:11:\"size_before\";i:67095;s:10:\"size_after\";i:64190;s:4:\"time\";d:0.02;}}}'),(4525,488,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8376996138190167;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:57486;s:10:\"size_after\";i:54705;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8399999999999999;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:57486;s:10:\"size_after\";i:54705;s:4:\"time\";d:0.02;}}}'),(4526,486,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.4969502066417721;s:5:\"bytes\";i:3384;s:11:\"size_before\";i:75251;s:10:\"size_after\";i:71867;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:3384;s:11:\"size_before\";i:75251;s:10:\"size_after\";i:71867;s:4:\"time\";d:0.029999999999999999;}}}'),(4527,485,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7255132395607626;s:5:\"bytes\";i:3118;s:11:\"size_before\";i:54458;s:10:\"size_after\";i:51340;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7300000000000004;s:5:\"bytes\";i:3118;s:11:\"size_before\";i:54458;s:10:\"size_after\";i:51340;s:4:\"time\";d:0.02;}}}'),(4528,484,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7274915743861339;s:5:\"bytes\";i:2974;s:11:\"size_before\";i:51925;s:10:\"size_after\";i:48951;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7300000000000004;s:5:\"bytes\";i:2974;s:11:\"size_before\";i:51925;s:10:\"size_after\";i:48951;s:4:\"time\";d:0.02;}}}'),(4529,483,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.469016729259133;s:5:\"bytes\";i:2563;s:11:\"size_before\";i:46864;s:10:\"size_after\";i:44301;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:2563;s:11:\"size_before\";i:46864;s:10:\"size_after\";i:44301;s:4:\"time\";d:0.029999999999999999;}}}'),(4530,482,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7057981777673117;s:5:\"bytes\";i:3150;s:11:\"size_before\";i:55207;s:10:\"size_after\";i:52057;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71;s:5:\"bytes\";i:3150;s:11:\"size_before\";i:55207;s:10:\"size_after\";i:52057;s:4:\"time\";d:0.040000000000000001;}}}'),(4531,481,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1613580154388066;s:5:\"bytes\";i:2221;s:11:\"size_before\";i:53372;s:10:\"size_after\";i:51151;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1600000000000001;s:5:\"bytes\";i:2221;s:11:\"size_before\";i:53372;s:10:\"size_after\";i:51151;s:4:\"time\";d:0.029999999999999999;}}}'),(4553,477,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6700277655998832;s:5:\"bytes\";i:3104;s:11:\"size_before\";i:54744;s:10:\"size_after\";i:51640;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999;s:5:\"bytes\";i:3104;s:11:\"size_before\";i:54744;s:10:\"size_after\";i:51640;s:4:\"time\";d:0.029999999999999999;}}}'),(4550,480,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6941475826972008;s:5:\"bytes\";i:2306;s:11:\"size_before\";i:49125;s:10:\"size_after\";i:46819;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6900000000000004;s:5:\"bytes\";i:2306;s:11:\"size_before\";i:49125;s:10:\"size_after\";i:46819;s:4:\"time\";d:0.02;}}}'),(4551,479,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7310477587313224;s:5:\"bytes\";i:3126;s:11:\"size_before\";i:54545;s:10:\"size_after\";i:51419;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7300000000000004;s:5:\"bytes\";i:3126;s:11:\"size_before\";i:54545;s:10:\"size_after\";i:51419;s:4:\"time\";d:0.02;}}}'),(4552,478,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4130052724077329;s:5:\"bytes\";i:2618;s:11:\"size_before\";i:48365;s:10:\"size_after\";i:45747;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4100000000000001;s:5:\"bytes\";i:2618;s:11:\"size_before\";i:48365;s:10:\"size_after\";i:45747;s:4:\"time\";d:0.02;}}}'),(4557,473,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:202726;s:10:\"size_after\";i:202726;s:4:\"time\";d:0.23999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:202726;s:10:\"size_after\";i:202726;s:4:\"time\";d:0.23999999999999999;}}}'),(4558,471,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7151277840933012;s:5:\"bytes\";i:6787;s:11:\"size_before\";i:118755;s:10:\"size_after\";i:111968;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:6787;s:11:\"size_before\";i:118755;s:10:\"size_after\";i:111968;s:4:\"time\";d:0.040000000000000001;}}}'),(4559,470,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2252808295272191;s:5:\"bytes\";i:4233;s:11:\"size_before\";i:81010;s:10:\"size_after\";i:76777;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2300000000000004;s:5:\"bytes\";i:4233;s:11:\"size_before\";i:81010;s:10:\"size_after\";i:76777;s:4:\"time\";d:0.029999999999999999;}}}'),(4560,449,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:193132;s:10:\"size_after\";i:193132;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:193132;s:10:\"size_after\";i:193132;s:4:\"time\";d:0.12;}}}'),(4561,443,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0373324110430699;s:5:\"bytes\";i:2476;s:11:\"size_before\";i:49153;s:10:\"size_after\";i:46677;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04;s:5:\"bytes\";i:2476;s:11:\"size_before\";i:49153;s:10:\"size_after\";i:46677;s:4:\"time\";d:0.02;}}}'),(4562,442,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8952611075496817;s:5:\"bytes\";i:2391;s:11:\"size_before\";i:40558;s:10:\"size_after\";i:38167;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000004;s:5:\"bytes\";i:2391;s:11:\"size_before\";i:40558;s:10:\"size_after\";i:38167;s:4:\"time\";d:0.02;}}}'),(4563,431,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9621824293748791;s:5:\"bytes\";i:3838;s:11:\"size_before\";i:77345;s:10:\"size_after\";i:73507;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96;s:5:\"bytes\";i:3838;s:11:\"size_before\";i:77345;s:10:\"size_after\";i:73507;s:4:\"time\";d:0.029999999999999999;}}}'),(4564,430,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1537944365072699;s:5:\"bytes\";i:2453;s:11:\"size_before\";i:47596;s:10:\"size_after\";i:45143;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000004;s:5:\"bytes\";i:2453;s:11:\"size_before\";i:47596;s:10:\"size_after\";i:45143;s:4:\"time\";d:0.02;}}}'),(4565,429,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9708785302452849;s:5:\"bytes\";i:3055;s:11:\"size_before\";i:51165;s:10:\"size_after\";i:48110;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9699999999999998;s:5:\"bytes\";i:3055;s:11:\"size_before\";i:51165;s:10:\"size_after\";i:48110;s:4:\"time\";d:0.02;}}}'),(4566,428,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7632068961027123;s:5:\"bytes\";i:3658;s:11:\"size_before\";i:76797;s:10:\"size_after\";i:73139;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999998;s:5:\"bytes\";i:3658;s:11:\"size_before\";i:76797;s:10:\"size_after\";i:73139;s:4:\"time\";d:0.02;}}}'),(4567,427,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6939433484301833;s:5:\"bytes\";i:2967;s:11:\"size_before\";i:52108;s:10:\"size_after\";i:49141;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:2967;s:11:\"size_before\";i:52108;s:10:\"size_after\";i:49141;s:4:\"time\";d:0.02;}}}'),(4568,426,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.172956699800654;s:5:\"bytes\";i:4552;s:11:\"size_before\";i:73741;s:10:\"size_after\";i:69189;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999;s:5:\"bytes\";i:4552;s:11:\"size_before\";i:73741;s:10:\"size_after\";i:69189;s:4:\"time\";d:0.02;}}}'),(4569,425,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6000524349478926;s:5:\"bytes\";i:4272;s:11:\"size_before\";i:76285;s:10:\"size_after\";i:72013;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5999999999999996;s:5:\"bytes\";i:4272;s:11:\"size_before\";i:76285;s:10:\"size_after\";i:72013;s:4:\"time\";d:0.029999999999999999;}}}'),(4570,424,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8008112414892077;s:5:\"bytes\";i:1657;s:11:\"size_before\";i:34515;s:10:\"size_after\";i:32858;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:1657;s:11:\"size_before\";i:34515;s:10:\"size_after\";i:32858;s:4:\"time\";d:0.02;}}}'),(4571,415,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183756;s:10:\"size_after\";i:183756;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183756;s:10:\"size_after\";i:183756;s:4:\"time\";d:0.19;}}}'),(4572,409,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186614;s:10:\"size_after\";i:186614;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186614;s:10:\"size_after\";i:186614;s:4:\"time\";d:0.12;}}}'),(4573,376,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132376;s:10:\"size_after\";i:132376;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132376;s:10:\"size_after\";i:132376;s:4:\"time\";d:0.14999999999999999;}}}'),(4574,374,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140763;s:10:\"size_after\";i:140763;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140763;s:10:\"size_after\";i:140763;s:4:\"time\";d:0.14000000000000001;}}}'),(4575,373,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:150711;s:10:\"size_after\";i:150711;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:150711;s:10:\"size_after\";i:150711;s:4:\"time\";d:0.13;}}}'),(4576,372,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:205639;s:10:\"size_after\";i:205639;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:205639;s:10:\"size_after\";i:205639;s:4:\"time\";d:0.16;}}}'),(4577,371,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:144700;s:10:\"size_after\";i:144700;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:144700;s:10:\"size_after\";i:144700;s:4:\"time\";d:0.14999999999999999;}}}'),(4578,370,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:164270;s:10:\"size_after\";i:164270;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:164270;s:10:\"size_after\";i:164270;s:4:\"time\";d:0.19;}}}'),(4579,369,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:160794;s:10:\"size_after\";i:160794;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:160794;s:10:\"size_after\";i:160794;s:4:\"time\";d:0.12;}}}'),(4580,367,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.2573486681172543;s:5:\"bytes\";i:4630;s:11:\"size_before\";i:73993;s:10:\"size_after\";i:69363;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999998;s:5:\"bytes\";i:4630;s:11:\"size_before\";i:73993;s:10:\"size_after\";i:69363;s:4:\"time\";d:0.029999999999999999;}}}'),(4581,363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7994115238617363;s:5:\"bytes\";i:6916;s:11:\"size_before\";i:144101;s:10:\"size_after\";i:137185;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:6916;s:11:\"size_before\";i:144101;s:10:\"size_after\";i:137185;s:4:\"time\";d:0.040000000000000001;}}}'),(4582,362,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7023010546500483;s:5:\"bytes\";i:4758;s:11:\"size_before\";i:83440;s:10:\"size_after\";i:78682;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7000000000000002;s:5:\"bytes\";i:4758;s:11:\"size_before\";i:83440;s:10:\"size_after\";i:78682;s:4:\"time\";d:0.029999999999999999;}}}'),(4583,350,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6893848721363431;s:5:\"bytes\";i:3375;s:11:\"size_before\";i:59321;s:10:\"size_after\";i:55946;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:3375;s:11:\"size_before\";i:59321;s:10:\"size_after\";i:55946;s:4:\"time\";d:0.029999999999999999;}}}'),(4584,349,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.676967474298082;s:5:\"bytes\";i:3777;s:11:\"size_before\";i:66532;s:10:\"size_after\";i:62755;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6799999999999997;s:5:\"bytes\";i:3777;s:11:\"size_before\";i:66532;s:10:\"size_after\";i:62755;s:4:\"time\";d:0.02;}}}'),(4585,348,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8638326308214248;s:5:\"bytes\";i:4563;s:11:\"size_before\";i:77816;s:10:\"size_after\";i:73253;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8600000000000003;s:5:\"bytes\";i:4563;s:11:\"size_before\";i:77816;s:10:\"size_after\";i:73253;s:4:\"time\";d:0.050000000000000003;}}}'),(4586,347,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.2346172778734923;s:5:\"bytes\";i:4053;s:11:\"size_before\";i:65008;s:10:\"size_after\";i:60955;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2300000000000004;s:5:\"bytes\";i:4053;s:11:\"size_before\";i:65008;s:10:\"size_after\";i:60955;s:4:\"time\";d:0.02;}}}'),(4587,346,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.1430181049252184;s:5:\"bytes\";i:3980;s:11:\"size_before\";i:64789;s:10:\"size_after\";i:60809;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1399999999999997;s:5:\"bytes\";i:3980;s:11:\"size_before\";i:64789;s:10:\"size_after\";i:60809;s:4:\"time\";d:0.02;}}}'),(4588,345,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4620650313747863;s:5:\"bytes\";i:4596;s:11:\"size_before\";i:84144;s:10:\"size_after\";i:79548;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:4596;s:11:\"size_before\";i:84144;s:10:\"size_after\";i:79548;s:4:\"time\";d:0.029999999999999999;}}}'),(4589,344,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3900224821423492;s:5:\"bytes\";i:1894;s:11:\"size_before\";i:35139;s:10:\"size_after\";i:33245;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3899999999999997;s:5:\"bytes\";i:1894;s:11:\"size_before\";i:35139;s:10:\"size_after\";i:33245;s:4:\"time\";d:0.01;}}}'),(4731,111,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7512576858580218;s:5:\"bytes\";i:3060;s:11:\"size_before\";i:64404;s:10:\"size_after\";i:61344;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:3060;s:11:\"size_before\";i:64404;s:10:\"size_after\";i:61344;s:4:\"time\";d:0.02;}}}'),(4608,343,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8001288625197995;s:5:\"bytes\";i:1788;s:11:\"size_before\";i:37249;s:10:\"size_after\";i:35461;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:1788;s:11:\"size_before\";i:37249;s:10:\"size_after\";i:35461;s:4:\"time\";d:0.040000000000000001;}}}'),(4730,112,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:181491;s:10:\"size_after\";i:181491;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:181491;s:10:\"size_after\";i:181491;s:4:\"time\";d:0.17000000000000001;}}}'),(4627,318,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191709;s:10:\"size_after\";i:191709;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191709;s:10:\"size_after\";i:191709;s:4:\"time\";d:0.14000000000000001;}}}'),(4628,312,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4305445413692839;s:5:\"bytes\";i:3287;s:11:\"size_before\";i:60528;s:10:\"size_after\";i:57241;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4299999999999997;s:5:\"bytes\";i:3287;s:11:\"size_before\";i:60528;s:10:\"size_after\";i:57241;s:4:\"time\";d:0.02;}}}'),(4629,311,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6691360905325787;s:5:\"bytes\";i:2516;s:11:\"size_before\";i:68572;s:10:\"size_after\";i:66056;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999;s:5:\"bytes\";i:2516;s:11:\"size_before\";i:68572;s:10:\"size_after\";i:66056;s:4:\"time\";d:0.050000000000000003;}}}'),(4630,310,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.8128440366972476;s:5:\"bytes\";i:1533;s:11:\"size_before\";i:54500;s:10:\"size_after\";i:52967;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8100000000000001;s:5:\"bytes\";i:1533;s:11:\"size_before\";i:54500;s:10:\"size_after\";i:52967;s:4:\"time\";d:0.040000000000000001;}}}'),(4631,308,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:207502;s:10:\"size_after\";i:207502;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:207502;s:10:\"size_after\";i:207502;s:4:\"time\";d:0.10000000000000001;}}}'),(4632,302,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.343620418643356;s:5:\"bytes\";i:6107;s:11:\"size_before\";i:140597;s:10:\"size_after\";i:134490;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3399999999999999;s:5:\"bytes\";i:6107;s:11:\"size_before\";i:140597;s:10:\"size_after\";i:134490;s:4:\"time\";d:0.040000000000000001;}}}'),(4633,301,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:205904;s:10:\"size_after\";i:205904;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:205904;s:10:\"size_after\";i:205904;s:4:\"time\";d:0.13;}}}'),(4634,280,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5450859459768145;s:5:\"bytes\";i:4855;s:11:\"size_before\";i:87555;s:10:\"size_after\";i:82700;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5499999999999998;s:5:\"bytes\";i:4855;s:11:\"size_before\";i:87555;s:10:\"size_after\";i:82700;s:4:\"time\";d:0.050000000000000003;}}}'),(4635,276,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:202577;s:10:\"size_after\";i:202577;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:202577;s:10:\"size_after\";i:202577;s:4:\"time\";d:0.14000000000000001;}}}'),(4636,275,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173940;s:10:\"size_after\";i:173940;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173940;s:10:\"size_after\";i:173940;s:4:\"time\";d:0.13;}}}'),(4637,274,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:176238;s:10:\"size_after\";i:176238;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:176238;s:10:\"size_after\";i:176238;s:4:\"time\";d:0.17000000000000001;}}}'),(4638,272,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199149;s:10:\"size_after\";i:199149;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199149;s:10:\"size_after\";i:199149;s:4:\"time\";d:0.10000000000000001;}}}'),(4639,271,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183671;s:10:\"size_after\";i:183671;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183671;s:10:\"size_after\";i:183671;s:4:\"time\";d:0.12;}}}'),(4640,270,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172928;s:10:\"size_after\";i:172928;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172928;s:10:\"size_after\";i:172928;s:4:\"time\";d:0.16;}}}'),(4641,269,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:181491;s:10:\"size_after\";i:181491;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:181491;s:10:\"size_after\";i:181491;s:4:\"time\";d:0.13;}}}'),(4642,268,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:223082;s:10:\"size_after\";i:223082;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:223082;s:10:\"size_after\";i:223082;s:4:\"time\";d:0.11;}}}'),(4643,191,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:201233;s:10:\"size_after\";i:201233;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:201233;s:10:\"size_after\";i:201233;s:4:\"time\";d:0.16;}}}'),(4644,183,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1860297561151336;s:5:\"bytes\";i:2324;s:11:\"size_before\";i:55518;s:10:\"size_after\";i:53194;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1900000000000004;s:5:\"bytes\";i:2324;s:11:\"size_before\";i:55518;s:10:\"size_after\";i:53194;s:4:\"time\";d:0.02;}}}'),(4645,182,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.6918739896699915;s:5:\"bytes\";i:2380;s:11:\"size_before\";i:50726;s:10:\"size_after\";i:48346;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6900000000000004;s:5:\"bytes\";i:2380;s:11:\"size_before\";i:50726;s:10:\"size_after\";i:48346;s:4:\"time\";d:0.02;}}}'),(4646,181,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8919299143112926;s:5:\"bytes\";i:2295;s:11:\"size_before\";i:46914;s:10:\"size_after\";i:44619;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8899999999999997;s:5:\"bytes\";i:2295;s:11:\"size_before\";i:46914;s:10:\"size_after\";i:44619;s:4:\"time\";d:0.02;}}}'),(4647,180,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1690785768505592;s:5:\"bytes\";i:2111;s:11:\"size_before\";i:40839;s:10:\"size_after\";i:38728;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999;s:5:\"bytes\";i:2111;s:11:\"size_before\";i:40839;s:10:\"size_after\";i:38728;s:4:\"time\";d:0.02;}}}'),(4648,179,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8353583512765308;s:5:\"bytes\";i:1995;s:11:\"size_before\";i:52016;s:10:\"size_after\";i:50021;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8399999999999999;s:5:\"bytes\";i:1995;s:11:\"size_before\";i:52016;s:10:\"size_after\";i:50021;s:4:\"time\";d:0.02;}}}'),(4649,178,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3324365872405837;s:5:\"bytes\";i:2775;s:11:\"size_before\";i:52040;s:10:\"size_after\";i:49265;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000001;s:5:\"bytes\";i:2775;s:11:\"size_before\";i:52040;s:10:\"size_after\";i:49265;s:4:\"time\";d:0.02;}}}'),(4650,177,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.973511780287188;s:5:\"bytes\";i:2854;s:11:\"size_before\";i:57384;s:10:\"size_after\";i:54530;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9699999999999998;s:5:\"bytes\";i:2854;s:11:\"size_before\";i:57384;s:10:\"size_after\";i:54530;s:4:\"time\";d:0.02;}}}'),(4651,176,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.5977236350702468;s:5:\"bytes\";i:2023;s:11:\"size_before\";i:56230;s:10:\"size_after\";i:54207;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6000000000000001;s:5:\"bytes\";i:2023;s:11:\"size_before\";i:56230;s:10:\"size_after\";i:54207;s:4:\"time\";d:0.02;}}}'),(4652,175,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.601263559423054;s:5:\"bytes\";i:2702;s:11:\"size_before\";i:58723;s:10:\"size_after\";i:56021;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996;s:5:\"bytes\";i:2702;s:11:\"size_before\";i:58723;s:10:\"size_after\";i:56021;s:4:\"time\";d:0.029999999999999999;}}}'),(4653,174,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7236737505962161;s:5:\"bytes\";i:3240;s:11:\"size_before\";i:56607;s:10:\"size_after\";i:53367;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:3240;s:11:\"size_before\";i:56607;s:10:\"size_after\";i:53367;s:4:\"time\";d:0.040000000000000001;}}}'),(4654,173,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.054961103990939;s:5:\"bytes\";i:4063;s:11:\"size_before\";i:67102;s:10:\"size_after\";i:63039;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0499999999999998;s:5:\"bytes\";i:4063;s:11:\"size_before\";i:67102;s:10:\"size_after\";i:63039;s:4:\"time\";d:0.040000000000000001;}}}'),(4655,172,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4668857612345505;s:5:\"bytes\";i:3826;s:11:\"size_before\";i:69985;s:10:\"size_after\";i:66159;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4699999999999998;s:5:\"bytes\";i:3826;s:11:\"size_before\";i:69985;s:10:\"size_after\";i:66159;s:4:\"time\";d:0.029999999999999999;}}}'),(4656,171,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9340404759146796;s:5:\"bytes\";i:3586;s:11:\"size_before\";i:60431;s:10:\"size_after\";i:56845;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9299999999999997;s:5:\"bytes\";i:3586;s:11:\"size_before\";i:60431;s:10:\"size_after\";i:56845;s:4:\"time\";d:0.029999999999999999;}}}'),(4657,170,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6902276091043635;s:5:\"bytes\";i:2845;s:11:\"size_before\";i:49998;s:10:\"size_after\";i:47153;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6900000000000004;s:5:\"bytes\";i:2845;s:11:\"size_before\";i:49998;s:10:\"size_after\";i:47153;s:4:\"time\";d:0.050000000000000003;}}}'),(4658,169,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5580919864223759;s:5:\"bytes\";i:2800;s:11:\"size_before\";i:50377;s:10:\"size_after\";i:47577;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5599999999999996;s:5:\"bytes\";i:2800;s:11:\"size_before\";i:50377;s:10:\"size_after\";i:47577;s:4:\"time\";d:0.029999999999999999;}}}'),(4659,168,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9731568438955849;s:5:\"bytes\";i:3231;s:11:\"size_before\";i:54092;s:10:\"size_after\";i:50861;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9699999999999998;s:5:\"bytes\";i:3231;s:11:\"size_before\";i:54092;s:10:\"size_after\";i:50861;s:4:\"time\";d:0.050000000000000003;}}}'),(4660,167,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1357258689980965;s:5:\"bytes\";i:3642;s:11:\"size_before\";i:70915;s:10:\"size_after\";i:67273;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1399999999999997;s:5:\"bytes\";i:3642;s:11:\"size_before\";i:70915;s:10:\"size_after\";i:67273;s:4:\"time\";d:0.040000000000000001;}}}'),(4661,166,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8775950390940954;s:5:\"bytes\";i:4142;s:11:\"size_before\";i:70471;s:10:\"size_after\";i:66329;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8799999999999999;s:5:\"bytes\";i:4142;s:11:\"size_before\";i:70471;s:10:\"size_after\";i:66329;s:4:\"time\";d:0.029999999999999999;}}}'),(4662,164,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8656319090375852;s:5:\"bytes\";i:2600;s:11:\"size_before\";i:44326;s:10:\"size_after\";i:41726;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8700000000000001;s:5:\"bytes\";i:2600;s:11:\"size_before\";i:44326;s:10:\"size_after\";i:41726;s:4:\"time\";d:0.029999999999999999;}}}'),(4663,163,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4128861082904782;s:5:\"bytes\";i:3305;s:11:\"size_before\";i:61058;s:10:\"size_after\";i:57753;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4100000000000001;s:5:\"bytes\";i:3305;s:11:\"size_before\";i:61058;s:10:\"size_after\";i:57753;s:4:\"time\";d:0.050000000000000003;}}}'),(4664,162,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5587259692549127;s:5:\"bytes\";i:3117;s:11:\"size_before\";i:56074;s:10:\"size_after\";i:52957;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5599999999999996;s:5:\"bytes\";i:3117;s:11:\"size_before\";i:56074;s:10:\"size_after\";i:52957;s:4:\"time\";d:0.050000000000000003;}}}'),(4665,161,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.79725121964014;s:5:\"bytes\";i:1829;s:11:\"size_before\";i:38126;s:10:\"size_after\";i:36297;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:1829;s:11:\"size_before\";i:38126;s:10:\"size_after\";i:36297;s:4:\"time\";d:0.01;}}}'),(4666,160,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3422192602465843;s:5:\"bytes\";i:4008;s:11:\"size_before\";i:75025;s:10:\"size_after\";i:71017;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3399999999999999;s:5:\"bytes\";i:4008;s:11:\"size_before\";i:75025;s:10:\"size_after\";i:71017;s:4:\"time\";d:0.02;}}}'),(4667,159,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5635328496573964;s:5:\"bytes\";i:4417;s:11:\"size_before\";i:79392;s:10:\"size_after\";i:74975;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5599999999999996;s:5:\"bytes\";i:4417;s:11:\"size_before\";i:79392;s:10:\"size_after\";i:74975;s:4:\"time\";d:0.02;}}}'),(4668,158,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7936963515732423;s:5:\"bytes\";i:4340;s:11:\"size_before\";i:74909;s:10:\"size_after\";i:70569;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79;s:5:\"bytes\";i:4340;s:11:\"size_before\";i:74909;s:10:\"size_after\";i:70569;s:4:\"time\";d:0.02;}}}'),(4669,157,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9493649926315966;s:5:\"bytes\";i:3593;s:11:\"size_before\";i:60393;s:10:\"size_after\";i:56800;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9500000000000002;s:5:\"bytes\";i:3593;s:11:\"size_before\";i:60393;s:10:\"size_after\";i:56800;s:4:\"time\";d:0.050000000000000003;}}}'),(4670,156,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7707313023989375;s:5:\"bytes\";i:3476;s:11:\"size_before\";i:60235;s:10:\"size_after\";i:56759;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7699999999999996;s:5:\"bytes\";i:3476;s:11:\"size_before\";i:60235;s:10:\"size_after\";i:56759;s:4:\"time\";d:0.02;}}}'),(4671,155,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183756;s:10:\"size_after\";i:183756;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183756;s:10:\"size_after\";i:183756;s:4:\"time\";d:0.12;}}}'),(4672,154,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7824351297405183;s:5:\"bytes\";i:2897;s:11:\"size_before\";i:50100;s:10:\"size_after\";i:47203;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7800000000000002;s:5:\"bytes\";i:2897;s:11:\"size_before\";i:50100;s:10:\"size_after\";i:47203;s:4:\"time\";d:0.040000000000000001;}}}'),(4673,153,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.067972734639401;s:5:\"bytes\";i:2546;s:11:\"size_before\";i:41958;s:10:\"size_after\";i:39412;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0700000000000003;s:5:\"bytes\";i:2546;s:11:\"size_before\";i:41958;s:10:\"size_after\";i:39412;s:4:\"time\";d:0.02;}}}'),(4674,152,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2559263673685601;s:5:\"bytes\";i:3175;s:11:\"size_before\";i:60408;s:10:\"size_after\";i:57233;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999998;s:5:\"bytes\";i:3175;s:11:\"size_before\";i:60408;s:10:\"size_after\";i:57233;s:4:\"time\";d:0.02;}}}'),(4675,151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5175873095491879;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:47847;s:10:\"size_after\";i:45207;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5199999999999996;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:47847;s:10:\"size_after\";i:45207;s:4:\"time\";d:0.02;}}}'),(4676,150,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.2991779858455317;s:5:\"bytes\";i:4299;s:11:\"size_before\";i:68247;s:10:\"size_after\";i:63948;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2999999999999998;s:5:\"bytes\";i:4299;s:11:\"size_before\";i:68247;s:10:\"size_after\";i:63948;s:4:\"time\";d:0.02;}}}'),(4677,149,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1262092738796845;s:5:\"bytes\";i:3227;s:11:\"size_before\";i:62951;s:10:\"size_after\";i:59724;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1299999999999999;s:5:\"bytes\";i:3227;s:11:\"size_before\";i:62951;s:10:\"size_after\";i:59724;s:4:\"time\";d:0.02;}}}'),(4678,148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2388792246520879;s:5:\"bytes\";i:3373;s:11:\"size_before\";i:64384;s:10:\"size_after\";i:61011;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002;s:5:\"bytes\";i:3373;s:11:\"size_before\";i:64384;s:10:\"size_after\";i:61011;s:4:\"time\";d:0.029999999999999999;}}}'),(4679,147,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3586673814203749;s:5:\"bytes\";i:2699;s:11:\"size_before\";i:50367;s:10:\"size_after\";i:47668;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3600000000000003;s:5:\"bytes\";i:2699;s:11:\"size_before\";i:50367;s:10:\"size_after\";i:47668;s:4:\"time\";d:0.02;}}}'),(4680,146,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6045359194965494;s:5:\"bytes\";i:3687;s:11:\"size_before\";i:65786;s:10:\"size_after\";i:62099;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5999999999999996;s:5:\"bytes\";i:3687;s:11:\"size_before\";i:65786;s:10:\"size_after\";i:62099;s:4:\"time\";d:0.02;}}}'),(4681,144,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3396681321798329;s:5:\"bytes\";i:3012;s:11:\"size_before\";i:56408;s:10:\"size_after\";i:53396;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3399999999999999;s:5:\"bytes\";i:3012;s:11:\"size_before\";i:56408;s:10:\"size_after\";i:53396;s:4:\"time\";d:0.02;}}}'),(4682,143,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0183976995145478;s:5:\"bytes\";i:3246;s:11:\"size_before\";i:64682;s:10:\"size_after\";i:61436;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0199999999999996;s:5:\"bytes\";i:3246;s:11:\"size_before\";i:64682;s:10:\"size_after\";i:61436;s:4:\"time\";d:0.070000000000000007;}}}'),(4683,142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0055070744725922;s:5:\"bytes\";i:2954;s:11:\"size_before\";i:59015;s:10:\"size_after\";i:56061;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999998;s:5:\"bytes\";i:2954;s:11:\"size_before\";i:59015;s:10:\"size_after\";i:56061;s:4:\"time\";d:0.02;}}}'),(4684,141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4584213408433078;s:5:\"bytes\";i:2791;s:11:\"size_before\";i:51132;s:10:\"size_after\";i:48341;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:2791;s:11:\"size_before\";i:51132;s:10:\"size_after\";i:48341;s:4:\"time\";d:0.029999999999999999;}}}'),(4685,140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9039622146418269;s:5:\"bytes\";i:3600;s:11:\"size_before\";i:60976;s:10:\"size_after\";i:57376;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000004;s:5:\"bytes\";i:3600;s:11:\"size_before\";i:60976;s:10:\"size_after\";i:57376;s:4:\"time\";d:0.070000000000000007;}}}'),(4686,139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8167562073471757;s:5:\"bytes\";i:4006;s:11:\"size_before\";i:68870;s:10:\"size_after\";i:64864;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8200000000000003;s:5:\"bytes\";i:4006;s:11:\"size_before\";i:68870;s:10:\"size_after\";i:64864;s:4:\"time\";d:0.070000000000000007;}}}'),(4687,138,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199149;s:10:\"size_after\";i:199149;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199149;s:10:\"size_after\";i:199149;s:4:\"time\";d:0.10000000000000001;}}}'),(4688,137,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183671;s:10:\"size_after\";i:183671;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183671;s:10:\"size_after\";i:183671;s:4:\"time\";d:0.19;}}}'),(4689,136,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.0620822169900679;s:5:\"bytes\";i:2240;s:11:\"size_before\";i:36951;s:10:\"size_after\";i:34711;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0599999999999996;s:5:\"bytes\";i:2240;s:11:\"size_before\";i:36951;s:10:\"size_after\";i:34711;s:4:\"time\";d:0.02;}}}'),(4690,135,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1994193981672048;s:5:\"bytes\";i:2400;s:11:\"size_before\";i:46159;s:10:\"size_after\";i:43759;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2000000000000002;s:5:\"bytes\";i:2400;s:11:\"size_before\";i:46159;s:10:\"size_after\";i:43759;s:4:\"time\";d:0.02;}}}'),(4691,133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4462291245612162;s:5:\"bytes\";i:2560;s:11:\"size_before\";i:47005;s:10:\"size_after\";i:44445;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4500000000000002;s:5:\"bytes\";i:2560;s:11:\"size_before\";i:47005;s:10:\"size_after\";i:44445;s:4:\"time\";d:0.02;}}}'),(4692,132,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6695515046839509;s:5:\"bytes\";i:3020;s:11:\"size_before\";i:53267;s:10:\"size_after\";i:50247;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999;s:5:\"bytes\";i:3020;s:11:\"size_before\";i:53267;s:10:\"size_after\";i:50247;s:4:\"time\";d:0.02;}}}'),(4693,131,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8820983379501381;s:5:\"bytes\";i:2718;s:11:\"size_before\";i:46208;s:10:\"size_after\";i:43490;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8799999999999999;s:5:\"bytes\";i:2718;s:11:\"size_before\";i:46208;s:10:\"size_after\";i:43490;s:4:\"time\";d:0.02;}}}'),(4694,130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0189971387025656;s:5:\"bytes\";i:3210;s:11:\"size_before\";i:63957;s:10:\"size_after\";i:60747;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0199999999999996;s:5:\"bytes\";i:3210;s:11:\"size_before\";i:63957;s:10:\"size_after\";i:60747;s:4:\"time\";d:0.02;}}}'),(4695,129,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.766752577319588;s:5:\"bytes\";i:2685;s:11:\"size_before\";i:46560;s:10:\"size_after\";i:43875;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7699999999999996;s:5:\"bytes\";i:2685;s:11:\"size_before\";i:46560;s:10:\"size_after\";i:43875;s:4:\"time\";d:0.02;}}}'),(4696,128,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3867788822809546;s:5:\"bytes\";i:2509;s:11:\"size_before\";i:46577;s:10:\"size_after\";i:44068;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3899999999999997;s:5:\"bytes\";i:2509;s:11:\"size_before\";i:46577;s:10:\"size_after\";i:44068;s:4:\"time\";d:0.02;}}}'),(4697,127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6637401808700245;s:5:\"bytes\";i:2574;s:11:\"size_before\";i:45447;s:10:\"size_after\";i:42873;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6600000000000001;s:5:\"bytes\";i:2574;s:11:\"size_before\";i:45447;s:10:\"size_after\";i:42873;s:4:\"time\";d:0.02;}}}'),(4698,126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1084103491629351;s:5:\"bytes\";i:2316;s:11:\"size_before\";i:45337;s:10:\"size_after\";i:43021;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1100000000000003;s:5:\"bytes\";i:2316;s:11:\"size_before\";i:45337;s:10:\"size_after\";i:43021;s:4:\"time\";d:0.02;}}}'),(4699,125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172928;s:10:\"size_after\";i:172928;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172928;s:10:\"size_after\";i:172928;s:4:\"time\";d:0.12;}}}'),(4700,124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3542897484487053;s:5:\"bytes\";i:2882;s:11:\"size_before\";i:53826;s:10:\"size_after\";i:50944;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996;s:5:\"bytes\";i:2882;s:11:\"size_before\";i:53826;s:10:\"size_after\";i:50944;s:4:\"time\";d:0.050000000000000003;}}}'),(4701,123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7088908974669872;s:5:\"bytes\";i:2136;s:11:\"size_before\";i:45361;s:10:\"size_after\";i:43225;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71;s:5:\"bytes\";i:2136;s:11:\"size_before\";i:45361;s:10:\"size_after\";i:43225;s:4:\"time\";d:0.02;}}}'),(4702,122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9451092869152404;s:5:\"bytes\";i:3000;s:11:\"size_before\";i:60666;s:10:\"size_after\";i:57666;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9500000000000002;s:5:\"bytes\";i:3000;s:11:\"size_before\";i:60666;s:10:\"size_after\";i:57666;s:4:\"time\";d:0.02;}}}'),(4703,121,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.5053042992741483;s:5:\"bytes\";i:2465;s:11:\"size_before\";i:44775;s:10:\"size_after\";i:42310;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999998;s:5:\"bytes\";i:2465;s:11:\"size_before\";i:44775;s:10:\"size_after\";i:42310;s:4:\"time\";d:0.040000000000000001;}}}'),(4704,120,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0680864134329884;s:5:\"bytes\";i:2970;s:11:\"size_before\";i:58602;s:10:\"size_after\";i:55632;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0700000000000003;s:5:\"bytes\";i:2970;s:11:\"size_before\";i:58602;s:10:\"size_after\";i:55632;s:4:\"time\";d:0.02;}}}'),(4705,119,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.6191201828608093;s:5:\"bytes\";i:3610;s:11:\"size_before\";i:99748;s:10:\"size_after\";i:96138;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6200000000000001;s:5:\"bytes\";i:3610;s:11:\"size_before\";i:99748;s:10:\"size_after\";i:96138;s:4:\"time\";d:0.029999999999999999;}}}'),(4706,118,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9130867075804847;s:5:\"bytes\";i:2866;s:11:\"size_before\";i:58334;s:10:\"size_after\";i:55468;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9100000000000001;s:5:\"bytes\";i:2866;s:11:\"size_before\";i:58334;s:10:\"size_after\";i:55468;s:4:\"time\";d:0.02;}}}'),(4707,117,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.0066957535962677;s:5:\"bytes\";i:2318;s:11:\"size_before\";i:46298;s:10:\"size_after\";i:43980;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999998;s:5:\"bytes\";i:2318;s:11:\"size_before\";i:46298;s:10:\"size_after\";i:43980;s:4:\"time\";d:0.02;}}}'),(4708,116,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2643039904186404;s:5:\"bytes\";i:2901;s:11:\"size_before\";i:55107;s:10:\"size_after\";i:52206;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999998;s:5:\"bytes\";i:2901;s:11:\"size_before\";i:55107;s:10:\"size_after\";i:52206;s:4:\"time\";d:0.02;}}}'),(4729,113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2890100139434653;s:5:\"bytes\";i:3338;s:11:\"size_before\";i:63112;s:10:\"size_after\";i:59774;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29;s:5:\"bytes\";i:3338;s:11:\"size_before\";i:63112;s:10:\"size_after\";i:59774;s:4:\"time\";d:0.029999999999999999;}}}'),(4727,115,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8031768479001995;s:5:\"bytes\";i:2298;s:11:\"size_before\";i:39599;s:10:\"size_after\";i:37301;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7999999999999998;s:5:\"bytes\";i:2298;s:11:\"size_before\";i:39599;s:10:\"size_after\";i:37301;s:4:\"time\";d:0.01;}}}'),(4728,114,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.8786545557763263;s:5:\"bytes\";i:2750;s:11:\"size_before\";i:56368;s:10:\"size_after\";i:53618;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8799999999999999;s:5:\"bytes\";i:2750;s:11:\"size_before\";i:56368;s:10:\"size_after\";i:53618;s:4:\"time\";d:0.050000000000000003;}}}'),(4732,110,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7977103761283004;s:5:\"bytes\";i:2833;s:11:\"size_before\";i:59049;s:10:\"size_after\";i:56216;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7999999999999998;s:5:\"bytes\";i:2833;s:11:\"size_before\";i:59049;s:10:\"size_after\";i:56216;s:4:\"time\";d:0.02;}}}'),(4733,109,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2243150954381656;s:5:\"bytes\";i:3320;s:11:\"size_before\";i:63549;s:10:\"size_after\";i:60229;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2199999999999998;s:5:\"bytes\";i:3320;s:11:\"size_before\";i:63549;s:10:\"size_after\";i:60229;s:4:\"time\";d:0.029999999999999999;}}}'),(4734,108,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.676924703891709;s:5:\"bytes\";i:3538;s:11:\"size_before\";i:75648;s:10:\"size_after\";i:72110;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6799999999999997;s:5:\"bytes\";i:3538;s:11:\"size_before\";i:75648;s:10:\"size_after\";i:72110;s:4:\"time\";d:0.02;}}}'),(4735,107,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1626317087782354;s:5:\"bytes\";i:2930;s:11:\"size_before\";i:56754;s:10:\"size_after\";i:53824;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1600000000000001;s:5:\"bytes\";i:2930;s:11:\"size_before\";i:56754;s:10:\"size_after\";i:53824;s:4:\"time\";d:0.02;}}}'),(4736,106,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9776826105313949;s:5:\"bytes\";i:3301;s:11:\"size_before\";i:66316;s:10:\"size_after\";i:63015;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9800000000000004;s:5:\"bytes\";i:3301;s:11:\"size_before\";i:66316;s:10:\"size_after\";i:63015;s:4:\"time\";d:0.02;}}}'),(4737,105,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.7232667062471139;s:5:\"bytes\";i:2864;s:11:\"size_before\";i:60636;s:10:\"size_after\";i:57772;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7199999999999998;s:5:\"bytes\";i:2864;s:11:\"size_before\";i:60636;s:10:\"size_after\";i:57772;s:4:\"time\";d:0.02;}}}'),(4738,104,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.3447636157706651;s:5:\"bytes\";i:2737;s:11:\"size_before\";i:51209;s:10:\"size_after\";i:48472;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3399999999999999;s:5:\"bytes\";i:2737;s:11:\"size_before\";i:51209;s:10:\"size_after\";i:48472;s:4:\"time\";d:0.02;}}}'),(4739,103,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:223082;s:10:\"size_after\";i:223082;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:223082;s:10:\"size_after\";i:223082;s:4:\"time\";d:0.12;}}}'),(4740,102,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7370842798066288;s:5:\"bytes\";i:2955;s:11:\"size_before\";i:51507;s:10:\"size_after\";i:48552;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7400000000000002;s:5:\"bytes\";i:2955;s:11:\"size_before\";i:51507;s:10:\"size_after\";i:48552;s:4:\"time\";d:0.02;}}}'),(4741,101,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.7151773639862684;s:5:\"bytes\";i:2747;s:11:\"size_before\";i:48065;s:10:\"size_after\";i:45318;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7199999999999998;s:5:\"bytes\";i:2747;s:11:\"size_before\";i:48065;s:10:\"size_after\";i:45318;s:4:\"time\";d:0.02;}}}'),(4742,100,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8967942967754121;s:5:\"bytes\";i:2498;s:11:\"size_before\";i:42362;s:10:\"size_after\";i:39864;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000004;s:5:\"bytes\";i:2498;s:11:\"size_before\";i:42362;s:10:\"size_after\";i:39864;s:4:\"time\";d:0.02;}}}'),(4743,99,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.762969588550984;s:5:\"bytes\";i:1917;s:11:\"size_before\";i:40248;s:10:\"size_after\";i:38331;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999998;s:5:\"bytes\";i:1917;s:11:\"size_before\";i:40248;s:10:\"size_after\";i:38331;s:4:\"time\";d:0.02;}}}'),(4744,98,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1929773912415866;s:5:\"bytes\";i:2878;s:11:\"size_before\";i:55421;s:10:\"size_after\";i:52543;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1900000000000004;s:5:\"bytes\";i:2878;s:11:\"size_before\";i:55421;s:10:\"size_after\";i:52543;s:4:\"time\";d:0.02;}}}'),(4745,97,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.6834125986260684;s:5:\"bytes\";i:3119;s:11:\"size_before\";i:54879;s:10:\"size_after\";i:51760;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6799999999999997;s:5:\"bytes\";i:3119;s:11:\"size_before\";i:54879;s:10:\"size_after\";i:51760;s:4:\"time\";d:0.02;}}}'),(4746,96,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9124502558271743;s:5:\"bytes\";i:3120;s:11:\"size_before\";i:52770;s:10:\"size_after\";i:49650;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9100000000000001;s:5:\"bytes\";i:3120;s:11:\"size_before\";i:52770;s:10:\"size_after\";i:49650;s:4:\"time\";d:0.029999999999999999;}}}'),(4747,84,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.785581897593759;s:5:\"bytes\";i:16841;s:11:\"size_before\";i:248188;s:10:\"size_after\";i:231347;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79;s:5:\"bytes\";i:16841;s:11:\"size_before\";i:248188;s:10:\"size_after\";i:231347;s:4:\"time\";d:0.070000000000000007;}}}'),(4748,82,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.0215153550751932;s:5:\"bytes\";i:18083;s:11:\"size_before\";i:257537;s:10:\"size_after\";i:239454;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0199999999999996;s:5:\"bytes\";i:18083;s:11:\"size_before\";i:257537;s:10:\"size_after\";i:239454;s:4:\"time\";d:0.070000000000000007;}}}'),(4749,73,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6888880681538376;s:5:\"bytes\";i:21733;s:11:\"size_before\";i:324912;s:10:\"size_after\";i:303179;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:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6900000000000004;s:5:\"bytes\";i:21733;s:11:\"size_before\";i:324912;s:10:\"size_after\";i:303179;s:4:\"time\";d:0.080000000000000002;}}}'),(4750,72,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6444099167863317;s:5:\"bytes\";i:14668;s:11:\"size_before\";i:220757;s:10:\"size_after\";i:206089;s:4:\"time\";d:0.059999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6399999999999997;s:5:\"bytes\";i:14668;s:11:\"size_before\";i:220757;s:10:\"size_after\";i:206089;s:4:\"time\";d:0.059999999999999998;}}}'),(4751,71,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9710183629491986;s:5:\"bytes\";i:16099;s:11:\"size_before\";i:269619;s:10:\"size_after\";i:253520;s:4:\"time\";d:0.059999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9699999999999998;s:5:\"bytes\";i:16099;s:11:\"size_before\";i:269619;s:10:\"size_after\";i:253520;s:4:\"time\";d:0.059999999999999998;}}}'),(120019,8050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:103;s:4:\"file\";s:20:\"2019/08/image-10.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image-10-150x103.png\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image-10-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"image-10-250x76.png\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120018,8050,'_wp_attached_file','2019/08/image-10.png'),(120452,7945,'_yoast_wpseo_estimated-reading-time-minutes','2'),(120456,7939,'slide_template','default'),(120457,7939,'second_featured_img',NULL),(120458,7939,'_yoast_wpseo_title','Blog - How to'),(120459,7939,'_yoast_wpseo_estimated-reading-time-minutes',''),(120461,7934,'slide_template','default'),(120462,7934,'second_featured_img',NULL),(120463,7934,'_yoast_wpseo_title','Blog - Tips'),(120464,7934,'_yoast_wpseo_estimated-reading-time-minutes',''),(120467,1424,'slide_template','default'),(120468,1424,'second_featured_img',NULL),(120469,1424,'_yoast_wpseo_title','Blog - 6 Budget Ideas'),(120470,1424,'_yoast_wpseo_estimated-reading-time-minutes','2'),(119900,8002,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8202419014553164;s:5:\"bytes\";i:13490;s:11:\"size_before\";i:353119;s:10:\"size_after\";i:339629;s:4:\"time\";d:0.17;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.52;s:5:\"bytes\";i:327;s:11:\"size_before\";i:5919;s:10:\"size_after\";i:5592;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.06;s:5:\"bytes\";i:592;s:11:\"size_before\";i:14597;s:10:\"size_after\";i:14005;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.61;s:5:\"bytes\";i:2422;s:11:\"size_before\";i:67025;s:10:\"size_after\";i:64603;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.35;s:5:\"bytes\";i:3563;s:11:\"size_before\";i:106323;s:10:\"size_after\";i:102760;s:4:\"time\";d:0.04;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.06;s:5:\"bytes\";i:4743;s:11:\"size_before\";i:116799;s:10:\"size_after\";i:112056;s:4:\"time\";d:0.05;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:497;s:11:\"size_before\";i:10949;s:10:\"size_after\";i:10452;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.27;s:5:\"bytes\";i:1346;s:11:\"size_before\";i:31507;s:10:\"size_after\";i:30161;s:4:\"time\";d:0.02;}}}'),(119903,8,'slide_template','default'),(119920,8013,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.29323481211006;s:5:\"bytes\";i:14812;s:11:\"size_before\";i:69562;s:10:\"size_after\";i:54750;s:4:\"time\";d:0.22000000000000003;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:31.35;s:5:\"bytes\";i:3088;s:11:\"size_before\";i:9851;s:10:\"size_after\";i:6763;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.97;s:5:\"bytes\";i:6482;s:11:\"size_before\";i:34166;s:10:\"size_after\";i:27684;s:4:\"time\";d:0.11;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.52;s:5:\"bytes\";i:5242;s:11:\"size_before\";i:25545;s:10:\"size_after\";i:20303;s:4:\"time\";d:0.08;}}}'),(119923,8019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:100;s:4:\"file\";s:20:\"2019/07/roselle2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"roselle2-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"roselle2-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:19:\"roselle2-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119922,8019,'_wp_attached_file','2019/07/roselle2.png'),(119925,8021,'_wp_attached_file','2019/07/60613.png'),(119926,8021,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:307;s:6:\"height\";i:102;s:4:\"file\";s:17:\"2019/07/60613.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"60613-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"60613-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"60613-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119924,8019,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.228647724543283;s:5:\"bytes\";i:15025;s:11:\"size_before\";i:70777;s:10:\"size_after\";i:55752;s:4:\"time\";d:0.32;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:30.64;s:5:\"bytes\";i:3054;s:11:\"size_before\";i:9966;s:10:\"size_after\";i:6912;s:4:\"time\";d:0.12;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.97;s:5:\"bytes\";i:6606;s:11:\"size_before\";i:34822;s:10:\"size_after\";i:28216;s:4:\"time\";d:0.1;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.64;s:5:\"bytes\";i:5365;s:11:\"size_before\";i:25989;s:10:\"size_after\";i:20624;s:4:\"time\";d:0.1;}}}'),(119929,8021,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.370451524314532;s:5:\"bytes\";i:13945;s:11:\"size_before\";i:68457;s:10:\"size_after\";i:54512;s:4:\"time\";d:1.4700000000000002;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:27.01;s:5:\"bytes\";i:2451;s:11:\"size_before\";i:9076;s:10:\"size_after\";i:6625;s:4:\"time\";d:1.3;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.94;s:5:\"bytes\";i:6440;s:11:\"size_before\";i:33994;s:10:\"size_after\";i:27554;s:4:\"time\";d:0.11;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.91;s:5:\"bytes\";i:5054;s:11:\"size_before\";i:25387;s:10:\"size_after\";i:20333;s:4:\"time\";d:0.06;}}}'),(119928,8022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:80;s:4:\"file\";s:17:\"2019/07/60606.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"60606-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"60606-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"60606-250x66.png\";s:5:\"width\";i:250;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119930,8023,'_wp_attached_file','2019/07/elmwood.png'),(119927,8022,'_wp_attached_file','2019/07/60606.png'),(119931,8023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2019/07/elmwood.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"elmwood-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"elmwood-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"elmwood-250x66.png\";s:5:\"width\";i:250;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119932,8022,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.64074402391935;s:5:\"bytes\";i:15069;s:11:\"size_before\";i:66557;s:10:\"size_after\";i:51488;s:4:\"time\";d:1.1600000000000001;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:35.65;s:5:\"bytes\";i:3305;s:11:\"size_before\";i:9271;s:10:\"size_after\";i:5966;s:4:\"time\";d:1.06;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.19;s:5:\"bytes\";i:6715;s:11:\"size_before\";i:33267;s:10:\"size_after\";i:26552;s:4:\"time\";d:0.06;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.02;s:5:\"bytes\";i:5049;s:11:\"size_before\";i:24019;s:10:\"size_after\";i:18970;s:4:\"time\";d:0.04;}}}'),(119934,8024,'_wp_attached_file','2019/07/chicago60618-1.png'),(119935,8024,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:105;s:4:\"file\";s:26:\"2019/07/chicago60618-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"chicago60618-1-150x105.png\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"chicago60618-1-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:25:\"chicago60618-1-250x79.png\";s:5:\"width\";i:250;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119933,8023,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.087666589631;s:5:\"bytes\";i:14336;s:11:\"size_before\";i:64905;s:10:\"size_after\";i:50569;s:4:\"time\";d:0.12000000000000001;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:36.06;s:5:\"bytes\";i:3348;s:11:\"size_before\";i:9284;s:10:\"size_after\";i:5936;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.71;s:5:\"bytes\";i:6388;s:11:\"size_before\";i:32406;s:10:\"size_after\";i:26018;s:4:\"time\";d:0.05;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.81;s:5:\"bytes\";i:4600;s:11:\"size_before\";i:23215;s:10:\"size_after\";i:18615;s:4:\"time\";d:0.05;}}}'),(119936,8024,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.231624830903353;s:5:\"bytes\";i:15456;s:11:\"size_before\";i:66530;s:10:\"size_after\";i:51074;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.65;s:5:\"bytes\";i:4148;s:11:\"size_before\";i:9725;s:10:\"size_after\";i:5577;s:4:\"time\";d:0.05;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.03;s:5:\"bytes\";i:6596;s:11:\"size_before\";i:32934;s:10:\"size_after\";i:26338;s:4:\"time\";d:0.06;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.74;s:5:\"bytes\";i:4712;s:11:\"size_before\";i:23871;s:10:\"size_after\";i:19159;s:4:\"time\";d:0.06;}}}'),(119953,8033,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:31:\"2019/07/60613-nazwa-listing.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"60613-nazwa-listing-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"60613-nazwa-listing-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:30:\"60613-nazwa-listing-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119952,8033,'_wp_attached_file','2019/07/60613-nazwa-listing.png'),(119954,8033,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.859535568575723;s:5:\"bytes\";i:13600;s:11:\"size_before\";i:65198;s:10:\"size_after\";i:51598;s:4:\"time\";d:2.4699999999999998;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:35.56;s:5:\"bytes\";i:4523;s:11:\"size_before\";i:12721;s:10:\"size_after\";i:8198;s:4:\"time\";d:1.39;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.16;s:5:\"bytes\";i:4150;s:11:\"size_before\";i:27377;s:10:\"size_after\";i:23227;s:4:\"time\";d:1.05;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.63;s:5:\"bytes\";i:4927;s:11:\"size_before\";i:25100;s:10:\"size_after\";i:20173;s:4:\"time\";d:0.03;}}}'),(119967,8037,'_wp_attached_file','2019/08/60639.png'),(120002,8043,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.294211850835049;s:5:\"bytes\";i:1877;s:11:\"size_before\";i:43710;s:10:\"size_after\";i:41833;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:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.39;s:5:\"bytes\";i:704;s:11:\"size_before\";i:1834;s:10:\"size_after\";i:1130;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.49;s:5:\"bytes\";i:354;s:11:\"size_before\";i:23711;s:10:\"size_after\";i:23357;s:4:\"time\";d:0.08;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.51;s:5:\"bytes\";i:819;s:11:\"size_before\";i:18165;s:10:\"size_after\";i:17346;s:4:\"time\";d:0.06;}}}'),(120000,8043,'_wp_attached_file','2019/08/image-9.png'),(120001,8043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:327;s:6:\"height\";i:88;s:4:\"file\";s:19:\"2019/08/image-9.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"image-9-150x88.png\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"image-9-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"image-9-250x67.png\";s:5:\"width\";i:250;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119969,8037,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.28586727351829;s:5:\"bytes\";i:10928;s:11:\"size_before\";i:59762;s:10:\"size_after\";i:48834;s:4:\"time\";d:0.1;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:29.73;s:5:\"bytes\";i:2916;s:11:\"size_before\";i:9807;s:10:\"size_after\";i:6891;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8;s:5:\"bytes\";i:3568;s:11:\"size_before\";i:25851;s:10:\"size_after\";i:22283;s:4:\"time\";d:0.04;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.44;s:5:\"bytes\";i:4444;s:11:\"size_before\";i:24104;s:10:\"size_after\";i:19660;s:4:\"time\";d:0.03;}}}'),(119968,8037,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:17:\"2019/08/60639.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"60639-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"60639-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:16:\"60639-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119984,8041,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.615530572553484;s:5:\"bytes\";i:973;s:11:\"size_before\";i:21081;s:10:\"size_after\";i:20108;s:4:\"time\";d:0.1;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:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.6;s:5:\"bytes\";i:632;s:11:\"size_before\";i:2469;s:10:\"size_after\";i:1837;s:4:\"time\";d:0.02;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.83;s:5:\"bytes\";i:341;s:11:\"size_before\";i:18612;s:10:\"size_after\";i:18271;s:4:\"time\";d:0.08;}}}'),(119982,8041,'_wp_attached_file','2019/08/image-8.png'),(119983,8041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:77;s:4:\"file\";s:19:\"2019/08/image-8.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"image-8-150x77.png\";s:5:\"width\";i:150;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:18:\"image-8-250x66.png\";s:5:\"width\";i:250;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120473,1354,'slide_template','default'),(120474,1354,'second_featured_img',NULL),(120475,1354,'_yoast_wpseo_estimated-reading-time-minutes','2'),(119898,8001,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.3632789680597437;s:5:\"bytes\";i:10651;s:11:\"size_before\";i:316685;s:10:\"size_after\";i:306034;s:4:\"time\";d:0.18999999999999997;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.83;s:5:\"bytes\";i:275;s:11:\"size_before\";i:5698;s:10:\"size_after\";i:5423;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.71;s:5:\"bytes\";i:510;s:11:\"size_before\";i:13764;s:10:\"size_after\";i:13254;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95;s:5:\"bytes\";i:1833;s:11:\"size_before\";i:62151;s:10:\"size_after\";i:60318;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8;s:5:\"bytes\";i:2713;s:11:\"size_before\";i:96884;s:10:\"size_after\";i:94171;s:4:\"time\";d:0.06;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.99;s:5:\"bytes\";i:3939;s:11:\"size_before\";i:98618;s:10:\"size_after\";i:94679;s:4:\"time\";d:0.03;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.73;s:5:\"bytes\";i:388;s:11:\"size_before\";i:10401;s:10:\"size_after\";i:10013;s:4:\"time\";d:0.02;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4;s:5:\"bytes\";i:993;s:11:\"size_before\";i:29169;s:10:\"size_after\";i:28176;s:4:\"time\";d:0.02;}}}'),(119896,8001,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1040;s:6:\"height\";i:800;s:4:\"file\";s:61:\"2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-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:61:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-768x591.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-1024x788.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:62:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-1040x750.jpg\";s:5:\"width\";i:1040;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:61:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-250x192.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:61:\"custom-kitchen-remodel-dallas-tx-joseph-and-berry-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119895,8001,'_wp_attached_file','2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg'),(119710,7905,'_menu_item_url','https://www.yelp.com/biz/chicagoland-remodeling-elmwood-park'),(119709,7905,'_menu_item_xfn',''),(119707,7905,'_menu_item_target',''),(119708,7905,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(119706,7905,'_menu_item_object','custom'),(119705,7905,'_menu_item_object_id','7905'),(119703,7905,'_menu_item_type','custom'),(119704,7905,'_menu_item_menu_item_parent','0'),(119701,7904,'_menu_item_xfn',''),(119702,7904,'_menu_item_url','https://www.facebook.com/Chicagoland-Remodeling-Inc-146756022167900/'),(119700,7904,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(119699,7904,'_menu_item_target',''),(119697,7904,'_menu_item_object_id','7904'),(119698,7904,'_menu_item_object','custom'),(119695,7904,'_menu_item_type','custom'),(119696,7904,'_menu_item_menu_item_parent','0'),(119679,7902,'_menu_item_type','custom'),(119680,7902,'_menu_item_menu_item_parent','0'),(119681,7902,'_menu_item_object_id','7902'),(119682,7902,'_menu_item_object','custom'),(119683,7902,'_menu_item_target',''),(119684,7902,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(119685,7902,'_menu_item_xfn',''),(119686,7902,'_menu_item_url','https://www.angieslist.com/companylist/us/il/elmwood-park/chicagoland-remodeling-inc-reviews-440818.htm'),(119687,7903,'_menu_item_type','custom'),(119688,7903,'_menu_item_menu_item_parent','0'),(119689,7903,'_menu_item_object_id','7903'),(119690,7903,'_menu_item_object','custom'),(119691,7903,'_menu_item_target',''),(119692,7903,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(119693,7903,'_menu_item_xfn',''),(119694,7903,'_menu_item_url','https://www.google.com/maps/place/Chicagoland+Remodeling+Inc+Elmwood+Park/@41.9191304,-87.8063203,15z/data=!4m5!3m4!1s0x0:0x96ea8c6cd66dd326!8m2!3d41.9191304!4d-87.8063203?sa=X&ved=0ahUKEwimtbiv37zRAhVHxoMKHY5jDYcQ_BIIkAEwCg'),(119822,7954,'_edit_last','1'),(120453,7945,'ulm_custom_get_post_template','single_fullwidth.php'),(119819,7945,'_yoast_wpseo_primary_category','20'),(119818,7945,'_yoast_wpseo_content_score','60'),(119817,7945,'hefo_after','0'),(119816,7945,'hefo_before','0'),(119815,7945,'_thumbnail_id','7946'),(119814,7946,'_wp_attachment_image_alt','Professional bathroom remodeling contractors'),(119823,7954,'_edit_lock','1612440881:1'),(119824,7954,'_thumbnail_id','1427'),(119825,7954,'hefo_before','0'),(119826,7954,'hefo_after','0'),(119827,7954,'_yoast_wpseo_content_score','90'),(119828,7954,'_yoast_wpseo_primary_category','20'),(120447,7954,'ulm_custom_get_post_template','single_fullwidth.php'),(119907,8010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:105;s:4:\"file\";s:24:\"2019/07/chicago60618.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"chicago60618-150x105.png\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"chicago60618-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:23:\"chicago60618-250x79.png\";s:5:\"width\";i:250;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119906,8010,'_wp_attached_file','2019/07/chicago60618.png'),(120449,7945,'slide_template','default'),(120450,7945,'second_featured_img',NULL),(120451,7945,'_yoast_wpseo_title','Blog - Bathroom Ideas'),(120443,7954,'_yoast_wpseo_title','Blog - Ideal Kitchen'),(120444,7954,'_yoast_wpseo_estimated-reading-time-minutes','2'),(119899,8002,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1040;s:6:\"height\";i:800;s:4:\"file\";s:128:\"2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:128:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-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:128:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:128:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-768x591.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:129:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-1024x788.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:129:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-1040x750.jpg\";s:5:\"width\";i:1040;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:128:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-250x192.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:128:\"new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(119897,8002,'_wp_attached_file','2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg'),(120422,599,'second_featured_img',NULL),(120418,959,'second_featured_img',NULL),(120417,959,'slide_template','default'),(119918,8013,'_wp_attached_file','2019/07/roselle-1.png'),(119919,8013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2019/07/roselle-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"roselle-1-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"roselle-1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:20:\"roselle-1-250x83.png\";s:5:\"width\";i:250;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(120421,599,'slide_template','default'),(120328,8204,'_wp_attached_file','2020/09/incredilble-bathroom-remodeling-scaled.jpg'),(120330,8205,'_wp_attached_file','2020/09/stunning-kitchen-remodeling.jpg'),(120331,8205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1381;s:4:\"file\";s:39:\"2020/09/stunning-kitchen-remodeling.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"stunning-kitchen-remodeling-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"stunning-kitchen-remodeling-1024x707.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"stunning-kitchen-remodeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"stunning-kitchen-remodeling-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"stunning-kitchen-remodeling-1536x1061.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1061;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-slide\";a:4:{s:4:\"file\";s:40:\"stunning-kitchen-remodeling-1920x750.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-slide-thumb\";a:4:{s:4:\"file\";s:39:\"stunning-kitchen-remodeling-250x173.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"stunning-kitchen-remodeling-612x257.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:38:\"©2016 Richard Mandelkorn\r781-259-3310\";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\";}}'),(120332,8204,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9209422454278986;s:5:\"bytes\";i:25152;s:11:\"size_before\";i:861092;s:10:\"size_after\";i:835940;s:4:\"time\";d:0.7200000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.51;s:5:\"bytes\";i:419;s:11:\"size_before\";i:11947;s:10:\"size_after\";i:11528;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.66;s:5:\"bytes\";i:2489;s:11:\"size_before\";i:93729;s:10:\"size_after\";i:91240;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.89;s:5:\"bytes\";i:273;s:11:\"size_before\";i:5586;s:10:\"size_after\";i:5313;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.82;s:5:\"bytes\";i:1609;s:11:\"size_before\";i:57101;s:10:\"size_after\";i:55492;s:4:\"time\";d:0.1;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.69;s:5:\"bytes\";i:4936;s:11:\"size_before\";i:183666;s:10:\"size_after\";i:178730;s:4:\"time\";d:0.07;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9;s:5:\"bytes\";i:8583;s:11:\"size_before\";i:296178;s:10:\"size_after\";i:287595;s:4:\"time\";d:0.19;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.11;s:5:\"bytes\";i:5453;s:11:\"size_before\";i:175473;s:10:\"size_after\";i:170020;s:4:\"time\";d:0.21;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.96;s:5:\"bytes\";i:360;s:11:\"size_before\";i:9100;s:10:\"size_after\";i:8740;s:4:\"time\";d:0.03;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.64;s:5:\"bytes\";i:1030;s:11:\"size_before\";i:28312;s:10:\"size_after\";i:27282;s:4:\"time\";d:0.04;}}}'),(120333,8205,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.8646521306432637;s:5:\"bytes\";i:32037;s:11:\"size_before\";i:828975;s:10:\"size_after\";i:796938;s:4:\"time\";d:0.44;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:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92;s:5:\"bytes\";i:807;s:11:\"size_before\";i:16398;s:10:\"size_after\";i:15591;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.24;s:5:\"bytes\";i:5970;s:11:\"size_before\";i:140821;s:10:\"size_after\";i:134851;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.91;s:5:\"bytes\";i:343;s:11:\"size_before\";i:6982;s:10:\"size_after\";i:6639;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38;s:5:\"bytes\";i:3706;s:11:\"size_before\";i:84580;s:10:\"size_after\";i:80874;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6;s:5:\"bytes\";i:10198;s:11:\"size_before\";i:283644;s:10:\"size_after\";i:273446;s:4:\"time\";d:0.1;}s:14:\"featured-slide\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.46;s:5:\"bytes\";i:8491;s:11:\"size_before\";i:245712;s:10:\"size_after\";i:237221;s:4:\"time\";d:0.18;}s:20:\"featured-slide-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.19;s:5:\"bytes\";i:635;s:11:\"size_before\";i:12232;s:10:\"size_after\";i:11597;s:4:\"time\";d:0.01;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.89;s:5:\"bytes\";i:1887;s:11:\"size_before\";i:38606;s:10:\"size_after\";i:36719;s:4:\"time\";d:0.04;}}}'),(120343,8,'second_featured_img',''),(120413,956,'second_featured_img',NULL);
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=8245 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (98,1,'2013-01-31 05:47:00','2013-01-31 05:47:00','','','','inherit','open','open','','fairoakskitchen3','','','2017-11-13 16:10:02','2017-11-13 16:10:02','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg',0,'attachment','image/jpeg',0),(99,1,'2013-01-31 05:47:01','2013-01-31 05:47:01','','','','inherit','open','open','','fairoakskitchen4','','','2017-11-13 16:09:42','2017-11-13 16:09:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg',0,'attachment','image/jpeg',0),(100,1,'2013-01-31 05:47:02','2013-01-31 05:47:02','','','','inherit','open','open','','fairoakskitchen5','','','2017-11-13 16:09:18','2017-11-13 16:09:18','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg',0,'attachment','image/jpeg',0),(101,1,'2013-01-31 05:47:03','2013-01-31 05:47:03','','','','inherit','open','open','','fairoakskitchen6','','','2017-11-13 16:09:10','2017-11-13 16:09:10','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen6.jpg',0,'attachment','image/jpeg',0),(102,1,'2013-01-31 05:47:03','2013-01-31 05:47:03','','','','inherit','open','open','','fairoakskitchen7','','','2017-11-13 16:08:37','2017-11-13 16:08:37','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen7.jpg',0,'attachment','image/jpeg',0),(103,1,'2013-01-31 05:47:06','2013-01-31 05:47:06','','','','inherit','open','open','','hardiesiding','','','2017-11-13 16:08:14','2017-11-13 16:08:14','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding.png',0,'attachment','image/png',0),(104,1,'2013-01-31 05:47:07','2013-01-31 05:47:07','','','','inherit','open','open','','hardiesiding1','','','2017-11-13 16:07:50','2017-11-13 16:07:50','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding1.jpg',0,'attachment','image/jpeg',0),(105,1,'2013-01-31 05:47:08','2013-01-31 05:47:08','','','','inherit','open','open','','hardiesiding2','','','2017-11-13 16:07:29','2017-11-13 16:07:29','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding2.jpg',0,'attachment','image/jpeg',0),(106,1,'2013-01-31 05:47:09','2013-01-31 05:47:09','','','','inherit','open','open','','hardiesiding3','','','2017-11-13 16:07:20','2017-11-13 16:07:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding3.jpg',0,'attachment','image/jpeg',0),(107,1,'2013-01-31 05:47:10','2013-01-31 05:47:10','','','','inherit','open','open','','hardiesiding4','','','2017-11-13 16:07:09','2017-11-13 16:07:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding4.jpg',0,'attachment','image/jpeg',0),(108,1,'2013-01-31 05:47:11','2013-01-31 05:47:11','','','','inherit','open','open','','hardiesiding5','','','2017-11-13 16:06:23','2017-11-13 16:06:23','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding5.jpg',0,'attachment','image/jpeg',0),(109,1,'2013-01-31 05:47:12','2013-01-31 05:47:12','','','','inherit','open','open','','hardiesiding6','','','2017-11-13 16:06:03','2017-11-13 16:06:03','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding6.jpg',0,'attachment','image/jpeg',0),(110,1,'2013-01-31 05:47:13','2013-01-31 05:47:13','','','','inherit','open','open','','hardiesiding7','','','2017-11-13 16:05:41','2017-11-13 16:05:41','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding7.jpg',0,'attachment','image/jpeg',0),(111,1,'2013-01-31 05:47:14','2013-01-31 05:47:14','','','','inherit','open','open','','hardiesiding8','','','2017-11-13 16:05:27','2017-11-13 16:05:27','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/hardieSiding8.jpg',0,'attachment','image/jpeg',0),(112,1,'2013-01-31 05:47:16','2013-01-31 05:47:16','','','','inherit','open','open','','lsdkitchen','','','2017-11-13 16:05:18','2017-11-13 16:05:18','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen.png',0,'attachment','image/png',0),(48,1,'2012-11-28 23:03:19','2012-11-28 23:03:19','','Contact','','publish','open','closed','','48','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'http://www.chicagoremod.derekkramer.com/?p=48',16,'nav_menu_item','',0),(7,1,'2012-11-28 14:19:04','2012-11-28 14:19:04','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piÃ±a coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://localhost/dk_2012/public_html/chicagoremod/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page-2','','','2012-11-28 23:08:58','2012-11-28 23:08:58','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=2',1000,'page','',0),(8,1,'2012-11-28 19:59:29','2012-11-28 19:59:29','<div>\r\n<h1 style=\"text-align: center; font-size: 300%; line-height: 120%; margin-top: 50px;\">Chicagoland Remodeling</h1>\r\n<hr />\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\"><strong>Chicagoland Remodeling</strong> is one of Chicago’s go to home remodeling contractors for all of your needs. A proud member of Angie’s List, we are licensed for both general contractor work and roofing, making us a one stop shop for your home remodeling needs. With nearing thirty years of experience, we are up to every challenge. For us, good is not good enough. We strive for each of our jobs to be excellent and superior. We strive to make that superior remodeling work available at a competitive, affordable price.</p>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Chicagoland Remodeling performs wonderful work on home, bathroom  and kitchen remodeling (and more!). We pride ourselves on a friendly and professional staff. In fact, your first meeting will be with our owner, Wally Szymanski. We provide free estimates for our remodeling services, and if you choose us, we do our best to create a work schedule that fits both our needs. Remodeling is a big decision, and we here at Chicagoland Remodeling want to make your dreams come true. We promise there will never be surprises; we keep you up to date on changes as they happen. You are our priority. Since cost and quality are two of your top priorities, they are ours as well.</p>\r\n<p>&nbsp;</p>\r\n<div class=\"cr-row ThreeColumn flex\">\r\n<div class=\"cr-col-md-4 ColumnOne\">\r\n<h2 style=\"text-align: center; margin-bottom: 37px;\">Splendid remodeling to make over your place</h2>\r\n<hr />\r\n<h3>Our contractors performing excellent services</h3>\r\n<p style=\"text-align: justify;\">Does thinking of remodeling give you sleepless nights? With best contractors, you have nothing to worry about! We make the most out of every space we remodel. You will be delighted with your new interior design.</p>\r\n</div>\r\n<div class=\"cr-col-md-4 ColumnTwo\">\r\n<h2 style=\"text-align: center;\">Make your business space more welcoming </h2>\r\n<hr />\r\n<h3>You’re in the right place if you need commercial contractors</h3>\r\n<p style=\"text-align: justify;\">We offer complex commercial services. Whether you are in need of increasing your business space, or refreshing the interiors – our indispensable contractors got your covered. If you’re serious about your business, you have to take care of your office appearance to impress the customers.</p>\r\n</div>\r\n<div class=\"cr-col-md-4 ColumnThree\">\r\n<h2 style=\"text-align: center;\">Chicagoland Remodeling for all your needs</h2>\r\n<hr />\r\n<h3>Look no further for reliable remodeling services</h3>\r\n<p style=\"text-align: justify; margin-top: 35px;\">When it comes to interior remodeling, there is nothing that could surprise us. We’ve been in the remodeling business for many years and we are able to handle every situation. We are pleased to assist you during whole remodeling process to make it less stressful for you!</p>\r\n</div>\r\n</div>\r\n<div class=\"cr-row\">\r\n<div class=\"cr-col-sm-6\">\r\n<h2 style=\"text-align: center; font-size: 200%;\">About the Chicagoland Remodeling</h2>\r\n<hr />\r\n<h3 style=\"text-align: left; font-size: 150%;\">The most experienced company</h3>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">There are hundreds of remodeling contractors throughout Chicagoland, which can make the decision on who to hire difficult. We are aware of this, and we strive to always remain at the top of the pack. We love our job and our priority is always the customer. Each of our contractors is highly experienced in all aspects of remodeling, allowing us to bring you your updated home quickly, efficiently, and affordably. Our staff is friendly and communicative. We know that remodeling is a big decision, so we are here to guide you through the process. It should be fun! You are bringing your home from drab to the spectacular vision you have in your head.</p>\r\n<h3>Whenever you need remodeling advice, feel free to contact Chicagoland Remodeling!</h3>\r\n<div style=\"text-align: center;\"><img style=\"display: block; margin: 0 auto;\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg\" alt=\"\" width=\"225\" height=\"225\" /></div>\r\n</div>\r\n<div class=\"cr-col-sm-6\">\r\n<h2 style=\"text-align: center; font-size: 200%;\">Splendid Services Provided by Chicagoland Remodeling</h2>\r\n<hr />\r\n<h3 style=\"text-align: left; font-size: 150%;\">Remodel provided with a wide array of services in Chicagoland</h3>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">At Chicagoland Remodeling, Inc., we can provide a variety of remodeling services. We can remodel family rooms, bedrooms, bathrooms, kitchens, basements, stairs, and more. Sometimes remodels are as simple as a new coat of paint. Sometimes its changing up the floor. A remodeling project can be as large and grand or small and minimalistic as you would like. It all depends on your vision and your budget. Contact us to get a quote and discuss your options, today!</p>\r\n<h3 style=\"text-align: left; font-size: 150%;\">We Deliver Quality Remodel Services</h3>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Remodeling is not just for homes! Commercial properties can undergo remodeling or renovations as well. Chicagoland Remodeling, Inc. is highly experienced in home remodeling, yes, but our commercial clients have loved our results as well. Need to upgrade your office and commercial space? Not a problem! A commercial remodeling can be just the thing you need to redefine, rebrand, or make your current working space for suited to your business’s unique needs. Opening up floorplans, new flooring, and paint jobs are all common commercial remodeling techniques.</p>\r\n<h3>Chicagoland Remodeling covering all your needs</h3>\r\n</div>\r\n</div>\r\n<p>&nbsp;</p>\r\n<h2 style=\"text-align: center; font-size: 200%;\">The Reviews of Chicagoland Remodeling </h2>\r\n<hr />\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">We believe that with good work and fair prices, you can achieve a lot. This is how our contractracting company have worked for over 20 years! Since the late 1980s, we have finished great amounts of remodeling projects, which have been appreciated by many customers. This is possible only because our clients are a top priority for Chicagoland Remodeling. Every day we strive to perform only high quality remodeling, kitchen and bathroom services. Your satisfaction is our goal. Are we fulfilling it?</p>\r\n</div>\r\n<div id=\"social_links\">\r\n<div id=\"social_links_content\">\r\n<h4 style=\"text-align: center; font-size: 150%; color: #ffffff;\">Read below how other customers rated our remodeling services:</h4>\r\n\r\n\r\n \r\n\r\n\r\n<div style=\"text-align: center; display: block;\">\r\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.google.com/maps/place/Chicagoland+Remodeling+Inc+Elmwood+Park/@41.9191304,-87.8063203,15z/data=!4m5!3m4!1s0x0:0x96ea8c6cd66dd326!8m2!3d41.9191304!4d-87.8063203?sa=X&amp;ved=0ahUKEwimtbiv37zRAhVHxoMKHY5jDYcQ_BIIkAEwCg\" rel=\"nofollow\"> <img class=\"alignnone size-full wp-image-828\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\r\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.facebook.com/Chicagoland-Remodeling-Inc-146756022167900/\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-835\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512-300x300.png\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\r\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.yelp.com/biz/chicagoland-remodeling-elmwood-park\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-849\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b-300x300.jpg\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\r\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.mapquest.com/us/illinois/business-elmwood-park/chicagoland-remodeling-7799028\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-850\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large-259x300.jpg\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\r\n<div style=\"clear: both;\"> </div>\r\n</div>\r\n</div>\r\n</div>\r\n<div style=\"margin-top: 200px;\">\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center; font-size: 160%;\">Chicagoland Remodeling Awards</h4>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">When choosing a remodeling service, you want only the best. How do you best make that distinction with so many factors to consider? Chicagoland Remodeling has received several awards for our services, proving that we are a top contender for your job! We received the 2015 Angie’s List Super Service Award. We have been recognized by the Better Business Bureau (BBB) as an Accredited Business with A+ rating. We are also a Smith Approved Contractor. The outstanding work of our remodelers have been appreciated by following portals:</p>\r\n<div style=\"text-align: center; display: block;\">\r\n<div style=\"width: 50%; float: left;\"><a href=\"https://www.angieslist.com/companylist/us/il/elmwood-park/chicagoland-remodeling-inc-reviews-440818.htm\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-880\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015-300x248.png\" alt=\"\" width=\"250\" height=\"195\" /> </a></div>\r\n<div style=\"width: 50%; float: left;\"><a href=\"http://www.gosmith.com/pro/66126\" rel=\"nofollow\"> <img class=\"alignnone size-full wp-image-865\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png\" alt=\"\" width=\"195\" height=\"195\" /> </a></div>\r\n\r\n\r\n </div>\r\n<h4 style=\"text-align: center; font-size: 150%;\">Over 260 reviews on Angies List!</h4>\r\n<div style=\"text-align: center;\"><img class=\"alignnone size-medium wp-image-872\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn-300x90.png\" alt=\"\" width=\"900\" height=\"270\" /></div>\r\n\r\n\r\n   \r\n\r\n\r\n<h2 style=\"text-align: center; font-size: 200%;\">Services We Provide:</h2>\r\n<hr />\r\n<h2 style=\"text-align: center; font-size: 250%;\">Interiors</h2>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Chicagoland Remodeling is the go to company for many Chicagoans. Some of our top remodeling services include kitchen, basement, bedroom, and bathroom remodeling. Here at Chicagoland Remodeling we offer free estimates performed by our owner. Our staff is experienced and we strive to make our services affordable for all. Remodeling is an important part of helping to make your home uniquely yours.<br />\r\nWhether you are needing to expand the size of a room, update outdated décor and appliances, or more, Chicagoland Remodeling has the experience to make your dream come true. We offer a wide variety of services. Check out the full list of our remodeling services below. If you don’t see a service you are looking for, give us a call. With our years of experience, we may be able to help!</p>\r\n<h2 style=\"text-align: center; font-size: 250%;\">Exteriors </h2>\r\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Do you need exterior remodeling done? <a href=\"https://chicagolandroofingcompanies.com/\" rel=\"nofollow\"><strong> Chicagoland Roofing Companies </strong> </a> has you covered! We are the one stop you need for all of your exterior needs. Chicagoland homeowners trust are numerous, but not every contractor is skilled at both interior and exterior remodeling. When you need roofing, windows, doors, gutters, or soffit fascia installed or repaired, we can help you! Exterior remodeling is incredibly important. Structurally, the tasks performed are important; they can prevent water damage, increase insulation, and protect the foundation of your home. But it is also important aesthetically. You want your home to look attractive. Your home is unique to your family, and it should feel like your home. For remodel purposes look no further than Chicagoland Remodeling. We can perform any exterior remodeling job. Just give us a call. We can’t wait to hear from you.</p>\r\n</div>\r\n<div id=\"makeMeScrollable\"><a href=\"http://chicagolandroofingcompanies.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img class=\"alignnone wp-image-789 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg\" alt=\"bright kitchen \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">EXTERIORS</span></a><a href=\"/kitchen-remodeling/\"><img class=\"alignnone wp-image-789 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg\" alt=\"bright kitchen \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">KITCHENS</span></a><a href=\"/bathroom-remodeling/\"><img class=\"alignnone wp-image-784 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg\" alt=\"large bathroom \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">BATHROOMS</span></a><a href=\"/basements/\"><img class=\"alignnone wp-image-783 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg\" alt=\"basement with billiard \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">BASEMENTS</span></a><a href=\"/bedrooms/\"><img class=\"alignnone wp-image-785 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg\" alt=\"pink and white bedroom\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">MASTER BEDROOMS</span></a><a href=\"/family-rooms/\"><img class=\"alignnone wp-image-788 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg\" alt=\"family room \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">FAMILY ROOMS</span></a><a href=\"/dinning-rooms/\"><img class=\"alignnone size-full wp-image-787\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg\" alt=\"dining_room\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">DINNING ROOMS</span></a><a href=\"/offices-commercial-spaces/\"><img class=\"alignnone wp-image-786 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg\" alt=\"office \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">COMMERCIALS</span></a><a href=\"/remodeling-painting/\"><img class=\"alignnone wp-image-790 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg\" alt=\"hotel coridour \" width=\"293\" height=\"293\" /> <span class=\"carousel-span\">BATHROOMS</span></a><a href=\"/stairs/\"><img class=\"alignnone wp-image-791 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg\" alt=\"large stairs\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">STAIRS </span></a></div>\r\n<p>&nbsp;</p>\r\n<h2 style=\"text-align: center; font-size: 200%;\">Chicagoland Remodeling Services:</h2>\r\n<p>&nbsp;</p>\r\n<div id=\"services-info\">[su_row][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">01</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Kitchen Contractors</h3>\r\n<p class=\"service-description\">Shouldn’t the place you eat be both functional and stylish? Chicagoland Remodeling can help a kitchen meet an individual’s unique cooking needs through customized counter space, storage space, and lighting options.</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">02</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Bathroom Contractors</h3>\r\n<p class=\"service-description\">Relax and unwind in a bathroom designed to do just that. Bathroom services can range from small tile or lighting changes to a complete replacing of fixtures and floor space.</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">03</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Basement Contractors </h3>\r\n<p class=\"service-description\">Add additional living space to your home with an upgraded basement. Basements can add remarkable flexibility to your home’s layout. Use it for bedrooms, a game room, laundry, storage, and more!</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][/su_row][su_row][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">04</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Bedroom Contractors</h3>\r\n<p class=\"service-description\">Your bedroom is your personal space, and we can help customize it to meet your wants and needs from changes in floor plans to changes in color schemes and flooring.</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">05</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Family Room Contractors </h3>\r\n<p class=\"service-description\">If you’re like most families, you probably spend a lot of time in your family room. Make this room a place you love with new flooring, wall colors, and lighting.</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][su_column size=\"1/3\"]\r\n\r\n\r\n<div class=\"su-row\">\r\n<div class=\"su-column su-column-size-1-5\">\r\n<p class=\"services-count\">06</p>\r\n</div>\r\n<div class=\"su-column su-column-size-4-5\">\r\n<h3>Commercial Contractors </h3>\r\n<p class=\"service-description\">Remodeling can bring life to a tired business and impress customers. Change cluttered floorplans to one that fits your business model. Update lighting or color schemes to fit your vision.</p>\r\n</div>\r\n</div>\r\n\r\n\r\n[/su_column][/su_row]</div>\r\n<p>\r\n<style>\r\n  #container2 {\r\n    display:none;\r\n  }\r\n</style>\r\n</p>','Home','','publish','closed','closed','','home','','','2021-02-03 18:35:41','2021-02-03 18:35:41','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=5',0,'page','',0),(1134,0,'2017-04-18 14:33:06','2017-04-18 14:33:06','799','Contact Us','','publish','closed','closed','','contact-us-30','','','2017-04-18 14:33:06','2017-04-18 14:33:06','',0,'https://chicagolandremodeling.com/contact-us-30/',0,'wr_cfsb_post_type','',0),(1007,1,'2017-02-09 23:55:47','2017-02-09 23:55:47','','','','inherit','closed','closed','','img3','','','2017-11-13 13:05:50','2017-11-13 13:05:50','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3.jpg',0,'attachment','image/jpeg',0),(1006,1,'2017-02-09 23:55:46','2017-02-09 23:55:46','','','','inherit','closed','closed','','img2','','','2017-11-13 13:06:03','2017-11-13 13:06:03','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2.jpg',0,'attachment','image/jpeg',0),(1005,1,'2017-02-09 23:55:45','2017-02-09 23:55:45','','','','inherit','closed','closed','','img1','','','2017-11-13 13:06:59','2017-11-13 13:06:59','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1.jpg',0,'attachment','image/jpeg',0),(32,1,'2012-11-28 21:55:54','2012-11-28 21:55:54','<p>\r\n<style>\r\n#container2{\r\ndisplay:none;\r\n}\r\n</style>\r\n</p>\r\n<h3>About Us</h3>\r\n<p>For almost a quarter of a century, Chicagoland Remodeling has been helping homeowners and business owners realize their remodeling dreams. Founded by Wladyslaw \'Wally\' Szymanski in the late 1980s, we take pride in our experienced and professional staff that delivers a courteous and professional experience from the first meeting to the final inspection.</p>\r\n<p>Chicagoland Remodeling employees are experts in basement and kitchen work, bathroom redesigns, office &amp; commercial spaces remodeling, stairs installation and room painting. Chicagoland workers are fully insured and bonded for all work performed in and around your home. From your first meeting with your estimator and owner Wally Szymanski to the follow-up with your assigned project manager, Mike or Paul and the rest of the crew, you will find dedicated people eager to make your remodeling dreams come true.</p>\r\n<p>We understand that purchasing or remodeling a home, office or commercial building is one of the most expensive and time consuming investments you will ever make. Researching and hiring a contractor is a major decision. There are many factors to consider and we want to help you choose a contractor you can count on &amp; and you can count on us! We believe that experience translates to quality craftsmanship, which we pride ourselves on and which every customer deserves. Good is not an option for us. We believe in providing our customers with great. Our greatest pride is when you recommend our services to a neighbor, friend or family member.</p>\r\n<p>We\'re a proud member of <a title=\"Angie\'s List\" href=\"http://my.angieslist.com/Angieslist/MyAngie/CheckTheList/SPInformation.aspx?ajtoicslA68eS0LFhJu29aSGQ0mhel8oCd3juCQlymIPnKlnWLq%2fCs06Cv51mC8TYipWDNsJcb9F48KFMDxPraediJ8U9GuZ1qYxk%2fRAHsA%3d\" target=\"_blank\" rel=\"noopener\">Angie\'s List</a>.</p>\r\n<h2>Our Remodeling Protection Promise &amp; gives you security in knowing:</h2>\r\n<ul>\r\n	<li>Customers are our first priority and we won’t quit until you are happy.</li>\r\n	<li>Our professional craftsmen and workers are licensed and bonded. See below for details.</li>\r\n	<li>You will receive the highest quality services with competitive, affordable prices.</li>\r\n	<li>Your job will be handled with the highest quality workmanship and materials – to agreed on specifications.</li>\r\n	<li>Chicagoland Remodeling is supported by a full time, experienced staff. This is a full time business!</li>\r\n	<li>We will provide free estimates, explain costs in detail, then determine a work schedule that best meets your needs.</li>\r\n	<li>There will be no surprises! We will review any major differences from the agreed job scope with you.</li>\r\n</ul>\r\n<p>At Chicagoland Remodeling Inc, we take pride in what we do and we want to help you make the best decision possible. Check out the information on the Choosing a Contractor tab; we’re confident you will choose Chicagoland Remodeling.</p>\r\n<h4>Insurance</h4>\r\n<ul>\r\n	<li style=\"list-style-type: none;\">\r\n<ul>\r\n	<li>Liberty Mutual Group (Workers Compensation)</li>\r\n	<li>Echelon Property &amp; Causality Insurance Company (General Liability)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Licensing</h4>\r\n<ul>\r\n	<li style=\"list-style-type: none;\">\r\n<ul>\r\n	<li>State of Illinois Roofing Contractors License No: 104-011399</li>\r\n	<li>City of Chicago General Contractors License No: TGC051987</li>\r\n	<li>City of Chicago Limited Business License No: 1384312</li>\r\n	<li>City of Chicago Home Repair License No: 1382263</li>\r\n	<li>Cook County Roofing License No 034573</li>\r\n	<li>Cook County Carpentry License No 035551</li>\r\n	<li>Cook County General with Trades License No 035437</li>\r\n	<li>We are also licensed in most Chicago suburbsnt</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Forms of Payment</h4>\r\n<p>Cash, check, money orders, Cashier\'s check Visa &amp; MasterCard.</p>','About Us','','publish','closed','closed','','about-us','','','2021-02-03 19:02:03','2021-02-03 19:02:03','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=32',60,'page','',0),(34,1,'2012-11-28 21:56:08','2012-11-28 21:56:08','','Services','','publish','closed','closed','','services','','','2021-02-03 19:05:35','2021-02-03 19:05:35','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=34',70,'page','',0),(40,1,'2012-11-28 22:11:27','2012-11-28 22:11:27','<p>\r\n<style>\r\n#container2{\r\ndisplay:none;\r\n}\r\n</style>\r\n</p>\r\n<h3>Testimonials</h3>\r\n<p>You\'re looking for a contractor and we think Chicagoland Remodeling is the best. But don\'t just take our word for it. Browse the testimonials below to get an idea of what our customers think. Looking for a live reference? Just give us a call and we will provide you with a list of customers who have agreed to be contacted directly.</p>\r\n<h4>Review Date: January 31, 2013</h4>\r\n<p>I contacted Chicagoland Remodeling (CR) for a quote on remodeling our family room. The items I was interested in were removal of wood paneling, installation of hardwood floors, replacement of drywall, raising ceiling, and installation of recessed lighting. Chicagoland Remodeling was slightly higher than other bids, but the detail in the contract, detail in work performed, and the quality of the materials used actually made it on par with others. After the initial demolition stage, we started to think of some additional adds such as additional outlets, dimmer switch, and putting drywall over a brick wall. We approached Chicagoland Remodeling about our additional requests and they were able to provide a quote quickly and told us they would be able to complete the adds in the original time frame.</p>\r\n<p>CR started on time, ended on time, and provided a higher quality remodeling than I had expected. They were able to accommodate additional work and surprises like finding out that half of our ceiling was filled with duct work, only allowing us to raise half of the ceiling and making it more complicated to install the recessed lighting. Having seen similar work done by other contractors CR had high quality workmanship and took time to do things right. For example one contractor told us to lay the hardwood floor over the existing vinyl floor. In contrast, CR bid was to remove the vinyl tile, install a vapor barrier, install a subfloor and then install the hardwood floor.</p>\r\n<p>I was also impressed with the high level of communication CR offered. Izabela in the office was always quick to respond to questions and details. I worked with her multiple times on the contract and she was always courteous and prompt. When I had questions about work being done while I was at work, it was easy for me to contact someone from CR on site either through Izabela or Wally. I couldn\'t be happier with the work or the service. We are actually pleased to have people in our home now...just because of the amazing improvements to the family room.</p>\r\n<h4>Review Date: December 22, 2012</h4>\r\n<p>We bought our condo in October 2010. In February 2011, our downstairs neighbor reported that water was coming into their unit from our bathroom directly above, which the management company of our association determined was due to an improperly installed rubber liner in our shower. We had three highly-rated contractors give estimates, and were extremely impressed with the professionalism and creativity of Wally from Chicagoland Remodeling when he came out to give an estimate. As new homeowners, we just wanted to have the problem fixed, not go through a lengthy or expensive redo of the shower; Wally was understanding of this and priced a replacement of just the floor, bench, and first row of wall tiles using existing tile left over from the previous owner\'s bathroom renovation.</p>\r\n<p>The worker who did the repairs was prompt, polite, and very careful about minimizing the mess. When the concrete floor was removed, he discovered the wooden subfloor and some of the support beams were rotted out, so he went out to the hardware store immediately, bought new wood, and replaced it same day. The project was still completed on schedule with the only additional cost being for the unexpected replacement of the subfloor. Best of all, the bathroom looks as great as it did when we first bought the house - the tile repair work blends seamlessly with the rest of the shower and floor. While I wish I had reviewed this contractor sooner after the work was completed, I can also say almost two years later, everything still looks great, nothing is leaking, and we have no complaints!</p>\r\n<h4>Review Date: December 09, 2012</h4>\r\n<p><strong>Description Of Work:</strong> Tear off 2000 sq ft flat roof, approx 50 years old with multiple layers. Re-flash sky lights, new glass on existing skylights. new drains, build new skylights, install tube skylights (2). Remove and re-flash coping tiles, repair rotten decking, tuck pointing, gutters, scuppers, siding, tear off and restore small sloped porch roof. Paint silver.</p>\r\n<p>Very pleased. All went well, despite numerous problems that were hidden under old roof(s). Wally and his crew were professional and did a great job on the many aspects of this roof repair.</p>\r\n<p>I have always been very wary of roofers but I was extremely happy with the quality and speed of their work. I was at the site for all of the job and could not have hoped for better work. I will recommend them to friends and if I need this kind of work again I would have no hesitation to call them.</p>\r\n<h4>Review Date: May 20, 2012</h4>\r\n<p><strong>Description Of Work:</strong> Complete rehab (inside work: kitchen, 3 bathroom remodeling, hardwood floor, build new pantry and outside work: tear off and re-roof , new hardie board siding installation, gutters and downspouts, new chimney.</p>\r\n<p>Overall, a terrific experience that went better than I could have ever hoped for. We interviewed three companies and selected Chicagoland Remodeling Inc based on price, interaction, review and communication.</p>\r\n<p>We met with Wally Szymanski to go over our initial ideas and to get a quote. Wally was very easy to talk to and understood what our goals were. But, he was also very honest when it came to assessing our project and what he felt was a good idea and what wasn\'t. We did not avoid additional charges, but all were based on our selections and changes we made during entire project. What I like the most was that every change has separate Work Order which was prepared by Izabela. They could have easily steered us toward a much bigger and more expensive renovation.</p>\r\n<p>Wally had also mentioned, in our first conversation, that if there were any other small projects that we had been considering doing (as everyone does), that he could quote them and keep the price down since they would already be there doing work. So, of course, we did. The quote that I received was very reasonable and in line with or cheaper than the other two companies. We then met with Wally again, just before the project start, to finalize the contract and go over my list of questions. He brought Jack, the lead carpenter for the project, to look everything over and answer any technical questions that we had.</p>\r\n<p>The project started on the agreed date. Jack, Damian and Paul were the three carpenters for the project. They had said that they would be there at 8am and work until 4pm/5pm, depending on the day\'s schedule. They showed up between 7:45am and 7:55am EVERY day, worked until 4:40pm to 5pm EVERY day, SIX days a week, until the project was finished. The original timeline was 4 to 6 weeks for the kitchen, bathroom and other jobs but, as with any renovation, complications pushed the entire project to 8 weeks in total. This included the side projects that we had added.</p>\r\n<p>When problems/complications arose, Wally, Izabela and Jack were all very helpful and creative about finding a solution. Nothing was ever done without our prior approval, everything was explained clearly before being executed and all of our concerns were taken very seriously. If there were things that we wanted done a specific way, every attempt was made to satisfy us when at all possible. Of course we had to compromise on one or two things, but not for lack of Chicagolandâs effort. All exterior work was done by professional worker, Chicagoland have crew for every single trade different for siding, roofing and interior renovation. All workers and Management were professional, respectful, engaging, personable, knowledgeable, diligent and highly skilled.</p>\r\n<p>My wife and I are very particular when it comes to design and execution. We tend to look everything over very critically on a project like this. The level of craftsmanship that was brought to this renovation was outstanding. I must mention the one problem that we had during the renovation. It is not insignificant and did cause some distress. Wally recommends installing ridge vent on our roof to avoid mold growing, however we decided to install mushroom vents- it was a mistake we should listen to Wallyâs suggestions. After our roof was complete we hire an insulation company and they said exactly the same about ventilation, however Wally was so nice and send worker over to correct it. In a nutshell, we could not be happier with our experience with and results from Chicagoland. I would not hesitate to hire them again and, in fact, have already approached them about doing another project.</p>','Testimonials','','publish','closed','closed','','testimonials','','','2021-02-03 19:23:48','2021-02-03 19:23:48','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=40',90,'page','',0),(44,1,'2012-11-28 22:11:55','2012-11-28 22:11:55','<p>\r\n<style>\r\n#container2{\r\ndisplay:none;\r\n}\r\n</style>\r\n</p>\r\n<div id=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-sm-6\">\r\n<h3 style=\"text-align: center;\">Contact Info:</h3>\r\n<hr />\r\n<p>Phone: <a href=\"tel:(708) 583-9904\">(708) 583-9904</a> <br />\r\nFax: (708) 583-9906 <br />\r\nE-mail: <a href=\"mailto:izabela@chicagolandremodeling.net\"> izabela@chicagolandremodeling.net</a></p>\r\n<h4>Elmwood Park Office</h4>\r\n<p>2130 N. Harlem Ave. Elmwood Park, Illinois 60707</p>\r\n<h4>Medinah Office</h4>\r\n<p>22w321 Turner Ave Medinah, Illinois 60157</p>\r\n<h4>Elk Grove Village Office</h4>\r\n<p>1286 Old Mill Lane Elk Grove Village, Illinois 60007 Phone: <a href=\"tel:(847) 690-9452\"> (847) 690-9452</a></p>\r\n</div>\r\n<div class=\"col-sm-6\">\r\n<div style=\"padding-left: 40px;\">\r\n<h3 style=\"text-align: center;\">SEND US A MESSAGE</h3>\r\n<hr />[contact-form-7 id=\"1113\" title=\"contactform2\"]</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2968.7780226216487!2d-87.80850898455759!3d41.919130379218956!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880fcb18051e4ea5%3A0x2459bd8f076a9a3d!2s2130%20N%20Harlem%20Ave%2C%20Elmwood%20Park%2C%20IL%2060707%2C%20USA!5e0!3m2!1sen!2spl!4v1579367529752!5m2!1sen!2spl\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>','Contact Us','','publish','closed','closed','','contact-us','','','2021-02-03 19:13:36','2021-02-03 19:13:36','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=44',110,'page','',0),(46,1,'2012-11-28 22:12:17','2012-11-28 22:12:17','','Log In','','publish','closed','closed','','log-in','','','2021-02-03 19:14:04','2021-02-03 19:14:04','',0,'http://localhost/dk_2012/public_html/chicagoremod/?page_id=46',120,'page','',0),(50,1,'2012-11-28 23:03:19','2012-11-28 23:03:19',' ','','','publish','open','closed','','50','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'http://www.chicagoremod.derekkramer.com/?p=50',15,'nav_menu_item','',0),(52,1,'2012-11-28 23:03:19','2012-11-28 23:03:19',' ','','','publish','open','closed','','52','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'http://www.chicagoremod.derekkramer.com/?p=52',4,'nav_menu_item','',0),(53,1,'2012-11-28 23:03:19','2012-11-28 23:03:19','','About','','publish','open','closed','','53','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'http://www.chicagoremod.derekkramer.com/?p=53',2,'nav_menu_item','',0),(113,1,'2013-01-31 05:47:17','2013-01-31 05:47:17','','','','inherit','open','open','','lsdkitchen1','','','2017-11-13 16:05:05','2017-11-13 16:05:05','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen1.jpg',0,'attachment','image/jpeg',0),(114,1,'2013-01-31 05:47:18','2013-01-31 05:47:18','','','','inherit','open','open','','lsdkitchen2','','','2017-11-13 16:04:39','2017-11-13 16:04:39','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen2.jpg',0,'attachment','image/jpeg',0),(115,1,'2013-01-31 05:47:19','2013-01-31 05:47:19','','','','inherit','open','open','','lsdkitchen3','','','2017-11-13 16:04:27','2017-11-13 16:04:27','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen3.jpg',0,'attachment','image/jpeg',0),(116,1,'2013-01-31 05:47:20','2013-01-31 05:47:20','','','','inherit','open','open','','lsdkitchen4','','','2017-11-13 16:04:09','2017-11-13 16:04:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen4.jpg',0,'attachment','image/jpeg',0),(117,1,'2013-01-31 05:47:21','2013-01-31 05:47:21','','','','inherit','open','open','','lsdkitchen5','','','2017-11-13 16:02:09','2017-11-13 16:02:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen5.jpg',0,'attachment','image/jpeg',0),(1260,0,'2017-08-10 22:13:01','2017-08-10 22:13:01','799','Contact Us','','publish','closed','closed','','contact-us-39','','','2017-08-10 22:13:01','2017-08-10 22:13:01','',0,'https://chicagolandremodeling.com/contact-us-39/',0,'wr_cfsb_post_type','',0),(1132,1,'2017-04-13 17:06:31','2017-04-13 17:06:31','','Exterior','','publish','closed','closed','','exterior-remodeling','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/exterior-remodeling/',10,'nav_menu_item','',0),(68,1,'2012-11-28 23:10:24','2012-11-28 23:10:24','','Content Area Two','','publish','open','open','','content-area-two','','','2012-11-28 23:10:24','2012-11-28 23:10:24','',0,'http://www.chicagoremod.derekkramer.com/secondary_html/content-area-two/',0,'secondary_html','',0),(71,1,'2012-11-29 14:25:41','2012-11-29 14:25:41','','','','inherit','open','open','','homepage_slide01','','','2017-11-13 16:12:01','2017-11-13 16:12:01','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/homePage_slide01.jpg',0,'attachment','image/jpeg',0),(72,1,'2012-11-29 14:25:56','2012-11-29 14:25:56','','','','inherit','open','open','','homepage_slide02','','','2017-11-13 16:11:37','2017-11-13 16:11:37','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/homePage_slide02.jpg',0,'attachment','image/jpeg',0),(73,1,'2012-11-29 14:26:09','2012-11-29 14:26:09','','','','inherit','open','open','','homepage_slide03','','','2017-11-13 16:11:20','2017-11-13 16:11:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/homePage_slide03.jpg',0,'attachment','image/jpeg',0),(76,1,'2012-11-29 15:09:38','2012-11-29 15:09:38','','home-slider','','publish','closed','closed','','home-slider','','','2012-11-29 15:09:38','2012-11-29 15:09:38','',0,'http://www.chicagoremod.derekkramer.com/?post_type=cycloneslider&#038;p=76',0,'cycloneslider','',0),(96,1,'2013-01-31 05:46:58','2013-01-31 05:46:58','','','','inherit','open','open','','fairoakskitchen1','','','2017-11-13 16:10:29','2017-11-13 16:10:29','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg',0,'attachment','image/jpeg',0),(97,1,'2013-01-31 05:46:59','2013-01-31 05:46:59','','','','inherit','open','open','','fairoakskitchen2','','','2017-11-13 16:10:16','2017-11-13 16:10:16','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg',0,'attachment','image/jpeg',0),(82,1,'2012-11-29 16:20:59','2012-11-29 16:20:59','','','','inherit','open','open','','homepage_slide05','','','2017-11-13 16:10:57','2017-11-13 16:10:57','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/homePage_slide05.jpg',0,'attachment','image/jpeg',0),(84,1,'2012-11-29 16:21:21','2012-11-29 16:21:21','','','','inherit','open','open','','homepage_slide04','','','2017-11-13 16:10:48','2017-11-13 16:10:48','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/homePage_slide04.jpg',0,'attachment','image/jpeg',0),(816,1,'2017-01-06 08:41:59','2017-01-06 08:41:59','','','','publish','closed','closed','','816','','','2019-06-26 11:29:03','2019-06-26 11:29:03','',0,'https://chicagolandremodeling.com/?post_type=slide&#038;p=816',0,'slide','',0),(815,1,'2017-01-06 08:41:34','2017-01-06 08:41:34','','','','inherit','open','open','','slider2','','','2017-11-13 13:16:39','2017-11-13 13:16:39','',813,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2.jpg',0,'attachment','image/jpeg',0),(118,1,'2013-01-31 05:47:22','2013-01-31 05:47:22','','','','inherit','open','open','','lsdkitchen6','','','2017-11-13 16:01:46','2017-11-13 16:01:46','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen6.jpg',0,'attachment','image/jpeg',0),(119,1,'2013-01-31 05:47:23','2013-01-31 05:47:23','','','','inherit','open','open','','lsdkitchen7','','','2017-11-13 16:00:42','2017-11-13 16:00:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen7.jpg',0,'attachment','image/jpeg',0),(120,1,'2013-01-31 05:47:24','2013-01-31 05:47:24','','','','inherit','open','open','','lsdkitchen8','','','2017-11-13 16:00:19','2017-11-13 16:00:19','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen8.jpg',0,'attachment','image/jpeg',0),(121,1,'2013-01-31 05:47:25','2013-01-31 05:47:25','','','','inherit','open','open','','lsdkitchen9','','','2017-11-13 16:00:08','2017-11-13 16:00:08','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen9.jpg',0,'attachment','image/jpeg',0),(122,1,'2013-01-31 05:47:26','2013-01-31 05:47:26','','','','inherit','open','open','','lsdkitchen10','','','2017-11-13 15:59:51','2017-11-13 15:59:51','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen10.jpg',0,'attachment','image/jpeg',0),(123,1,'2013-01-31 05:47:27','2013-01-31 05:47:27','','','','inherit','open','open','','lsdkitchen11','','','2017-11-13 15:59:35','2017-11-13 15:59:35','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen11.jpg',0,'attachment','image/jpeg',0),(124,1,'2013-01-31 05:47:28','2013-01-31 05:47:28','','','','inherit','open','open','','lsdkitchen12','','','2017-11-13 15:59:24','2017-11-13 15:59:24','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/LSDkitchen12.jpg',0,'attachment','image/jpeg',0),(125,1,'2013-01-31 05:47:30','2013-01-31 05:47:30','','','','inherit','open','open','','matteson','','','2017-11-13 15:59:13','2017-11-13 15:59:13','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/matteson.png',0,'attachment','image/png',0),(126,1,'2013-01-31 05:47:31','2013-01-31 05:47:31','','','','inherit','open','open','','mattesonbath1','','','2017-11-13 15:58:51','2017-11-13 15:58:51','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath1.jpg',0,'attachment','image/jpeg',0),(127,1,'2013-01-31 05:47:32','2013-01-31 05:47:32','','','','inherit','open','open','','mattesonbath2','','','2017-11-13 15:58:07','2017-11-13 15:58:07','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath2.jpg',0,'attachment','image/jpeg',0),(128,1,'2013-01-31 05:47:32','2013-01-31 05:47:32','','','','inherit','open','open','','mattesonbath3','','','2017-11-13 15:57:56','2017-11-13 15:57:56','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath3.jpg',0,'attachment','image/jpeg',0),(129,1,'2013-01-31 05:47:33','2013-01-31 05:47:33','','','','inherit','open','open','','mattesonbath4','','','2017-11-13 15:57:27','2017-11-13 15:57:27','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath4.jpg',0,'attachment','image/jpeg',0),(130,1,'2013-01-31 05:47:34','2013-01-31 05:47:34','','','','inherit','open','open','','mattesonbath5','','','2017-11-13 15:56:14','2017-11-13 15:56:14','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath5.jpg',0,'attachment','image/jpeg',0),(131,1,'2013-01-31 05:47:35','2013-01-31 05:47:35','','','','inherit','open','open','','mattesonbath6','','','2017-11-13 15:55:53','2017-11-13 15:55:53','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath6.jpg',0,'attachment','image/jpeg',0),(132,1,'2013-01-31 05:47:36','2013-01-31 05:47:36','','','','inherit','open','open','','mattesonbath7','','','2017-11-13 15:54:51','2017-11-13 15:54:51','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath7.jpg',0,'attachment','image/jpeg',0),(133,1,'2013-01-31 05:47:37','2013-01-31 05:47:37','','','','inherit','open','open','','mattesonbath8','','','2017-11-13 15:54:21','2017-11-13 15:54:21','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath8.jpg',0,'attachment','image/jpeg',0),(442,1,'2013-02-06 03:48:31','2013-02-06 03:48:31','','','','inherit','open','open','','mattesonbath9','','','2017-11-13 14:02:07','2017-11-13 14:02:07','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonBath9.jpg',0,'attachment','image/jpeg',0),(135,1,'2013-01-31 05:47:38','2013-01-31 05:47:38','','','','inherit','open','open','','mattesonbath10','','','2017-11-13 15:53:58','2017-11-13 15:53:58','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath10.jpg',0,'attachment','image/jpeg',0),(136,1,'2013-01-31 05:47:39','2013-01-31 05:47:39','','','','inherit','open','open','','mattesonbath11','','','2017-11-13 15:53:40','2017-11-13 15:53:40','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonBath11.jpg',0,'attachment','image/jpeg',0),(137,1,'2013-01-31 05:47:41','2013-01-31 05:47:41','','','','inherit','open','open','','mattesondining','','','2017-11-13 15:53:20','2017-11-13 15:53:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonDining.png',0,'attachment','image/png',0),(138,1,'2013-01-31 05:47:44','2013-01-31 05:47:44','','','','inherit','open','open','','mattesonkitchen','','','2017-11-13 15:53:09','2017-11-13 15:53:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen.png',0,'attachment','image/png',0),(139,1,'2013-01-31 05:47:45','2013-01-31 05:47:45','','','','inherit','open','open','','mattesonkitchen1','','','2017-11-13 15:52:57','2017-11-13 15:52:57','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen1.jpg',0,'attachment','image/jpeg',0),(140,1,'2013-01-31 05:47:46','2013-01-31 05:47:46','','','','inherit','open','open','','mattesonkitchen2','','','2017-11-13 15:52:32','2017-11-13 15:52:32','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen2.jpg',0,'attachment','image/jpeg',0),(141,1,'2013-01-31 05:47:47','2013-01-31 05:47:47','','','','inherit','open','open','','mattesonkitchen3','','','2017-11-13 15:51:56','2017-11-13 15:51:56','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen3.jpg',0,'attachment','image/jpeg',0),(142,1,'2013-01-31 05:47:48','2013-01-31 05:47:48','','','','inherit','open','open','','mattesonkitchen4','','','2017-11-13 15:51:42','2017-11-13 15:51:42','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen4.jpg',0,'attachment','image/jpeg',0),(143,1,'2013-01-31 05:47:49','2013-01-31 05:47:49','','','','inherit','open','open','','mattesonkitchen5','','','2017-11-13 15:51:25','2017-11-13 15:51:25','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen5.jpg',0,'attachment','image/jpeg',0),(144,1,'2013-01-31 05:47:50','2013-01-31 05:47:50','','','','inherit','open','open','','mattesonkitchen6','','','2017-11-13 15:50:54','2017-11-13 15:50:54','',333,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mattesonKitchen6.jpg',0,'attachment','image/jpeg',0),(409,1,'2013-02-06 02:22:44','2013-02-06 02:22:44','','','','inherit','open','open','','mendotahallbath','','','2017-11-13 14:06:20','2017-11-13 14:06:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mendotaHallbath.png',0,'attachment','image/png',0),(146,1,'2013-01-31 05:47:53','2013-01-31 05:47:53','','','','inherit','open','open','','mendotahallbath1','','','2017-11-13 15:50:48','2017-11-13 15:50:48','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath1.jpg',0,'attachment','image/jpeg',0),(147,1,'2013-01-31 05:47:54','2013-01-31 05:47:54','','','','inherit','open','open','','mendotahallbath2','','','2017-11-13 15:50:36','2017-11-13 15:50:36','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath2.jpg',0,'attachment','image/jpeg',0),(148,1,'2013-01-31 05:47:55','2013-01-31 05:47:55','','','','inherit','open','open','','mendotahallbath3','','','2017-11-13 15:50:11','2017-11-13 15:50:11','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath3.jpg',0,'attachment','image/jpeg',0),(149,1,'2013-01-31 05:47:56','2013-01-31 05:47:56','','','','inherit','open','open','','mendotahallbath4','','','2017-11-13 15:49:46','2017-11-13 15:49:46','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath4.jpg',0,'attachment','image/jpeg',0),(150,1,'2013-01-31 05:47:57','2013-01-31 05:47:57','','','','inherit','open','open','','mendotahallbath5','','','2017-11-13 15:49:30','2017-11-13 15:49:30','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath5.jpg',0,'attachment','image/jpeg',0),(151,1,'2013-01-31 05:47:58','2013-01-31 05:47:58','','','','inherit','open','open','','mendotahallbath6','','','2017-11-13 15:49:13','2017-11-13 15:49:13','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath6.jpg',0,'attachment','image/jpeg',0),(152,1,'2013-01-31 05:47:59','2013-01-31 05:47:59','','','','inherit','open','open','','mendotahallbath7','','','2017-11-13 15:48:49','2017-11-13 15:48:49','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath7.jpg',0,'attachment','image/jpeg',0),(153,1,'2013-01-31 05:47:59','2013-01-31 05:47:59','','','','inherit','open','open','','mendotahallbath8','','','2017-11-13 15:48:31','2017-11-13 15:48:31','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath8.jpg',0,'attachment','image/jpeg',0),(154,1,'2013-01-31 05:48:00','2013-01-31 05:48:00','','','','inherit','open','open','','mendotahallbath9','','','2017-11-13 15:48:13','2017-11-13 15:48:13','',403,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaHallbath9.jpg',0,'attachment','image/jpeg',0),(155,1,'2013-01-31 05:48:03','2013-01-31 05:48:03','','','','inherit','open','open','','mendotamasterbath','','','2017-11-13 15:47:42','2017-11-13 15:47:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath.png',0,'attachment','image/png',0),(156,1,'2013-01-31 05:48:04','2013-01-31 05:48:04','','','','inherit','open','open','','mendotamasterbath1','','','2017-11-13 15:47:26','2017-11-13 15:47:26','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath1.jpg',0,'attachment','image/jpeg',0),(157,1,'2013-01-31 05:48:05','2013-01-31 05:48:05','','','','inherit','open','open','','mendotamasterbath2','','','2017-11-13 15:46:35','2017-11-13 15:46:35','',412,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath2.jpg',0,'attachment','image/jpeg',0),(158,1,'2013-01-31 05:48:06','2013-01-31 05:48:06','','','','inherit','open','open','','mendotamasterbath3','','','2017-11-13 15:45:23','2017-11-13 15:45:23','',412,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath3.jpg',0,'attachment','image/jpeg',0),(159,1,'2013-01-31 05:48:07','2013-01-31 05:48:07','','','','inherit','open','open','','mendotamasterbath4','','','2017-11-13 15:35:31','2017-11-13 15:35:31','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath4.jpg',0,'attachment','image/jpeg',0),(160,1,'2013-01-31 05:48:08','2013-01-31 05:48:08','','','','inherit','open','open','','mendotamasterbath5','','','2017-11-13 15:34:59','2017-11-13 15:34:59','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath5.jpg',0,'attachment','image/jpeg',0),(161,1,'2013-01-31 05:48:09','2013-01-31 05:48:09','','','','inherit','open','open','','mendotamasterbath6','','','2017-11-13 15:34:51','2017-11-13 15:34:51','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath6.jpg',0,'attachment','image/jpeg',0),(162,1,'2013-01-31 05:48:10','2013-01-31 05:48:10','','','','inherit','open','open','','mendotamasterbath7','','','2017-11-13 15:33:43','2017-11-13 15:33:43','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath7.jpg',0,'attachment','image/jpeg',0),(163,1,'2013-01-31 05:48:11','2013-01-31 05:48:11','','','','inherit','open','open','','mendotamasterbath8','','','2017-11-13 15:33:25','2017-11-13 15:33:25','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath8.jpg',0,'attachment','image/jpeg',0),(164,1,'2013-01-31 05:48:12','2013-01-31 05:48:12','','','','inherit','open','open','','mendotamasterbath9','','','2017-11-13 15:33:11','2017-11-13 15:33:11','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaMasterbath9.jpg',0,'attachment','image/jpeg',0),(318,1,'2013-02-05 04:23:55','2013-02-05 04:23:55','','','','inherit','open','open','','mendotapowderroom','','','2017-11-13 14:18:19','2017-11-13 14:18:19','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mendotaPowderroom.png',0,'attachment','image/png',0),(166,1,'2013-01-31 05:48:15','2013-01-31 05:48:15','','','','inherit','open','open','','mendotapowderroom1','','','2017-11-13 15:29:43','2017-11-13 15:29:43','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaPowderroom1.jpg',0,'attachment','image/jpeg',0),(167,1,'2013-01-31 05:48:16','2013-01-31 05:48:16','','','','inherit','open','open','','mendotapowderroom2','','','2017-11-13 15:32:11','2017-11-13 15:32:11','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaPowderroom2.jpg',0,'attachment','image/jpeg',0),(168,1,'2013-01-31 05:48:17','2013-01-31 05:48:17','','','','inherit','open','open','','mendotapowderroom3','','','2017-11-13 15:02:50','2017-11-13 15:02:50','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/mendotaPowderroom3.jpg',0,'attachment','image/jpeg',0),(169,1,'2013-01-31 05:48:18','2013-01-31 05:48:18','','','','inherit','open','open','','seminarybath1','','','2017-11-13 15:02:10','2017-11-13 15:02:10','',447,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath1.jpg',0,'attachment','image/jpeg',0),(170,1,'2013-01-31 05:48:19','2013-01-31 05:48:19','','','','inherit','open','open','','seminarybath2','','','2017-11-13 14:51:02','2017-11-13 14:51:02','',447,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath2.jpg',0,'attachment','image/jpeg',0),(171,1,'2013-01-31 05:48:20','2013-01-31 05:48:20','','','','inherit','open','open','','seminarybath3','','','2017-11-13 14:43:42','2017-11-13 14:43:42','',447,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath3.jpg',0,'attachment','image/jpeg',0),(172,1,'2013-01-31 05:48:21','2013-01-31 05:48:21','','','','inherit','open','open','','seminarybath4','','','2017-11-13 14:43:27','2017-11-13 14:43:27','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath4.jpg',0,'attachment','image/jpeg',0),(173,1,'2013-01-31 05:48:22','2013-01-31 05:48:22','','','','inherit','open','open','','seminarybath5','','','2017-11-13 14:42:07','2017-11-13 14:42:07','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath5.jpg',0,'attachment','image/jpeg',0),(174,1,'2013-01-31 05:48:23','2013-01-31 05:48:23','','','','inherit','open','open','','seminarybath6','','','2017-11-13 14:41:47','2017-11-13 14:41:47','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath6.jpg',0,'attachment','image/jpeg',0),(175,1,'2013-01-31 05:48:24','2013-01-31 05:48:24','','','','inherit','open','open','','seminarybath7','','','2017-11-13 14:41:35','2017-11-13 14:41:35','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath7.jpg',0,'attachment','image/jpeg',0),(176,1,'2013-01-31 05:48:25','2013-01-31 05:48:25','','','','inherit','open','open','','seminarybath8','','','2017-11-13 14:41:21','2017-11-13 14:41:21','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath8.jpg',0,'attachment','image/jpeg',0),(177,1,'2013-01-31 05:48:26','2013-01-31 05:48:26','','','','inherit','open','open','','seminarybath9','','','2017-11-13 14:41:00','2017-11-13 14:41:00','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath9.jpg',0,'attachment','image/jpeg',0),(178,1,'2013-01-31 05:48:27','2013-01-31 05:48:27','','','','inherit','open','open','','seminarybath10','','','2017-11-13 14:35:42','2017-11-13 14:35:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath10.jpg',0,'attachment','image/jpeg',0),(179,1,'2013-01-31 05:48:28','2013-01-31 05:48:28','','','','inherit','open','open','','seminarybath11','','','2017-11-13 14:35:15','2017-11-13 14:35:15','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath11.jpg',0,'attachment','image/jpeg',0),(180,1,'2013-01-31 05:48:29','2013-01-31 05:48:29','','','','inherit','open','open','','seminarybath12','','','2017-11-13 14:34:38','2017-11-13 14:34:38','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath12.jpg',0,'attachment','image/jpeg',0),(181,1,'2013-01-31 05:48:30','2013-01-31 05:48:30','','','','inherit','open','open','','seminarybath13','','','2017-11-13 14:31:57','2017-11-13 14:31:57','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath13.jpg',0,'attachment','image/jpeg',0),(182,1,'2013-01-31 05:48:30','2013-01-31 05:48:30','','','','inherit','open','open','','seminarybath14','','','2017-11-13 14:27:27','2017-11-13 14:27:27','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath14.jpg',0,'attachment','image/jpeg',0),(183,1,'2013-01-31 05:48:31','2013-01-31 05:48:31','','','','inherit','open','open','','seminarybath15','','','2017-11-13 14:26:15','2017-11-13 14:26:15','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/seminaryBath15.jpg',0,'attachment','image/jpeg',0),(449,1,'2013-02-06 04:03:21','2013-02-06 04:03:21','','','','inherit','open','open','','seminarybathroom','','','2017-11-13 14:01:31','2017-11-13 14:01:31','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/seminaryBathroom1.png',0,'attachment','image/png',0),(186,1,'2013-01-31 13:27:42','2013-01-31 13:27:42','<p>The scope of commercial roofing projects can vary greatly. Please contact us regarding this specialized service.</p>','Commercial Roof','','publish','open','open','','roofing-1','','','2013-03-23 23:56:43','2013-03-23 23:56:43','',0,'http://www.chicagoremod.derekkramer.com/?p=186',0,'post','',0),(188,1,'2013-01-31 13:28:31','2013-01-31 13:28:31','','Content Area Two Posts','','publish','open','open','','content-area-two-posts','','','2013-01-31 13:28:31','2013-01-31 13:28:31','',0,'http://www.chicagoremod.derekkramer.com/secondary_html/content-area-two-posts/',0,'secondary_html','',0),(191,1,'2013-01-31 13:30:39','2013-01-31 13:30:39','','','','inherit','open','open','','blog_roofing_header','','','2017-11-13 14:25:48','2017-11-13 14:25:48','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/blog_roofing_header.png',0,'attachment','image/png',0),(199,1,'2013-01-31 13:44:50','2013-01-31 13:44:50','<p>Replacing worn wood shingles with new wood shingles keeps a home true to its original design.</p>','Wood Shingles Roofing','','publish','open','open','','roofing-2','','','2013-03-23 23:54:58','2013-03-23 23:54:58','',0,'http://www.chicagoremod.derekkramer.com/?p=199',0,'post','',0),(231,1,'2013-01-31 21:00:29','2013-01-31 21:00:29','<p>Whether you are planning to do a complete roof replacement or repair, selecting your roof shingles is an important and necessary step in the process. In addition to helping you choose the right look, Chicagoland Remodeling can help ensure that you are in keeping with local building and fire codes as well.</p>\r\n<h4>Determine Which Roofing Materials Work Best For Your Home</h4>\r\n<p>There are a number of quality shingles available on the market today. Browse the shingle selection below - your Chicagoland Remodeling expert will work with you to determine which choice is best for your home.</p>\r\n<p>GAF\'s quality roofing products are regularly recognized by leading industry experts. More than 1 out of every 3 residential property owners chooses GAF for their roofing project.</p>\r\n<p>The Heritage<sup>®</sup> Series is TAMKO<sup>®</sup>\'s premier line of laminated asphalt shingles. Striking color palettes and superior performance under the elements have established the brand as a preferred choice among both contractors and homeowners.</p>\r\n<p>Striking Looks…Lasting Beauty. Certain Teed Roofing offers a wide range of colors and style choices at affordable prices.</p>\r\n<p>DaVinci Slate is a synthetic slate carefully engineered to provide the authentic look and durability of natural slate ... at a fraction of the cost and weight.</p>','Shingles','','publish','closed','closed','','shingles','','','2016-12-19 20:11:39','2016-12-19 20:11:39','',0,'http://www.chicagoremod.derekkramer.com/?p=231',0,'post','',0),(233,1,'2013-01-31 21:00:52','2013-01-31 21:00:52','<h3>Attic Ventilation</h3>\r\n<p>Most people are unaware that attic ventilation can impact the longevity of their entire home. Proper attic ventilation is crucial for a long-lasting roofing system and Chicagoland Remodeling can help ensure your home investment is properly protected.</p>\r\n<p>What damage can occur with improper ventilation?</p>\r\n<ul>\r\n<li><strong><em>In the summer:</em></strong> an improperly ventilated attic can cause heat to build in excess of 150Â°F. This superheated air eventually penetrates the ceiling insulation into the living area below. <i></i>\r\n<ul>\r\n<li><strong><i>Resulting damage</i>:</strong> Premature aging of your roofing system (âfriedâ shingles), warping, cracking, or breaking down of wood framing, damage to siding, exterior or interior paint, and wallpaper also and higher cooling costs</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n<li><em></em><strong><em>In the winter</em>:</strong> various household appliances, bathtubs, showers, and cooking vapors can contribute to excess moisture build-up. Improperly ventilated attics will allow this moisture to collect and cling to the underside of the roof. This will condense and fall, soaking the attic insulation and reducing its efficiency.<em></em>\r\n<ul>\r\n<li><strong><i>Resulting damage: </i></strong>Structural damage including roof deck warping and rotting of the wood frame, mildew growth and buckling of shingles and felt.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>Ice Damming</h3>\r\n<p>Finally, attics should be properly ventilated to help prevent ice dams in cold winter climates. During the winter, ice and snow on a roof will melt and run down the deck to the cooler eaves. This run-off can re-freeze, creating an ice dam that will trap moisture on the roof. The moisture can eventually back up under the shingles and enter your home â causing damage to your ceilings and walls. Adequate attic ventilation will reduce the amount of initial melting that occurs on your roof, thereby reducing the chance that ice dams will form.</p>\r\n<h3>Attic Ventilation Installation<strong></strong></h3>\r\n<p>We can install proper attic ventilation system that will allow for a continuous flow of outside air through the attic (see illustration) and will protect the efficiency of the insulation and help to balance temperatures in the living spaces.</p>\r\n<p>There are a variety of ventilation options available including ridge vents, power vents, louvers, turbines, mushroom vents and many more. A Chicagoland Remodeling professional can help choose the right one for your home.</p>','Additional Roofing Services','','publish','open','open','','additional-roofing','','','2013-06-24 17:35:25','2013-06-24 17:35:25','',0,'http://www.chicagoremod.derekkramer.com/?p=233',0,'post','',0),(234,1,'2013-01-31 21:01:06','2013-01-31 21:01:06','<p>A leaking or structurally unsound chimney can be a headache for homeowners. Before you install or repair your roof, Chicagoland Remodeling will offer to inspect your chimney as well. Even if you are not doing roof work, it is a good idea to inspect your chimney at the beginning of each heating season. Shine a flashlight up inside and look for obstructions such as leaves or birds\' nests and soot buildup as these obstructions can lead to home fires.</p>\r\n<p>A periodic roof check is also recommended. Loose bricks and missing or loose flashing can cause leaks which lead to other structural problems. This illustration shows a functional chimney with proper flashing. Not eager to climb up on your roof? Chicagoland Remodeling is happy to perform a free, no-obligation chimney check. Simply call us at (708) 583-9904Â or email us at <a href=\"mailto:info@chicagolandremodeling.net\">info@chicagolandremodeling.net</a> and we will be happy to schedule one at your convenience.</p>','Chimney','','publish','open','open','','chimney','','','2013-06-24 17:29:05','2013-06-24 17:29:05','',0,'http://www.chicagoremod.derekkramer.com/?p=234',0,'post','',0),(239,1,'2013-02-01 13:15:56','2013-02-01 13:15:56','<p>Nothing says family gathering like a meal in a warm and inviting dining room. Chicagoland Remodeling can help turn your outdated or underused dining room into a remodeled family space that will be appreciated time and time again.</p>\r\n<p>Older homes often have smaller or closed off dining rooms that do not flow well with todayâs open concept styles. Or your dining room may simply not reflect your current taste or design preference. Chicagoland remodeling can do many things to update your dining room including widening the doorways or opening and connecting the dining room with the living room and kitchen. Adding crown molding or hardwood flooring are other affordable ways we can help refresh and renew your dining room.</p>','Dining Rooms','','publish','open','open','','dinning-rooms','','','2013-06-24 17:46:04','2013-06-24 17:46:04','',0,'http://www.chicagoremod.derekkramer.com/?p=239',0,'post','',0),(241,1,'2013-02-01 13:16:33','2013-02-01 13:16:33','<p>Looking for an easy and affordable to give your rooms a whole new look? Color changes everything and is one of the most visible ways to refresh your home. Chicagoland Remodeling specializes in painting and can help ensure your paint job is professional, accurate and detailed.</p>\r\n<p>To lower the inconvenience of having painting contractors in your home, Chicagoland Remodeling has developed a painting process to minimize disruption. We cover all furniture, use drop cloths at all times and can provide you with several different paint options to best suit your needs. If you would like to provide your own paint that is also acceptable. Working together we can determine work hours, timing and any special requests</p>','Painting','','publish','open','open','','remodeling-painting','','','2013-06-24 17:52:15','2013-06-24 17:52:15','',0,'http://www.chicagoremod.derekkramer.com/?p=241',0,'post','',0),(243,1,'2013-02-01 13:16:53','2013-02-01 13:16:53','<p>Family rooms have many functions and are often the main entertainment room of your home. Remodeling your family room is not only wise for the overall flow and enjoyment of your home, but can add value as well. If you are remodeling an existing family room, Chicagoland Remodeling can help you keep your present and future family needs in mind.</p>\r\n<p>Looking to create a family room from unused space? Chicagoland Remodeling can help you design and build a functional and flexible area for children, teens, adults or the whole family.</p>','Family Rooms','','publish','open','open','','family-rooms','','','2013-06-24 17:46:51','2013-06-24 17:46:51','',0,'http://www.chicagoremod.derekkramer.com/?p=243',0,'post','',0),(246,1,'2013-02-01 13:23:34','2013-02-01 13:23:34','<p>While a powder room is usually simple, with just a toilet and sink, it\'s typically the lavatory used by guests and visitors. Just because it\'s a small room doesn\'t mean that it canât be stylish and well designed. There are a number of ways to make your powder room functional and fashionable. Let Chicagoland Remodeling work with you to create a powder room that pops with interest.</p>','Powder Room','','publish','open','open','','powder-room','','','2013-03-15 00:25:35','2013-03-15 00:25:35','',0,'http://www.chicagoremod.derekkramer.com/?p=246',0,'post','',0),(250,1,'2013-02-01 13:24:47','2013-02-01 13:24:47','<p>Your bedroom is more than a place to sleep. It is a retreat from the world, a place to rejuvenate or a family-friendly, cozy room. Create a bedroom that is uniquely you. Chicagoland Remodeling can enlarge and renovate your bedroom or simply refresh your existing space. Looking for a closet that meets your needs? Chicagoland Remodeling can also build the closet of your dreams with your remodeling job.</p>','Bedrooms','','publish','closed','closed','','bedrooms','','','2021-02-04 11:49:20','2021-02-04 11:49:20','',0,'http://www.chicagoremod.derekkramer.com/?p=250',0,'post','',0),(252,1,'2013-02-01 13:28:05','2013-02-01 13:28:05','<p>Two of the most overlooked but important parts of the roof are the soffit and fascia.</p>\r\n<p>The soffit is the uncovered surface beneath the overhang of the roof. The small holes in the soffit assist in attic ventilation and draw heat and moisture away from the house.</p>\r\n<p>Because durability is important, most soffits are made from vinyl, which can withstand the elements for a number of years.</p>\r\n<p>The edge along your roof line is called the fascia. It acts as a layer between the edge of the roof and the outdoors and helps protect against water damage from rain and snow. Fascia also adds a design element to your roof and can be simple and modern or ornate and period.</p>\r\n<p>Whenever you redo your roof or siding, you should inspect your soffit and fascia. Chicagoland Remodeling can help you determine if your soffit or fascia has signs of rot or other damage. Chicagoland Remodeling will help you ensure they are in good condition and can replace them if necessary.</p>','Soffit + Fascia','','publish','open','open','','soffit-fascia','','','2013-03-14 22:36:01','2013-03-14 22:36:01','',0,'http://www.chicagoremod.derekkramer.com/?p=252',0,'post','',0),(254,1,'2013-02-01 13:28:31','2013-02-01 13:28:31','<p>If left unattended, missing or damaged gutters and downspouts can cause thousands of dollars in foundation damage. Replace or repair gutters and downspouts before they cost you money! When any of these problems occur, it may be time to replace your gutters:</p>\r\n<ul>\r\n<li>Debris accumulation from clogged gutters</li>\r\n<li>Seam splitting</li>\r\n<li>Ice damming</li>\r\n<li>Foundation cracks and settlement</li>\r\n<li>Soil erosion</li>\r\n<li>Dry-rot on fascia boards, soffit, and roof</li>\r\n<li>Paint damage</li>\r\n<li>Window, door and siding damage</li>\r\n<li>Mold and pest infestations</li>\r\n</ul>\r\n<p>Chicagoland Remodeling will inspect and replace your gutters and downspouts as part of your roofing and siding project or as a stand-alone job.</p>','Gutters + Downspouts','','publish','open','open','','gutters-downspouts','','','2013-06-24 17:31:43','2013-06-24 17:31:43','',0,'http://www.chicagoremod.derekkramer.com/?p=254',0,'post','',0),(260,1,'2013-02-01 13:35:50','2013-02-01 13:35:50','<p>Patios are often overlooked and underutilized outdoor spaces.  Patio renovation or remodeling is a great way to create a personalized outdoor living space for entertaining or family time.  Chicagoland Remodeling can help design an outdoor patio space that is uniquely yours and will help you answer questions such as:. </p>\r\n<ul>\r\n<li>Does your patio have shaded space? </li>\r\n<li>Is it functional with adequate drainage? </li>\r\n<li>Can it accommodate all the people you want to invite? </li>\r\n<li>Does it reflect your style? </li>\r\n<li>Would a built-in barbeque area make it more useful and attractive? </li>\r\n</ul>\r\n<p>Let Chicagoland Remodeling give you a free estimate on creating the patio area that\'s right for you. </p>','Patios','','publish','closed','closed','','patios','','','2016-12-19 19:47:06','2016-12-19 19:47:06','',0,'http://www.chicagoremod.derekkramer.com/?p=260',0,'post','',0),(264,1,'2013-02-01 13:36:44','2013-02-01 13:36:44','<p>Indoors or outdoors, rotting and broken stairs are not only unsightly but can be a safety and insurance nightmare. Protect your family and your investment by replacing and repairing your stairs. Chicagoland Remodeling will inspect your stairs and determine if you need to repair one or two stairs or replace the entire staircase.</p>','Stairs','','publish','open','open','','stairs','','','2013-06-24 17:53:44','2013-06-24 17:53:44','',0,'http://www.chicagoremod.derekkramer.com/?p=264',0,'post','',0),(268,1,'2013-02-05 02:44:28','2013-02-05 02:44:28','','','','inherit','open','open','','hardiesiding-2','','','2017-11-13 14:25:12','2017-11-13 14:25:12','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/hardieSiding.png',0,'attachment','image/png',0),(269,1,'2013-02-05 02:44:30','2013-02-05 02:44:30','','','','inherit','open','open','','lsdkitchen-2','','','2017-11-13 14:24:53','2017-11-13 14:24:53','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/LSDkitchen.png',0,'attachment','image/png',0),(270,1,'2013-02-05 02:44:33','2013-02-05 02:44:33','','','','inherit','open','open','','matteson-2','','','2017-11-13 14:24:42','2017-11-13 14:24:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/matteson.png',0,'attachment','image/png',0),(271,1,'2013-02-05 02:44:35','2013-02-05 02:44:35','','','','inherit','open','open','','mattesondining-2','','','2017-11-13 14:24:16','2017-11-13 14:24:16','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonDining.png',0,'attachment','image/png',0),(272,1,'2013-02-05 02:44:38','2013-02-05 02:44:38','','','','inherit','open','open','','mattesonkitchen-2','','','2017-11-13 14:24:07','2017-11-13 14:24:07','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonKitchen.png',0,'attachment','image/png',0),(415,1,'2013-02-06 02:30:34','2013-02-06 02:30:34','','','','inherit','open','open','','mendotamasterbath-2','','','2017-11-13 14:06:00','2017-11-13 14:06:00','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mendotaMasterbath.png',0,'attachment','image/png',0),(274,1,'2013-02-05 02:44:43','2013-02-05 02:44:43','','','','inherit','open','open','','printersrowbath','','','2017-11-13 14:23:54','2017-11-13 14:23:54','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersRowBath.png',0,'attachment','image/png',0),(275,1,'2013-02-05 02:44:45','2013-02-05 02:44:45','','','','inherit','open','open','','printersrowkitchen','','','2017-11-13 14:23:44','2017-11-13 14:23:44','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersRowKitchen.png',0,'attachment','image/png',0),(276,1,'2013-02-05 02:44:48','2013-02-05 02:44:48','','','','inherit','open','open','','roofing-5','','','2017-11-13 14:23:09','2017-11-13 14:23:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing.png',0,'attachment','image/png',0),(473,1,'2013-02-06 17:30:38','2013-02-06 17:30:38','','','','inherit','open','open','','roofing1','','','2017-11-13 13:59:46','2017-11-13 13:59:46','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing1.png',0,'attachment','image/png',0),(280,1,'2013-02-05 02:59:21','2013-02-05 02:59:21','','','','inherit','open','open','','aboutchicagolandremodeling','','','2017-11-13 14:22:56','2017-11-13 14:22:56','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg',0,'attachment','image/jpeg',0),(1044,1,'2017-02-23 10:38:37','2017-02-23 10:38:37','We bought a home recently and the worst part of the home was the bathroom. We needed to gut the entire bathroom and decided to go with Chicagoland Remodeling. Overall we were very satisfied with the end results. The best part of the processes was that I felt listened to. Cannot imagine how many contractors fail to listen to homeowners and horror stories. We got lucky with Chicagoland Remodeling, and would recommend them to friends and family.','Elena Daniels','','publish','closed','closed','','elena-daniels','','','2017-02-23 10:38:37','2017-02-23 10:38:37','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1044',0,'reviews','',0),(1045,1,'2017-02-23 19:21:08','2017-02-23 19:21:08','','','','inherit','closed','closed','','kitchen-remodeling-orange-county-1','','','2018-10-30 12:50:58','2018-10-30 12:50:58','',981,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/Kitchen-Remodeling-Orange-County-1.jpg',0,'attachment','image/jpeg',0),(1046,1,'2017-02-23 20:39:20','2017-02-23 20:39:20','','','','inherit','closed','closed','','18893mcsweeney_after-11','','','2017-11-13 13:01:20','2017-11-13 13:01:20','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/18893McSweeney_after-11.jpg',0,'attachment','image/jpeg',0),(1047,1,'2017-02-23 20:40:46','2017-02-23 20:40:46','','','','inherit','closed','closed','','2014-11-04-kitchenremodel','','','2018-10-30 01:19:59','2018-10-30 01:19:59','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/2014-11-04-kitchenremodel.jpg',0,'attachment','image/jpeg',0),(1030,1,'2017-02-23 09:53:09','2017-02-23 09:53:09','hey Joe, thanks for job done. I\'m very delighted. Our bathroom now looks very charming.','Dwayne Vega','','publish','closed','closed','','dwayne-vega','','','2017-02-23 09:53:09','2017-02-23 09:53:09','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1030',0,'reviews','',0),(1032,1,'2017-02-23 09:56:24','2017-02-23 09:56:24','Thanks! I\'m very happy with the work you did.','Randal Jenkins','','publish','closed','closed','','randal-jenkins','','','2017-02-23 09:56:24','2017-02-23 09:56:24','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1032',0,'reviews','',0),(1033,1,'2017-02-23 09:58:36','2017-02-23 09:58:36','I would totally recommend this contractor to anyone who want admirable remodeling. Chicagoland Remodeling was professional, on time and did great work.','Amelia Sanchez','','publish','closed','closed','','amelia-sanchez','','','2017-02-23 10:32:02','2017-02-23 10:32:02','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1033',0,'reviews','',0),(1034,1,'2017-02-23 10:12:36','2017-02-23 10:12:36','Very professional contactor. I love the fact that they came over and provided an estimate right away. They were able to start working next week.','Bernice Carson','','publish','closed','closed','','bernice-carson','','','2017-02-23 10:12:36','2017-02-23 10:12:36','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1034',0,'reviews','',0),(1035,1,'2017-02-23 10:14:06','2017-02-23 10:14:06','This was our first project with Chicagoland remodeling nad they did great job. He met with us several times and went over everything to make sure we were on the same page every step of the way. They exceeded our expectations.','Samuel Hale','','publish','closed','closed','','samuel-hale','','','2017-02-23 10:31:38','2017-02-23 10:31:38','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1035',0,'reviews','',0),(1036,1,'2017-02-23 10:16:43','2017-02-23 10:16:43','Wladek and his team not only did an incredible job but they were very supportive, flexible, and accommodating with everything they did. 100% satisfaction','Edmund Newton','','publish','closed','closed','','edmund-newton','','','2017-02-23 10:16:43','2017-02-23 10:16:43','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1036',0,'reviews','',0),(1037,1,'2017-02-23 10:19:42','2017-02-23 10:19:42','I will start of by saying that I am absolutely a satisfied customer. I just got a quality control call from the company, a few months after the project was done. They can to check the project and make sure everything was functioning the way it should.','Eric Tran','','publish','closed','closed','','eric-tran','','','2017-02-23 10:19:42','2017-02-23 10:19:42','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1037',0,'reviews','',0),(1038,1,'2017-02-23 10:23:09','2017-02-23 10:23:09','Just had my bathroom done and I am so happy with the work and quality that went into my brand new bathroom! I consider myself very picky and detail oriented. From beginning to end everyone that showed up was on time and professional. I am so pleased with this bathroom that I will definitely have them do other projects, like my kitchen.','Patricia Mendez','','publish','closed','closed','','patricia-mendez','','','2017-02-23 10:23:09','2017-02-23 10:23:09','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1038',0,'reviews','',0),(1039,1,'2017-02-23 10:25:06','2017-02-23 10:25:06','The owner is very honest, gives you a lot of good insight and information to make your decision easier.  I had them do the wood flooring outside my bathroom and I have received so many complements.  I am definitely referring this place to anyone for bath or kitchen remodel.  If you want peace of mine, go with them.','Jeremy Wong','','publish','closed','closed','','jeremy-wong','','','2017-02-23 10:25:06','2017-02-23 10:25:06','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1039',0,'reviews','',0),(1040,1,'2017-02-23 10:27:12','2017-02-23 10:27:12','The installers were fast, efficient, and cleanly. I\'m VERY happy with my new windows! Highly recommend Chicago remodeling!','Leah Howard','','publish','closed','closed','','leah-howard','','','2017-02-23 10:27:12','2017-02-23 10:27:12','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1040',0,'reviews','',0),(1041,1,'2017-02-23 10:29:11','2017-02-23 10:29:11','What I really appreciated with Chicagoland Remodeling is the fact that the price was set at the beginning and did not change all the way till it was completed. The entire team is super professional and friendly, they arrived every morning between 8 to 9 o\'clock in the morning. The company was responsible to schedule city inspections and each inspection was approved the first time.','Micheal Nguyen','','publish','closed','closed','','micheal-nguyen','','','2017-02-23 10:29:11','2017-02-23 10:29:11','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1041',0,'reviews','',0),(1043,1,'2017-02-23 10:35:58','2017-02-23 10:35:58','We had a few contractors contact us and arranged interviews. The repairs were well within our budget and  my bathroom came out looking exactly as my project manager showed me. I appreciate everything that Chicagoland Remodeling had done for us. Hardworking group of guys!','Taylor Weaver','','publish','closed','closed','','taylor-weaver','','','2017-02-23 10:35:58','2017-02-23 10:35:58','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1043',0,'reviews','',0),(474,1,'2013-02-06 17:30:41','2013-02-06 17:30:41','','','','inherit','open','open','','roofing2','','','2017-11-13 13:55:38','2017-11-13 13:55:38','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2.png',0,'attachment','image/png',0),(475,1,'2013-02-06 17:30:44','2013-02-06 17:30:44','','','','inherit','open','open','','roofing3','','','2017-11-13 13:55:20','2017-11-13 13:55:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3.png',0,'attachment','image/png',0),(301,1,'2013-02-05 03:48:09','2013-02-05 03:48:09','','','','inherit','open','open','','chimneys','','','2017-11-13 14:20:59','2017-11-13 14:20:59','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/chimneys.png',0,'attachment','image/png',0),(302,1,'2013-02-05 03:48:11','2013-02-05 03:48:11','','','','inherit','open','open','','shingles-2','','','2017-11-13 14:20:34','2017-11-13 14:20:34','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles.jpg',0,'attachment','image/jpeg',0),(308,1,'2013-02-05 04:01:01','2013-02-05 04:01:01','','','','inherit','open','open','','shingles-3','','','2017-11-13 14:20:13','2017-11-13 14:20:13','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles.png',0,'attachment','image/png',0),(310,1,'2013-02-05 04:12:11','2013-02-05 04:12:11','','','','inherit','open','open','','shingles1','','','2017-11-13 14:19:51','2017-11-13 14:19:51','',231,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles1.jpg',0,'attachment','image/jpeg',0),(311,1,'2013-02-05 04:12:12','2013-02-05 04:12:12','','','','inherit','open','open','','shingles2','','','2017-11-13 14:19:36','2017-11-13 14:19:36','',231,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles2.jpg',0,'attachment','image/jpeg',0),(312,1,'2013-02-05 04:15:33','2013-02-05 04:15:33','','','','inherit','open','open','','shingles3','','','2017-11-13 14:18:37','2017-11-13 14:18:37','',231,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/shingles3.jpg',0,'attachment','image/jpeg',0),(1023,0,'2017-02-17 20:09:36','2017-02-17 20:09:36','799','Contact Us','','publish','closed','closed','','contact-us-23','','','2017-02-17 20:09:36','2017-02-17 20:09:36','',0,'https://chicagolandremodeling.com/contact-us-23/',0,'wr_cfsb_post_type','',0),(1024,0,'2017-02-17 21:59:30','2017-02-17 21:59:30','799','Contact Us','','publish','closed','closed','','contact-us-24','','','2017-02-17 21:59:30','2017-02-17 21:59:30','',0,'https://chicagolandremodeling.com/contact-us-24/',0,'wr_cfsb_post_type','',0),(1025,0,'2017-02-20 05:51:07','2017-02-20 05:51:07','799','Contact Us','','publish','closed','closed','','contact-us-25','','','2017-02-20 05:51:07','2017-02-20 05:51:07','',0,'https://chicagolandremodeling.com/contact-us-25/',0,'wr_cfsb_post_type','',0),(1026,0,'2017-02-22 06:29:42','2017-02-22 06:29:42','799','Contact Us','','publish','closed','closed','','contact-us-26','','','2017-02-22 06:29:42','2017-02-22 06:29:42','',0,'https://chicagolandremodeling.com/contact-us-26/',0,'wr_cfsb_post_type','',0),(1027,0,'2017-02-22 20:00:43','2017-02-22 20:00:43','799','Contact Us','','publish','closed','closed','','contact-us-27','','','2017-02-22 20:00:43','2017-02-22 20:00:43','',0,'https://chicagolandremodeling.com/contact-us-27/',0,'wr_cfsb_post_type','',0),(1029,1,'2017-02-23 10:32:45','2017-02-23 10:32:45','Great experience, I didn\'t know before that kitchen remodeling can be so easy! Would totally recommend!','Lauren Gross','','publish','closed','closed','','lauren-gross','','','2017-02-23 10:32:45','2017-02-23 10:32:45','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=1029',0,'reviews','',0),(1017,1,'2017-02-10 00:04:49','2017-02-10 00:04:49','','','','inherit','closed','closed','','living','','','2017-11-13 13:05:30','2017-11-13 13:05:30','',599,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg',0,'attachment','image/jpeg',0),(1019,0,'2017-02-14 19:28:42','2017-02-14 19:28:42','799','Contact Us','','publish','closed','closed','','contact-us-22','','','2017-02-14 19:28:42','2017-02-14 19:28:42','',0,'https://chicagolandremodeling.com/contact-us-22/',0,'wr_cfsb_post_type','',0),(333,1,'2013-02-05 05:03:21','2013-02-05 05:03:21','A kitchen receives a new look, while retaining the existing cabinetry.','Matteson, Illinois','','publish','open','open','','matteson-illinois','','','2013-02-05 05:06:59','2013-02-05 05:06:59','',0,'http://www.chicagoremod.derekkramer.com/?p=333',0,'post','',0),(336,1,'2013-02-05 05:06:21','2013-02-05 05:06:21','A small galley kitchen transforms into an open, fully remodeled space.','Printers\' Row','','publish','open','open','','printers-row','','','2013-02-05 05:29:45','2013-02-05 05:29:45','',0,'http://www.chicagoremod.derekkramer.com/?p=336',0,'post','',0),(343,1,'2013-02-05 05:20:06','2013-02-05 05:20:06','','','','inherit','open','open','','printerskitchen1','','','2017-11-13 14:18:05','2017-11-13 14:18:05','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen1.jpg',0,'attachment','image/jpeg',0),(344,1,'2013-02-05 05:20:07','2013-02-05 05:20:07','','','','inherit','open','open','','printerskitchen2','','','2017-11-13 14:17:47','2017-11-13 14:17:47','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen2.jpg',0,'attachment','image/jpeg',0),(345,1,'2013-02-05 05:20:08','2013-02-05 05:20:08','','','','inherit','open','open','','printerskitchen3','','','2017-11-13 14:16:55','2017-11-13 14:16:55','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen3.jpg',0,'attachment','image/jpeg',0),(346,1,'2013-02-05 05:20:10','2013-02-05 05:20:10','','','','inherit','open','open','','printerskitchen4','','','2017-11-13 14:16:38','2017-11-13 14:16:38','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen4.jpg',0,'attachment','image/jpeg',0),(347,1,'2013-02-05 05:20:11','2013-02-05 05:20:11','','','','inherit','open','open','','printerskitchen5','','','2017-11-13 14:16:32','2017-11-13 14:16:32','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen5.jpg',0,'attachment','image/jpeg',0),(348,1,'2013-02-05 05:20:12','2013-02-05 05:20:12','','','','inherit','open','open','','printerskitchen6','','','2017-11-13 14:15:54','2017-11-13 14:15:54','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen6.jpg',0,'attachment','image/jpeg',0),(349,1,'2013-02-05 05:20:13','2013-02-05 05:20:13','','','','inherit','open','open','','printerskitchen7','','','2017-11-13 14:15:44','2017-11-13 14:15:44','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen7.jpg',0,'attachment','image/jpeg',0),(350,1,'2013-02-05 05:20:14','2013-02-05 05:20:14','','','','inherit','open','open','','printerskitchen8','','','2017-11-13 14:15:19','2017-11-13 14:15:19','',336,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersKitchen8.jpg',0,'attachment','image/jpeg',0),(476,1,'2013-02-06 17:30:47','2013-02-06 17:30:47','','','','inherit','open','open','','roofing4','','','2017-11-13 13:54:47','2017-11-13 13:54:47','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4.png',0,'attachment','image/png',0),(477,1,'2013-02-06 17:31:06','2013-02-06 17:31:06','','','','inherit','open','open','','painting1','','','2017-11-13 13:54:36','2017-11-13 13:54:36','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/painting1.jpg',0,'attachment','image/jpeg',0),(478,1,'2013-02-06 17:31:07','2013-02-06 17:31:07','','','','inherit','open','open','','painting2','','','2017-11-13 13:54:15','2017-11-13 13:54:15','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/painting2.jpg',0,'attachment','image/jpeg',0),(479,1,'2013-02-06 17:31:08','2013-02-06 17:31:08','','','','inherit','open','open','','painting3','','','2017-11-13 13:53:26','2017-11-13 13:53:26','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/painting3.jpg',0,'attachment','image/jpeg',0),(480,1,'2013-02-06 17:31:14','2013-02-06 17:31:14','','','','inherit','open','open','','remodel1','','','2017-11-13 13:53:12','2017-11-13 13:53:12','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel1.jpg',0,'attachment','image/jpeg',0),(362,1,'2013-02-05 19:47:41','2013-02-05 19:47:41','','','','inherit','open','open','','remodeling','','','2017-11-13 14:15:06','2017-11-13 14:15:06','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodeling.jpg',0,'attachment','image/jpeg',0),(363,1,'2013-02-05 19:47:43','2013-02-05 19:47:43','','','','inherit','open','open','','services-2','','','2017-11-13 14:14:40','2017-11-13 14:14:40','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/services.jpg',0,'attachment','image/jpeg',0),(483,1,'2013-02-06 17:31:17','2013-02-06 17:31:17','','','','inherit','open','open','','remodel4','','','2017-11-13 13:49:13','2017-11-13 13:49:13','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel4.jpg',0,'attachment','image/jpeg',0),(482,1,'2013-02-06 17:31:16','2013-02-06 17:31:16','','','','inherit','open','open','','remodel3','','','2017-11-13 13:49:49','2017-11-13 13:49:49','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel3.jpg',0,'attachment','image/jpeg',0),(481,1,'2013-02-06 17:31:15','2013-02-06 17:31:15','','','','inherit','open','open','','remodel2','','','2017-11-13 13:50:05','2017-11-13 13:50:05','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel2.jpg',0,'attachment','image/jpeg',0),(367,1,'2013-02-05 19:47:49','2013-02-05 19:47:49','','','','inherit','open','open','','testimonials-2','','','2017-10-31 19:24:05','2017-10-31 19:24:05','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/testimonials.jpg',0,'attachment','image/jpeg',0),(369,1,'2013-02-05 21:16:16','2013-02-05 21:16:16','','','','inherit','open','open','','bedrooms-3','','','2017-11-13 14:13:21','2017-11-13 14:13:21','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/bedrooms.png',0,'attachment','image/png',0),(370,1,'2013-02-05 21:16:18','2013-02-05 21:16:18','','','','inherit','open','open','','familyrooms-2','','','2017-11-13 14:13:07','2017-11-13 14:13:07','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/familyrooms.png',0,'attachment','image/png',0),(371,1,'2013-02-05 21:16:20','2013-02-05 21:16:20','','','','inherit','open','open','','gutters-2','','','2017-11-13 14:12:00','2017-11-13 14:12:00','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/gutters.png',0,'attachment','image/png',0),(372,1,'2013-02-05 21:16:23','2013-02-05 21:16:23','','','','inherit','open','open','','patios-3','','','2017-11-13 14:11:55','2017-11-13 14:11:55','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/patios.png',0,'attachment','image/png',0),(373,1,'2013-02-05 21:16:25','2013-02-05 21:16:25','','','','inherit','open','open','','remodeling-2','','','2017-11-13 14:10:48','2017-11-13 14:10:48','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodeling.png',0,'attachment','image/png',0),(374,1,'2013-02-05 21:16:27','2013-02-05 21:16:27','','','','inherit','open','open','','soffits-2','','','2017-11-13 14:07:12','2017-11-13 14:07:12','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/soffits.png',0,'attachment','image/png',0),(376,1,'2013-02-05 21:27:26','2013-02-05 21:27:26','','','','inherit','open','open','','stairs-3','','','2017-11-13 14:06:35','2017-11-13 14:06:35','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/stairs.png',0,'attachment','image/png',0),(690,1,'2013-03-15 14:36:16','2013-03-15 14:36:16','','','','inherit','open','open','','decksporches','','','2017-11-13 13:27:51','2017-11-13 13:27:51','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/decksPorches.jpg',0,'attachment','image/jpeg',0),(399,1,'2013-02-06 02:02:47','2013-02-06 02:02:47','An outdated kitchen is completely remodeled in Chicago, on Lake Shore Drive.','Lake Shore Drive','','publish','open','open','','lake-shore-drive-2','','','2013-02-06 02:02:47','2013-02-06 02:02:47','',0,'http://www.chicagoremod.derekkramer.com/?p=399',0,'post','',0),(403,1,'2013-02-06 02:17:03','2013-02-06 02:17:03','Small bathroom, big changes. Removing wall tiles, shower doors, vanity and toilet to update into something beautiful.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Mendota, IL Hall Bath','','publish','open','open','','mendota-hall-bath','','','2013-02-06 15:21:47','2013-02-06 15:21:47','',0,'http://www.chicagoremod.derekkramer.com/?p=403',0,'post','',0),(412,1,'2013-02-06 02:28:20','2013-02-06 02:28:20','A master bathroom transforms from a place to be tolerated to a calm and stylish oasis.','Mendota, IL Master Bath','','publish','open','open','','mendota-master-bath','','','2013-02-06 02:37:19','2013-02-06 02:37:19','',0,'http://www.chicagoremod.derekkramer.com/?p=412',0,'post','',0),(424,1,'2013-02-06 03:18:16','2013-02-06 03:18:16','','','','inherit','open','open','','printersbath1','','','2017-11-13 14:05:44','2017-11-13 14:05:44','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath1.jpg',0,'attachment','image/jpeg',0),(425,1,'2013-02-06 03:22:05','2013-02-06 03:22:05','','','','inherit','open','open','','printersbath2','','','2017-11-13 14:05:31','2017-11-13 14:05:31','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath2.jpg',0,'attachment','image/jpeg',0),(426,1,'2013-02-06 03:22:08','2013-02-06 03:22:08','','','','inherit','open','open','','printersbath3','','','2017-11-13 14:05:00','2017-11-13 14:05:00','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath3.jpg',0,'attachment','image/jpeg',0),(427,1,'2013-02-06 03:22:09','2013-02-06 03:22:09','','','','inherit','open','open','','printersbath4','','','2017-11-13 14:04:32','2017-11-13 14:04:32','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath4.jpg',0,'attachment','image/jpeg',0),(428,1,'2013-02-06 03:22:11','2013-02-06 03:22:11','','','','inherit','open','open','','printersbath5','','','2017-11-13 14:04:15','2017-11-13 14:04:15','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath5.jpg',0,'attachment','image/jpeg',0),(429,1,'2013-02-06 03:22:12','2013-02-06 03:22:12','','','','inherit','open','open','','printersbath6','','','2017-11-13 14:03:04','2017-11-13 14:03:04','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath6.jpg',0,'attachment','image/jpeg',0),(430,1,'2013-02-06 03:22:12','2013-02-06 03:22:12','','','','inherit','open','open','','printersbath7','','','2017-11-13 14:02:49','2017-11-13 14:02:49','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath7.jpg',0,'attachment','image/jpeg',0),(431,1,'2013-02-06 03:22:14','2013-02-06 03:22:14','','','','inherit','open','open','','printersbath8','','','2017-11-13 14:02:20','2017-11-13 14:02:20','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/printersBath8.jpg',0,'attachment','image/jpeg',0),(436,1,'2013-02-06 03:32:22','2013-02-06 03:32:22','Chicagoland Remodeling took a barely usable bathroom and turned it into dream space.','Printers\' Row Bath','','publish','open','open','','printers-row-bath-2','','','2013-02-06 03:32:22','2013-02-06 03:32:22','',0,'http://www.chicagoremod.derekkramer.com/?p=436',0,'post','',0),(439,1,'2013-02-06 03:40:02','2013-02-06 03:40:02','Update and upgrade into a bathroom you want to spend time in.','Matteson, IL Bath','','publish','open','open','','matteson-il-bath','','','2013-02-06 03:52:46','2013-02-06 03:52:46','',0,'http://www.chicagoremod.derekkramer.com/?p=439',0,'post','',0),(443,1,'2013-02-06 03:48:40','2013-02-06 03:48:40','','','','inherit','open','open','','mattesonbath12','','','2017-10-31 18:51:25','2017-10-31 18:51:25','',439,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/mattesonBath12.jpg',0,'attachment','image/jpeg',0),(447,1,'2013-02-06 04:03:51','2013-02-06 04:03:51','A comprehensive overhaul goes from mundane to a truly luxurious bathroom.','Seminary Ave, Chicago Bath','','publish','open','open','','seminary-bath','','','2013-02-12 03:09:10','2013-02-12 03:09:10','',0,'http://www.chicagoremod.derekkramer.com/?p=447',0,'post','',0),(470,1,'2013-02-06 16:30:50','2013-02-06 16:30:50','','','','inherit','open','open','','contactus','','','2017-11-13 14:00:31','2017-11-13 14:00:31','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/contactUs.jpg',0,'attachment','image/jpeg',0),(471,1,'2013-02-06 16:30:52','2013-02-06 16:30:52','','','','inherit','open','open','','freeestimate','','','2017-11-13 14:00:04','2017-11-13 14:00:04','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/freeEstimate.jpg',0,'attachment','image/jpeg',0),(484,1,'2013-02-06 17:31:18','2013-02-06 17:31:18','','','','inherit','open','open','','remodel5','','','2017-11-13 13:48:32','2017-11-13 13:48:32','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel5.jpg',0,'attachment','image/jpeg',0),(485,1,'2013-02-06 17:31:19','2013-02-06 17:31:19','','','','inherit','open','open','','remodel6','','','2017-11-13 13:48:11','2017-11-13 13:48:11','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/remodel6.jpg',0,'attachment','image/jpeg',0),(486,1,'2013-02-06 17:31:23','2013-02-06 17:31:23','','','','inherit','open','open','','roofing1_1','','','2017-11-13 13:45:12','2017-11-13 13:45:12','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing1_1.jpg',0,'attachment','image/jpeg',0),(501,1,'2013-02-06 17:36:11','2013-02-06 17:36:11','','','','inherit','open','open','','roofing1_2','','','2017-11-13 13:30:44','2017-11-13 13:30:44','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/01/roofing1_2.jpg',0,'attachment','image/jpeg',0),(488,1,'2013-02-06 17:31:25','2013-02-06 17:31:25','','','','inherit','open','open','','roofing1_3','','','2017-11-13 13:44:47','2017-11-13 13:44:47','',186,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing1_3.jpg',0,'attachment','image/jpeg',0),(489,1,'2013-02-06 17:31:26','2013-02-06 17:31:26','','','','inherit','open','open','','roofing2_1','','','2017-11-13 13:44:15','2017-11-13 13:44:15','',199,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_1.jpg',0,'attachment','image/jpeg',0),(490,1,'2013-02-06 17:31:27','2013-02-06 17:31:27','','','','inherit','open','open','','roofing2_2','','','2017-11-13 13:43:45','2017-11-13 13:43:45','',199,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_2.jpg',0,'attachment','image/jpeg',0),(491,1,'2013-02-06 17:31:28','2013-02-06 17:31:28','','','','inherit','open','open','','roofing2_3','','','2017-11-13 13:43:04','2017-11-13 13:43:04','',199,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing2_3.jpg',0,'attachment','image/jpeg',0),(492,1,'2013-02-06 17:31:30','2013-02-06 17:31:30','','','','inherit','open','open','','roofing3_1','','','2017-11-13 13:42:49','2017-11-13 13:42:49','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_1.jpg',0,'attachment','image/jpeg',0),(493,1,'2013-02-06 17:31:31','2013-02-06 17:31:31','','','','inherit','open','open','','roofing3_2','','','2017-11-13 13:42:34','2017-11-13 13:42:34','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_2.jpg',0,'attachment','image/jpeg',0),(494,1,'2013-02-06 17:31:32','2013-02-06 17:31:32','','','','inherit','open','open','','roofing3_3','','','2017-11-13 13:42:22','2017-11-13 13:42:22','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_3.jpg',0,'attachment','image/jpeg',0),(495,1,'2013-02-06 17:31:33','2013-02-06 17:31:33','','','','inherit','open','open','','roofing3_4','','','2017-11-13 13:42:06','2017-11-13 13:42:06','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_4.jpg',0,'attachment','image/jpeg',0),(496,1,'2013-02-06 17:31:34','2013-02-06 17:31:34','','','','inherit','open','open','','roofing3_5','','','2017-11-13 13:41:18','2017-11-13 13:41:18','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing3_5.jpg',0,'attachment','image/jpeg',0),(497,1,'2013-02-06 17:31:35','2013-02-06 17:31:35','','','','inherit','open','open','','roofing4_1','','','2017-11-13 13:40:45','2017-11-13 13:40:45','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_1.jpg',0,'attachment','image/jpeg',0),(498,1,'2013-02-06 17:31:36','2013-02-06 17:31:36','','','','inherit','open','open','','roofing4_2','','','2017-11-13 13:31:54','2017-11-13 13:31:54','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_2.jpg',0,'attachment','image/jpeg',0),(499,1,'2013-02-06 17:31:37','2013-02-06 17:31:37','','','','inherit','open','open','','roofing4_3','','','2017-11-13 13:31:40','2017-11-13 13:31:40','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_3.jpg',0,'attachment','image/jpeg',0),(500,1,'2013-02-06 17:31:39','2013-02-06 17:31:39','','','','inherit','open','open','','roofing4_4','','','2017-11-13 13:30:58','2017-11-13 13:30:58','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/02/roofing4_4.jpg',0,'attachment','image/jpeg',0),(514,1,'2013-02-06 18:02:44','2013-02-06 18:02:44','<p>Changing the color of shingles when roofing needs to be replaced can also improve the home\'s overall appeal.</p>','Roofing Location B','','publish','open','open','','roofing-location-b','','','2013-03-23 23:51:29','2013-03-23 23:51:29','',0,'http://www.chicagoremod.derekkramer.com/?p=514',0,'post','',0),(517,1,'2013-02-06 18:04:15','2013-02-06 18:04:15','<p>New shingles replace existing roofing, while chimney is completely rebuilt.</p>','Roofing Location A','','publish','open','open','','roofing-location-a','','','2013-03-23 23:45:59','2013-03-23 23:45:59','',0,'http://www.chicagoremod.derekkramer.com/?p=517',0,'post','',0),(539,1,'2013-02-12 13:34:13','2013-02-12 13:34:13',' ','','','publish','open','closed','','539','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'http://www.chicagoremod.derekkramer.com/?p=539',1,'nav_menu_item','',0),(588,1,'2013-03-14 12:33:13','2013-03-14 12:33:13','','','','inherit','open','open','','service_thumb1','','','2017-11-13 13:30:40','2017-11-13 13:30:40','',34,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/service_THUMB1.jpg',0,'attachment','image/jpeg',0),(589,1,'2013-03-14 12:33:16','2013-03-14 12:33:16','','','','inherit','open','open','','service_thumb2','','','2017-11-13 13:30:35','2017-11-13 13:30:35','',34,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2012/11/service_THUMB2.jpg',0,'attachment','image/jpeg',0),(599,1,'2013-03-14 12:44:47','2013-03-14 12:44:47','<p style=\"text-align: justify;\">Tired of looking at that dreary, dingy basement? Chicagoland Remodeling can help homeowners looking to increase living space and add additional value to their homes and can turn your basement in to a family or work space that you\'ll enjoy. There are many ways to transform your basement - create a home theater, design a playroom for the kids, or even make a man cave.</p>\r\n<p style=\"text-align: justify;\">From the ground up or working with a finished space - Chicagoland Remodeling will work with you to craft the perfect space for your basement remodeling.</p>\r\n<h2>Ideas for Your Basement Remodeling</h2>\r\n<p style=\"text-align: justify;\">The basement is a highly underrated part of many homes. When left unfinished, a basement is not good for much other than storage. However, with the help of basement remodeling contractors Chicago has trusted for years, like Chicagoland Remodeling, basement finishing can transform your home.<br />\r\nA good finished basement can offer something for everyone: a playroom for the children, a man-cave, a laundry room, extra bedrooms, a game room, or other specialty rooms that fit your interests (darkrooms, craft rooms, and more).</p>\r\n<h2>Why Choose Chicagoland Remodeling?</h2>\r\n<p style=\"text-align: justify;\">A finished basement extends your living space. Why waste space you already own? Chicagoland Remodeling has seen it all and can complete your job quickly, cost-efficiently, and leaving you with a high quality basement you love. With our years of experience and highly qualified staff, you are guaranteed nothing but the best when it comes to basement remodeling when you work with Chicagoland Remodeling. You won’t regret it.</p>','Basements','','publish','closed','closed','','basements','','','2021-02-03 19:53:59','2021-02-03 19:53:59','',0,'http://www.chicagoremod.derekkramer.com/?p=599',0,'post','',0),(622,1,'2013-03-14 21:21:38','2013-03-14 21:21:38','','','','inherit','open','open','','icon_addlroofing','','','2017-11-13 13:30:27','2017-11-13 13:30:27','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg',0,'attachment','image/jpeg',0),(623,1,'2013-03-14 21:21:39','2013-03-14 21:21:39','','','','inherit','open','open','','icon_barthrooms','','','2017-11-13 13:30:09','2017-11-13 13:30:09','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_barthrooms.jpg',0,'attachment','image/jpeg',0),(624,1,'2013-03-14 21:21:39','2013-03-14 21:21:39','','','','inherit','open','open','','icon_basements','','','2017-11-13 13:30:15','2017-11-13 13:30:15','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_basements.jpg',0,'attachment','image/jpeg',0),(625,1,'2013-03-14 21:21:40','2013-03-14 21:21:40','','','','inherit','open','open','','icon_bedrooms','','','2017-11-13 13:30:05','2017-11-13 13:30:05','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_bedrooms.jpg',0,'attachment','image/jpeg',0),(626,1,'2013-03-14 21:21:41','2013-03-14 21:21:41','','','','inherit','open','open','','icon_chimney','','','2017-11-13 13:30:01','2017-11-13 13:30:01','',34,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_chimney.jpg',0,'attachment','image/jpeg',0),(627,1,'2013-03-14 21:21:42','2013-03-14 21:21:42','','','','inherit','open','open','','icon_decks','','','2017-11-13 13:29:56','2017-11-13 13:29:56','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_decks.jpg',0,'attachment','image/jpeg',0),(628,1,'2013-03-14 21:21:43','2013-03-14 21:21:43','','','','inherit','open','open','','icon_diningroom','','','2017-11-13 13:29:38','2017-11-13 13:29:38','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_diningRoom.jpg',0,'attachment','image/jpeg',0),(629,1,'2013-03-14 21:21:43','2013-03-14 21:21:43','','','','inherit','open','open','','icon_familyroom','','','2017-11-13 13:29:47','2017-11-13 13:29:47','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_familyRoom.jpg',0,'attachment','image/jpeg',0),(630,1,'2013-03-14 21:21:44','2013-03-14 21:21:44','','','','inherit','open','open','','icon_gutters','','','2017-11-13 13:29:34','2017-11-13 13:29:34','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_gutters.jpg',0,'attachment','image/jpeg',0),(631,1,'2013-03-14 21:21:45','2013-03-14 21:21:45','','','','inherit','open','open','','icon_kitchens','','','2017-11-13 13:29:29','2017-11-13 13:29:29','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_kitchens.jpg',0,'attachment','image/jpeg',0),(632,1,'2013-03-14 21:21:46','2013-03-14 21:21:46','','','','inherit','open','open','','icon_officescommercial','','','2017-11-13 13:29:21','2017-11-13 13:29:21','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_officesCommercial.jpg',0,'attachment','image/jpeg',0),(633,1,'2013-03-14 21:21:47','2013-03-14 21:21:47','','','','inherit','open','open','','icon_paintingindoor','','','2017-11-13 13:29:10','2017-11-13 13:29:10','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_paintingIndoor.jpg',0,'attachment','image/jpeg',0),(634,1,'2013-03-14 21:21:47','2013-03-14 21:21:47','','','','inherit','open','open','','icon_paintingoutdoor','','','2017-11-13 13:29:17','2017-11-13 13:29:17','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_paintingOutdoor.jpg',0,'attachment','image/jpeg',0),(635,1,'2013-03-14 21:21:48','2013-03-14 21:21:48','','','','inherit','open','open','','icon_patios','','','2017-11-13 13:29:01','2017-11-13 13:29:01','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_patios.jpg',0,'attachment','image/jpeg',0),(636,1,'2013-03-14 21:21:49','2013-03-14 21:21:49','','','','inherit','open','open','','icon_roofing','','','2017-11-13 13:28:48','2017-11-13 13:28:48','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_roofing.jpg',0,'attachment','image/jpeg',0),(637,1,'2013-03-14 21:21:50','2013-03-14 21:21:50','','','','inherit','open','open','','icon_shingles','','','2017-11-13 13:28:38','2017-11-13 13:28:38','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_shingles.jpg',0,'attachment','image/jpeg',0),(638,1,'2013-03-14 21:21:50','2013-03-14 21:21:50','','','','inherit','open','open','','icon_stairs','','','2017-11-13 13:28:42','2017-11-13 13:28:42','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_stairs.jpg',0,'attachment','image/jpeg',0),(639,1,'2013-03-14 21:21:51','2013-03-14 21:21:51','','','','inherit','open','open','','icon_windows','','','2017-11-13 13:28:26','2017-11-13 13:28:26','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/icon_windows.jpg',0,'attachment','image/jpeg',0),(671,1,'2013-03-14 23:10:56','2013-03-14 23:10:56','','','','inherit','open','open','','basements-2','','','2017-11-13 13:28:18','2017-11-13 13:28:18','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/basements.jpg',0,'attachment','image/jpeg',0),(672,1,'2013-03-14 23:13:12','2013-03-14 23:13:12','<p style=\"text-align: justify;\">Chicagoland Remodeling is the best option for remodeling in the Chicagoland area. We perform both internal and external commercial remodel, so whether you need a spruced up indoors or to tweak your exterior, we are happy to be of assistance. Some common exterior services include windows, doors, siding and gutter installation, roofing installation, and sealants and caulking. The exterior of your commercial property is important as people really do judge a book by its cover. Common interior services include painting the walls a new color and installing new flooring such as hardwood, tile, or carpet.</p>\r\n<p>&nbsp;</p>\r\n<h2 style=\"font-size: 21px;\">Commercial Spaces</h2>\r\n<p style=\"text-align: justify;\">Do you need to expand your commercial property? We also are a highly qualified service providing office build outs. Our contractors are licensed and highly experienced and can help you make the most of the space you have. The process can be highly affordable, and build out jobs range from small to large.</p>\r\n<p>We offer hotel renovation services as well. First impressions are important when it comes to hotel. Aesthetics are what draw your customers to you. We can help!  </p>','Office','','publish','closed','closed','','offices-commercial-spaces','','','2021-02-04 11:47:49','2021-02-04 11:47:49','',0,'http://www.chicagoremod.derekkramer.com/?p=672',0,'post','',0),(676,1,'2013-03-15 00:10:12','2013-03-15 00:10:12','','','','inherit','open','open','','officecommercial','','','2017-11-13 13:28:03','2017-11-13 13:28:03','',0,'http://www.chicagoremod.derekkramer.com/wp-content/uploads/2013/03/officeCommercial.jpg',0,'attachment','image/jpeg',0),(703,1,'2013-03-24 12:45:19','2013-03-24 12:45:19','<p>We\'re sorry.Â  There seems to be a problem.</p>\r\n<p>If you are trying to send us an email with the Free Estimate form please be sure to answer the security question.</p>\r\n<p>Thank you.</p>','Contact Error','','publish','closed','closed','','contact-error','','','2017-01-16 16:20:16','2017-01-16 16:20:16','',0,'http://mychicagolandremodeling.com/?page_id=703',2000,'page','',0),(705,1,'2013-03-24 12:46:49','2013-03-24 12:46:49','<p><span style=\"font-size: x-large;\"><strong>Thank you!</strong></span></p>\r\n<p>We will contact you shortly regarding your inquiry.</p>','Contact Success','','publish','closed','closed','','contact-success','','','2017-01-16 16:23:26','2017-01-16 16:23:26','',0,'http://mychicagolandremodeling.com/?page_id=705',2010,'page','',0),(820,1,'2017-01-09 15:54:44','2017-01-09 15:54:44','','Commercial','','publish','open','closed','','commercial-remodeling','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=820',8,'nav_menu_item','',0),(965,1,'2017-02-08 02:28:28','2017-02-08 02:28:28','','','','inherit','closed','closed','','kitchen-2','','','2017-11-13 13:07:12','2017-11-13 13:07:12','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg',0,'attachment','image/jpeg',0),(964,1,'2017-02-08 02:28:27','2017-02-08 02:28:27','','','','inherit','closed','closed','','bathroom-2','','','2017-11-13 13:07:30','2017-11-13 13:07:30','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg',0,'attachment','image/jpeg',0),(819,1,'2017-01-09 15:54:44','2017-01-09 15:54:44','','Bedrooms','','publish','open','closed','','bedrooms','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=819',9,'nav_menu_item','',0),(818,1,'2017-01-09 15:54:43','2017-01-09 15:54:43','','Basement','','publish','open','closed','','basement-remodeling','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=818',7,'nav_menu_item','',0),(1127,1,'2017-03-28 20:57:06','2017-03-28 20:57:06','','','','inherit','closed','closed','','commercial-spaces','','','2017-11-13 12:56:36','2017-11-13 12:56:36','',672,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg',0,'attachment','image/jpeg',0),(782,1,'2016-12-22 14:10:18','2016-12-22 14:10:18','<div class=\"contact-form-box\"><h4>QUICK QUOTE</h4>\r\n<div class=\"contact-form-input\">[text* yname placeholder \"Name *\"] </div>\r\n<div class=\"contact-form-input\">[email* email placeholder \"Email *\"]</div>\r\n<div class=\"contact-form-input\">[text* phone placeholder \"Phone *\"] </div>\r\n<div class=\"contact-form-textarea\">[textarea message x6 placeholder \"Message \" ]</div>\r\n\r\n<div class=\"wpcf7-submit-wrap\">\r\n[submit \"Submit\"]\r\n</div>\r\n</div>\n1\nchicagolandremodeling.com quote\n[yname] <wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [yname] <[email]>\r\nPhone: [phone]\r\n\r\nMessage Body:\r\n[message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [email]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','open','open','','contact-form-1','','','2020-05-19 23:44:40','2020-05-19 23:44:40','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=782',0,'wpcf7_contact_form','',0),(1009,1,'2017-02-09 23:56:24','2017-02-09 23:56:24','','','','inherit','closed','closed','','img1b','','','2017-11-13 13:04:02','2017-11-13 13:04:02','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b.jpg',0,'attachment','image/jpeg',0),(1010,1,'2017-02-09 23:56:25','2017-02-09 23:56:25','','','','inherit','closed','closed','','img2b','','','2017-11-13 13:03:42','2017-11-13 13:03:42','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b.jpg',0,'attachment','image/jpeg',0),(1011,1,'2017-02-09 23:56:26','2017-02-09 23:56:26','','','','inherit','closed','closed','','img3b','','','2017-11-13 13:02:56','2017-11-13 13:02:56','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b.jpg',0,'attachment','image/jpeg',0),(783,1,'2016-12-23 14:11:54','2016-12-23 14:11:54','','','','inherit','open','open','','basement_remodeling','','','2017-11-13 13:27:46','2017-11-13 13:27:46','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg',0,'attachment','image/jpeg',0),(784,1,'2016-12-23 14:11:55','2016-12-23 14:11:55','','','','inherit','open','open','','bathroom_remodeling','','','2017-11-13 13:27:19','2017-11-13 13:27:19','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg',0,'attachment','image/jpeg',0),(785,1,'2016-12-23 14:11:56','2016-12-23 14:11:56','','','','inherit','open','open','','bedroom','','','2017-11-13 13:22:06','2017-11-13 13:22:06','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg',0,'attachment','image/jpeg',0),(786,1,'2016-12-23 14:11:57','2016-12-23 14:11:57','','','','inherit','open','open','','commercial_remodeling','','','2017-11-13 13:21:23','2017-11-13 13:21:23','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg',0,'attachment','image/jpeg',0),(787,1,'2016-12-23 14:11:57','2016-12-23 14:11:57','','','','inherit','open','open','','dining_room','','','2017-11-13 13:21:32','2017-11-13 13:21:32','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg',0,'attachment','image/jpeg',0),(788,1,'2016-12-23 14:11:58','2016-12-23 14:11:58','','','','inherit','open','open','','family_room','','','2017-11-13 13:21:05','2017-11-13 13:21:05','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg',0,'attachment','image/jpeg',0),(789,1,'2016-12-23 14:11:59','2016-12-23 14:11:59','','','','inherit','open','open','','kitchen_remodeling','','','2017-11-13 13:19:22','2017-11-13 13:19:22','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg',0,'attachment','image/jpeg',0),(790,1,'2016-12-23 14:12:00','2016-12-23 14:12:00','','','','inherit','open','open','','painting','','','2017-11-13 13:17:58','2017-11-13 13:17:58','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg',0,'attachment','image/jpeg',0),(791,1,'2016-12-23 14:12:01','2016-12-23 14:12:01','','','','inherit','open','open','','stairs-2','','','2017-11-13 13:17:43','2017-11-13 13:17:43','',8,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg',0,'attachment','image/jpeg',0),(799,1,'2016-12-23 22:00:40','2016-12-23 22:00:40','','Contact Us','','publish','closed','closed','','contact-us','','','2017-01-14 15:32:20','2017-01-14 15:32:20','',0,'https://chicagolandremodeling.com/?post_type=wr_cf_post_type&#038;p=799',0,'wr_cf_post_type','',0),(805,1,'2017-01-05 21:58:47','2017-01-05 21:58:47','799','Contact Us','','publish','open','open','','contact-us','','','2017-01-05 21:58:47','2017-01-05 21:58:47','',0,'https://chicagolandremodeling.com/contact-us/',0,'wr_cfsb_post_type','',0),(806,1,'2017-01-05 22:09:59','2017-01-05 22:09:59','799','Contact Us','','publish','open','open','','contact-us-2','','','2017-01-05 22:09:59','2017-01-05 22:09:59','',0,'https://chicagolandremodeling.com/contact-us-2/',0,'wr_cfsb_post_type','',0),(807,1,'2017-01-06 07:45:18','2017-01-06 07:45:18','799','Contact Us','','publish','open','open','','contact-us-3','','','2017-01-06 07:45:18','2017-01-06 07:45:18','',0,'https://chicagolandremodeling.com/contact-us-3/',0,'wr_cfsb_post_type','',0),(810,1,'2017-01-06 08:25:03','2017-01-06 08:25:03','','','','inherit','open','open','','slide-white','','','2017-10-31 18:13:09','2017-10-31 18:13:09','',0,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/slide-white.jpg',0,'attachment','image/jpeg',0),(814,1,'2017-01-06 08:41:33','2017-01-06 08:41:33','','','','inherit','open','open','','eckert-4342sancarlosdrive-dallas-tx-75205','','','2017-11-13 13:17:25','2017-11-13 13:17:25','',813,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1.jpg',0,'attachment','image/jpeg',0),(1342,0,'2017-10-31 18:14:19','2017-10-31 18:14:19','799','Contact Us','','publish','closed','closed','','contact-us-46','','','2017-10-31 18:14:19','2017-10-31 18:14:19','',0,'https://chicagolandremodeling.com/contact-us-46/',0,'wr_cfsb_post_type','',0),(813,1,'2017-01-06 08:41:42','2017-01-06 08:41:42','','','','publish','closed','closed','','813','','','2017-01-19 09:55:11','2017-01-19 09:55:11','',0,'https://chicagolandremodeling.com/?post_type=slide&#038;p=813',0,'slide','',0),(821,0,'2017-01-10 20:56:10','2017-01-10 20:56:10','799','Contact Us','','publish','open','open','','contact-us-4','','','2017-01-10 20:56:10','2017-01-10 20:56:10','',0,'https://chicagolandremodeling.com/contact-us-4/',0,'wr_cfsb_post_type','',0),(823,0,'2017-01-12 05:47:05','2017-01-12 05:47:05','799','Contact Us','','publish','closed','closed','','contact-us-5','','','2017-01-12 05:47:05','2017-01-12 05:47:05','',0,'https://chicagolandremodeling.com/contact-us-5/',0,'wr_cfsb_post_type','',0),(826,0,'2017-01-12 13:58:17','2017-01-12 13:58:17','799','Contact Us','','publish','closed','closed','','contact-us-6','','','2017-01-12 13:58:17','2017-01-12 13:58:17','',0,'https://chicagolandremodeling.com/contact-us-6/',0,'wr_cfsb_post_type','',0),(934,1,'2017-01-24 19:49:16','2017-01-24 19:49:16','https://chicagolandremodeling.com/wp-content/uploads/2017/01/cropped-ico.png','','','inherit','closed','closed','','cropped-ico-png','','','2017-10-31 18:05:21','2017-10-31 18:05:21','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/cropped-ico.png',0,'attachment','image/png',0),(828,1,'2017-01-12 15:06:37','2017-01-12 15:06:37','','','','inherit','closed','closed','','g','','','2017-10-31 18:10:03','2017-10-31 18:10:03','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png',0,'attachment','image/png',0),(835,1,'2017-01-12 15:09:36','2017-01-12 15:09:36','','','','inherit','closed','closed','','square-facebook-512','','','2017-10-31 18:09:53','2017-10-31 18:09:53','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512.png',0,'attachment','image/png',0),(849,1,'2017-01-12 15:18:22','2017-01-12 15:18:22','','','','inherit','closed','closed','','5540543936_423e37dae4_b','','','2017-10-31 18:09:43','2017-10-31 18:09:43','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b.jpg',0,'attachment','image/jpeg',0),(850,1,'2017-01-12 15:18:59','2017-01-12 15:18:59','','','','inherit','closed','closed','','mapquest_tall_logo_large','','','2017-10-31 18:09:34','2017-10-31 18:09:34','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large.jpg',0,'attachment','image/jpeg',0),(858,1,'2017-01-12 15:43:41','2017-01-12 15:43:41','','','','inherit','closed','closed','','badgem-1','','','2017-10-31 18:09:18','2017-10-31 18:09:18','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1.png',0,'attachment','image/png',0),(860,1,'2017-01-12 15:48:51','2017-01-12 15:48:51','','','','inherit','closed','closed','','3654978-50x50','','','2017-10-31 18:09:09','2017-10-31 18:09:09','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/3654978-50x50.png',0,'attachment','image/png',0),(862,1,'2017-01-12 15:49:29','2017-01-12 15:49:29','','','','inherit','closed','closed','','badgem-1-2','','','2017-10-31 18:08:39','2017-10-31 18:08:39','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1-1.png',0,'attachment','image/png',0),(865,1,'2017-01-12 15:51:07','2017-01-12 15:51:07','','','','inherit','closed','closed','','smithprobadge','','','2017-10-31 18:08:06','2017-10-31 18:08:06','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png',0,'attachment','image/png',0),(872,1,'2017-01-12 16:17:24','2017-01-12 16:17:24','','','','inherit','closed','closed','','bannnn','','','2017-10-31 18:07:56','2017-10-31 18:07:56','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn.png',0,'attachment','image/png',0),(880,1,'2017-01-12 16:22:55','2017-01-12 16:22:55','','','','inherit','closed','closed','','angie-2015','','','2017-10-31 18:07:24','2017-10-31 18:07:24','',8,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015.png',0,'attachment','image/png',0),(933,1,'2017-01-24 19:49:11','2017-01-24 19:49:11','','','','inherit','closed','closed','','ico','','','2017-10-31 18:05:29','2017-10-31 18:05:29','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/ico.png',0,'attachment','image/png',0),(886,1,'2017-01-14 15:30:46','2017-01-14 15:30:46','<p style=\"text-align: center;\">Your email was sent to our office.<br />\r\nWe will call back to you as soon as possible.</p>','ThankYou','','publish','closed','closed','','thankyou','','','2021-02-03 19:04:44','2021-02-03 19:04:44','',0,'https://chicagolandremodeling.com/?page_id=886',0,'page','',0),(888,1,'2017-01-14 15:32:42','2017-01-14 15:32:42','799','Contact Us','','publish','closed','closed','','contact-us-7','','','2017-01-14 15:32:42','2017-01-14 15:32:42','',0,'https://chicagolandremodeling.com/contact-us-7/',0,'wr_cfsb_post_type','',0),(892,0,'2017-01-16 15:06:21','2017-01-16 15:06:21','799','Contact Us','','publish','closed','closed','','contact-us-8','','','2017-01-16 15:06:21','2017-01-16 15:06:21','',0,'https://chicagolandremodeling.com/contact-us-8/',0,'wr_cfsb_post_type','',0),(902,0,'2017-01-16 18:48:08','2017-01-16 18:48:08','799','Contact Us','','publish','closed','closed','','contact-us-9','','','2017-01-16 18:48:08','2017-01-16 18:48:08','',0,'https://chicagolandremodeling.com/contact-us-9/',0,'wr_cfsb_post_type','',0),(903,0,'2017-01-16 23:48:50','2017-01-16 23:48:50','799','Contact Us','','publish','closed','closed','','contact-us-10','','','2017-01-16 23:48:50','2017-01-16 23:48:50','',0,'https://chicagolandremodeling.com/contact-us-10/',0,'wr_cfsb_post_type','',0),(904,0,'2017-01-17 11:05:38','2017-01-17 11:05:38','799','Contact Us','','publish','closed','closed','','contact-us-11','','','2017-01-17 11:05:38','2017-01-17 11:05:38','',0,'https://chicagolandremodeling.com/contact-us-11/',0,'wr_cfsb_post_type','',0),(908,0,'2017-01-18 06:10:59','2017-01-18 06:10:59','799','Contact Us','','publish','closed','closed','','contact-us-12','','','2017-01-18 06:10:59','2017-01-18 06:10:59','',0,'https://chicagolandremodeling.com/contact-us-12/',0,'wr_cfsb_post_type','',0),(909,0,'2017-01-18 06:36:38','2017-01-18 06:36:38','799','Contact Us','','publish','closed','closed','','contact-us-13','','','2017-01-18 06:36:38','2017-01-18 06:36:38','',0,'https://chicagolandremodeling.com/contact-us-13/',0,'wr_cfsb_post_type','',0),(910,1,'2017-01-18 19:32:01','2017-01-18 19:32:01','<p>[Best_Wordpress_Gallery id=\"1\" gal_title=\"gallery\"]</p>','Gallery','','publish','closed','closed','','gallery','','','2021-02-03 19:03:38','2021-02-03 19:03:38','',0,'https://chicagolandremodeling.com/?page_id=910',0,'page','',0),(914,0,'2017-01-19 04:10:41','2017-01-19 04:10:41','799','Contact Us','','publish','closed','closed','','contact-us-14','','','2017-01-19 04:10:41','2017-01-19 04:10:41','',0,'https://chicagolandremodeling.com/contact-us-14/',0,'wr_cfsb_post_type','',0),(915,0,'2017-01-19 08:47:21','2017-01-19 08:47:21','799','Contact Us','','publish','closed','closed','','contact-us-15','','','2017-01-19 08:47:21','2017-01-19 08:47:21','',0,'https://chicagolandremodeling.com/contact-us-15/',0,'wr_cfsb_post_type','',0),(916,0,'2017-01-19 08:54:23','2017-01-19 08:54:23','799','Contact Us','','publish','closed','closed','','contact-us-16','','','2017-01-19 08:54:23','2017-01-19 08:54:23','',0,'https://chicagolandremodeling.com/contact-us-16/',0,'wr_cfsb_post_type','',0),(937,0,'2017-01-27 23:18:30','2017-01-27 23:18:30','799','Contact Us','','publish','closed','closed','','contact-us-18','','','2017-01-27 23:18:30','2017-01-27 23:18:30','',0,'https://chicagolandremodeling.com/contact-us-18/',0,'wr_cfsb_post_type','',0),(918,1,'2017-01-19 09:54:14','2017-01-19 09:54:14','','','','inherit','closed','closed','','eckert-4342sancarlosdrive-dallas-tx-75205-2','','','2017-11-13 13:09:35','2017-11-13 13:09:35','',816,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg',0,'attachment','image/jpeg',0),(919,1,'2017-01-19 09:54:17','2017-01-19 09:54:17','','','','inherit','closed','closed','','slider2-2','','','2017-11-13 13:09:10','2017-11-13 13:09:10','',816,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg',0,'attachment','image/jpeg',0),(920,0,'2017-01-19 11:35:46','2017-01-19 11:35:46','799','Contact Us','','publish','closed','closed','','contact-us-17','','','2017-01-19 11:35:46','2017-01-19 11:35:46','',0,'https://chicagolandremodeling.com/contact-us-17/',0,'wr_cfsb_post_type','',0),(921,1,'2017-01-19 13:28:19','2017-01-19 13:28:19','Chicagoland Remodeling did an amazing job with remodeling our bathroom. It looks fabulous right now! Thanks','Frank Morris','','publish','closed','closed','','frank-morris','','','2017-01-19 13:28:19','2017-01-19 13:28:19','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=921',0,'reviews','',0),(922,1,'2017-01-19 13:30:18','2017-01-19 13:30:18','Excellent work for fair price! That\'s why Chicagoland Remodeling is a company I will call again','Jeff Obrien','','publish','closed','closed','','jeff-obrien','','','2017-01-19 13:30:18','2017-01-19 13:30:18','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=922',0,'reviews','',0),(923,1,'2017-01-19 13:30:56','2017-01-19 13:30:56','Whenever you are looking for a trusted and reliable home remodeling contractor, give a call to Chicagoland Remodeling!','Robert Griffin','','publish','closed','closed','','robert-griffin','','','2017-01-19 13:30:56','2017-01-19 13:30:56','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=923',0,'reviews','',0),(924,1,'2017-01-19 13:33:48','2017-01-19 13:33:48','Totally recommended home remodeling contractor! Not only Chicagoland Remodeling did a great job with our kitchen and bathroom remodeling, but also finished work in time. Surely will call you again :)','Sarah Huff','','publish','closed','closed','','sarah-huff','','','2017-01-19 13:33:48','2017-01-19 13:33:48','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=924',0,'reviews','',0),(925,1,'2017-01-19 13:40:18','2017-01-19 13:40:18','Whenever you need a professional home remodeling contractor, Chicagoland Remodeling is a place to call. Friendly service, experienced workers and fair prices - these are only few pros of this home remodeling company!','Kelly Osborne','','publish','closed','closed','','kelly-osborne','','','2017-01-19 13:40:18','2017-01-19 13:40:18','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=925',0,'reviews','',0),(926,1,'2017-01-19 13:52:39','2017-01-19 13:52:39','Thanks to Chicagoland Remodeling now we got an amazing kitchen! Highly recommended remodeling contractors','Harry Chapman','','publish','closed','closed','','harry-chapman','','','2017-01-19 13:52:39','2017-01-19 13:52:39','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=926',0,'reviews','',0),(927,1,'2017-01-19 13:56:30','2017-01-19 13:56:30','Some time ago me and my wife was looking for a home remodeling contractor who can carry remodeling of almost whole our house. A friend recommended me Chicagoland Remodeling and I regret nothing! Wally and Iza were very communicative when we were talking about project. Workers who came were professionals. They did an amazing job with remodeling our kitchen, living room, bathroom and basement. All this for a fair price. 100% recommended company!','Alex Pittman','','publish','closed','closed','','alex-pittman','','','2017-01-19 13:56:30','2017-01-19 13:56:30','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=927',0,'reviews','',0),(928,1,'2017-01-19 14:00:03','2017-01-19 14:00:03','I hired Chicagoland Remodeling for a small project of remodeling our bathroom. Everything went smooth and clear. Having saw that I hired them again for basement remodeling and I will call for them again and again whenever will have any other project to do. They are simply best in town if you are looking for good remodeling service. Thanks!','Rick Flores','','publish','closed','closed','','rick-flores','','','2017-01-19 14:00:03','2017-01-19 14:00:03','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=928',0,'reviews','',0),(929,1,'2017-01-19 14:09:21','2017-01-19 14:09:21','Highest quality remodeling service only at Chicagoland Remodeling! They made my old home look like a palace now. Professional workers who came were very kind and agreed to make changes even after the project was accepted. Wally and Iza helped us choose the best solutions for our home. As for total remodeling of almost whole building they managed to finish really fast! Recommended home remodeling contractors.','Randal Parker','','publish','closed','closed','','randal-parker','','','2017-01-19 14:09:21','2017-01-19 14:09:21','',0,'https://chicagolandremodeling.com/?post_type=reviews&#038;p=929',0,'reviews','',0),(951,0,'2017-02-03 04:16:04','2017-02-03 04:16:04','799','Contact Us','','publish','closed','closed','','contact-us-20','','','2017-02-03 04:16:04','2017-02-03 04:16:04','',0,'https://chicagolandremodeling.com/contact-us-20/',0,'wr_cfsb_post_type','',0),(938,0,'2017-01-30 16:40:38','2017-01-30 16:40:38','799','Contact Us','','publish','closed','closed','','contact-us-19','','','2017-01-30 16:40:38','2017-01-30 16:40:38','',0,'https://chicagolandremodeling.com/contact-us-19/',0,'wr_cfsb_post_type','',0),(942,1,'2017-01-31 17:34:18','2017-01-31 17:34:18','/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.row{\n display:block;\n}\n\n.col-sm-6{\nfloat:left;\nwidth:45%;\n}\n\n.col-sm-5{\nfloat:left;\nwidth:20%;\n}\n\n.col-sm-4{\nfloat:left;\nwidth:20%;\n}\n\n.col-sm-12{\nwidth:50%;\n}\n#BlockFeatured {\ntext-align: center;\n}\n#BlockFeatured h5 {\nfont-size: 18px;\ntext-transform: uppercase;\nline-height: 1.4em;\nfont-weight: 700;\nmargin-bottom: 10px;\n}\n#BlockFeatured i {\ncolor:#5987c6;}\n.input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email{\nbackground-color:#fff;\n}\n.wpcf7-validates-as-required.wpcf7-validates-as-email{\n;background-color:#fff;\n}\n\n.wpcf7-validates-as-email{\n;background-color:#fff;\n}\n\n\n.wpcf7-textarea{\nwidth:400px;\n}\n\n.namelb{\nwidth:20px;\n}\n.cr-row {\nmargin:-15px;\n\n}\n.cr-col-sm-4, .cr-col-md-4 {\nfloat: left;\nwidth: 33.333%;\npadding: 15px;\nbox-sizing: border-box;\n}\n.cr-col-sm-6 {\nfloat: left;\nwidth: 50%;\npadding: 15px;\nbox-sizing: border-box;\n}\n.flex {\ndisplay: flex;\nmargin-bottom: 30px;\n}\n.ThreeColumn {\nmargin-left:0;\nmargin-right: 0;\n}\n.ThreeColumn h1 {\ntext-align: center;\n}\n.ThreeColumn .ColumnOne, .ThreeColumn .ColumnThree {\nbackground: #ECECEC;\n}\n#content .ThreeColumn .ColumnTwo {\nbackground: #5B5B5B;\n}\n#content .ThreeColumn .ColumnTwo h1, #content .ThreeColumn .ColumnTwo h2,\n#content .ThreeColumn .ColumnTwo h3, #content .ThreeColumn .ColumnTwo p {\ncolor: #fff!important;\n}\n\n/* flex table module one color */\n.features.flex-table img {\nmax-height: 120px; width:auto}\n.flex-table h2 {\nfont-size: 26px;\nline-height: 1.3em;\npadding-top: 25px;\n}\n.flex-table h3 {\nfont-size: 18px;\nline-height: 1.3em;\npadding: 15px 0;\n}\n.flex-table p {\ntext-align: justify;\n}\n.flex-table {margin: 30px 0 50px;}\n.dark h2, .dark p, .dark h3, .light h2, .light h3, .light p {\ncolor: #000;\n}\n.OneThree {\nwidth: 33.333%;\npadding: 0 25px;\nbox-sizing: border-box;\nborder-left: 5px solid #fff;\nborder-right: 5px solid #fff;\n\n}\n.flex-table {\ndisplay: flex;\nflex-direction: row;\nflex-wrap: wrap;\n}\n.dark {\nbackground: #fff;\n}\n.light {\nbackground:#fff;\n}\n@media (max-width:767px){\n#One {order: 1}\n#Two {order: 4; border-top: 10px solid #fff}\n#Three {order: 7}\n#Four {order: 2}\n#Five {order: 5}\n#Six {order: 8}\n#Seven {order: 3}\n#Eight {order: 6; border-bottom: 10px solid #fff}\n#Nine {order: 9}\n.OneThree {width:100%; min-width:100%;border-left: 0px solid #fff;\nborder-right: 0px solid #fff;}\n.cr-col-sm-6, .cr-col-sm-4 {\nwidth: 100%}\n}\n\n@media (max-width: 991px){\n.cr-col-md-4 {\nwidth: 100%;\n}\n.ThreeColumn.flex {\nflex-flow: column;\n}\n}\n\n@media (min-width:992px) {\n\n#content .ThreeColumn .ColumnOne h1 {\nmargin-bottom: 40px;\n}\n#content .ThreeColumn .ColumnThree h1 {\nmargin-bottom: 70px;\n}\n#content .ThreeColumn .ColumnThree h2 {\nmargin-bottom: 37px;\n}\n}\n\n@media (max-width: 1500px){\n	#branding {\n    flex-flow: column;\n}\n	#branding #callus {\n    margin-top: -10px;\n    margin-bottom: 10px;\n}\n	#branding #access2 .menu-header {\n    justify-content: center;\n    display: flex;\n}\n	#access2 ul#menu-secondary > li {\n    text-align: center;\n		max-width: 120px;\n}\n	#access2 {\n    width: 100% !important;\n}\n	.rating {\n    text-align: center;\n}\n}\n.column3{\nwidth: 30%;\ndisplay: inline-block;\nmargin: 0 10px 80px 10px;\n}\n\n.title-feature {\ntext-align: center;\nfont-weight: 700; \nfont-size: 1.4rem;\nmargin-bottom: 0.9rem;\n}\n.img-responsive{\nwidth: 50%;\nheight: auto;\ndisplay: block; \nmargin: 0 auto;\npadding-bottom: 30px;\n}\n.postid-959 #footer {\n    position: relative;\n    top: 90px;\n    margin-bottom: 20px;\n}\n.photo {\n    position: absolute;\n    right: -319px;\n    width: 300px;\n    top: 455px;\n}\n.postid-250 #footer{\n	top: 40px;\n	position: relative;\n}\n\n\n.tp-static-layer form {\n    width: 270px;\n    max-width: 270px;\n    min-width: 270px;\n    padding: 25px!important;\n    background: rgba(231, 231, 231, 0.5) !important;\n    box-shadow: 0px 0px 10px #0000008f;\n	    display: inline-block;\n}\n\n.tp-static-layer input[type=\"text\"], .tp-static-layer input[type=\"email\"], .tp-static-layer input[type=\"phone\"], .tp-static-layer textarea {\n    background: #fff!important;\n    border-top: 0;\n    border-right: 0;\n    border-bottom: 0;\n    border-left: 0;\n    color: #000;\n    font-size: 15px!important;\n		width: calc(100% - 20px) !important;\n		padding:5px 10px!important;\n}\n\n.quick-quote1 input[type=\"text\"],\n.quick-quote1 input[type=\"email\"],\n.quick-quote1 input[type=\"phone\"], \n.quick-quote1 textarea{\n	 	background: #fff!important;\n    color: #000;\n    font-size: 15px!important;\n		width: calc(100% - 30px) !important;\n		padding:10px 15px!important;\n	border:1px solid #ccc!important;\n}\n\n.tp-static-layer input[type=\"text\"], .tp-static-layer input[type=\"email\"], .tp-static-layer input[type=\"phone\"] {\n    margin-bottom: 10px !important;\n}\n\n.quick-quote {\n    margin: 0!important;\n}\n\n.tp-static-layer input[type=\"text\"], .tp-static-layer input[type=\"email\"] {\n    width: 100%;\n    height: 40px;\n}\n\n.quick-quote .col-xs-12 {\n	padding:0px!important;\n    width: 100%;\n    display: block;	\n}\n\n.col-xs-12.textarea-bottom {\n	padding:0px!important;\n}\n\n.tp-static-layer form input[type=\"submit\"] {\n    color: rgb(193, 14, 14)!important;\n    padding: 5px 34px!important;\n    background: #333333!important;\n    border-radius: 0px;\n}\n\n.tp-static-layer form input[type=\"submit\"] {\n    font-size: 15px !important;\n    text-align: center !important;\n    padding: 12px 24px!important;\n		border:none!important;\n	color: #fff !important;\n    background: #333!important;\n	margin-top:10px!important;\n	line-height: 25px!important;\n	margin-bottom:0px!important;\n}\n\n.btnnn input {\n    width: 100% !important;\n    color: #fff !important;\n    background: #14878e!important;\n	border:none!important;\n}\n\n.tp-static-layer form input[type=\"submit\"]:hover {\n    color: #fff !important;\n    background: #5987c6!important;\n	border:none!important;\n}\n\n.slider-form.contact-form-box input[type=\"text\"], .slider-form.contact-form-box input[type=\"email\"], .slider-form.contact-form-box input[type=\"phone\"], .slider-form.contact-form-box textarea  {\n   background: #fff;\n    border-top: 0;\n    border-right: 0;\n    border-bottom: 0;\n    border-left: 0;\n    color: #000;\n    font-size: 15px!important;\n	margin-bottom:10px;\n}\n\n.slider-form.contact-form-box input[type=\"submit\"] {\n    color: rgb(26, 208, 219)!important;\n    padding: 5px 34px!important;\n    background: #333!important;\n    border-radius: 0px;\n}\n\n.tp-static-layer br {\n	display:none!important;\n}\n\n.text-center-align {\n	text-align:center!important;	\n	padding: 5px 5px 5px 5px!important;\n	color: rgb(255, 255, 255); \n	margin: 0px 0px 10px!important;\n	font-weight: 600; \n	background-color: #5987c6; \n	text-align: center; \n	line-height: 35px; \n	border-width: 0px; \n	padding: 0px; \n	letter-spacing: 0px; \n	font-size: 32px;\n}\n\n.hide-on-deskop{\n	display:none;\n}\n@media (max-width:1040px){\n    .hide-on-deskop{\n        display:block;\n	    max-width: 100%;\n        margin: 0 auto;\n	}\n}\n.quick-quote1 {\n	display:none;\n}\n\n.quick-quote1 .wpcf7 .quick-quote .col-xs-12 {\n	padding-bottom:10px!important;\n}\n\n.quick-quote1 .wpcf7 .quick-quote .col-xs-12 input[type=\"submit\"] {\n    font-size: 15px !important;\n    text-align: center !important;\n    padding: 12px 24px!important;\n		border:none!important;\n	color: #fff !important;\n    background: #333!important;\n	margin-top:10px!important;\n	line-height: 25px!important;\n	margin-bottom:0px!important;\n}\n\n.quick-quote1 .wpcf7 .quick-quote .col-xs-12 input[type=\"submit\"]:hover {\n    color: #fff !important;\n    background: #5987c6!important;\n	border:none!important;\n}\n\ndiv.wpcf7 .ajax-loader {\n	position:absolute;\n}\n\n@media (max-width:767px) {\n	#container {\n		margin-top: 70px!important;	\n	}\n	.hide-on-deskop {\n    padding-bottom: 0px!important;\n		position: relative;\n    z-index: 2;\n	}\n}\n\n.phoneContent {\n	  bottom: 85px!important;\n    right: 0!important;\n}\n.newh34{\n	font-size:15px !important;\n}\n@media (min-width:1024px){\n	.img488{\n		height:400px;\n		object-fit:cover;\n		width:100%;\n	}\n}','chimod','','publish','closed','closed','','chimod','','','2020-09-06 14:41:01','2020-09-06 14:41:01','',0,'https://chicagolandremodeling.com/chimod/',0,'custom_css','',0),(958,1,'2017-02-08 02:17:08','2017-02-08 02:17:08','','','','inherit','closed','closed','','bathroom_home','','','2017-11-13 13:08:18','2017-11-13 13:08:18','',956,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom_home.jpg',0,'attachment','image/jpeg',0),(959,1,'2017-02-08 02:19:15','2017-02-08 02:19:15','<p style=\"text-align: justify;\">The kitchen is the heart of the home and today\'s kitchen is a central room in our lives. Remodeling is a great investment and one that appreciates the value of your home. When it\'s time to remodel, Chicagoland Remodeling will walk you through the process, listening to your vision and offering expert advice.</p>\r\n<p style=\"text-align: justify;\">Our team will ask the important questions such as Do you like to cook? How much counter space and storage do you need? Do you entertain often? What sort of food do you like to prepare?</p>\r\n<p style=\"text-align: justify;\">Then, working together, we will create a plan to help you achieve your kitchen dream. Whether it is demolishing your old kitchen completely or working to give it a much needed facelift, Chicagoland Remodeling will help create that perfect balance between functionality and flow, creating an efficient custom workspace that reflects your family\'s needs.</p>\r\n<h2>Why Choose Our Kitchen Work?</h2>\r\n<p style=\"text-align: justify; margin-bottom: 70px;\">For the best remodeling, Chicagoland Remodeling has you covered. The kitchen is an integral part of every home, no matter how avid of a cook you are. Whether actively cooking and baking or just needing a place to store food, the kitchen is the place to do it. And we all need to eat! As such, kitchen remodeling is an excellent way to make your outdated or disliked kitchen a space you love.<br />\r\nChicagoland Remodeling has years of experience helping create a kitchen that our clients’ unique needs: from more counter space to more storage space. We have a highly skilled staff, fair prices, and amazing customer service.<br />\r\nChicagoland Remodeling pride ourselves on completing each job in a timely fashion, so that you can continue on with your everyday life (with a brand new kitchen). Thus far, we have a 100% satisfaction rate, and we aim to keep it that way. Don’t hesitate to give us a call. We would love to discuss your options and desires for your updated kitchen. We are experienced with flooring, lighting, cabinets, appliances, backsplashes, and more. Your dream kitchen is coming your way.</p>\r\n<div class=\"photo\"><img class=\"alignnone size-medium wp-image-1005\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-1006\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-1007\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></div>','Kitchen','','publish','closed','closed','','kitchen-remodeling','','','2021-02-03 19:44:45','2021-02-03 19:44:45','',0,'https://chicagolandremodeling.com/?p=959',0,'post','',0),(960,1,'2017-02-08 02:18:55','2017-02-08 02:18:55','','','','inherit','closed','closed','','kitchen_home','','','2017-11-13 13:07:56','2017-11-13 13:07:56','',959,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen_home.jpg',0,'attachment','image/jpeg',0),(956,1,'2017-02-08 02:12:32','2017-02-08 02:12:32','<p style=\"text-align: justify;\">Refreshing the look of your bathroom and improving its style and function is a smart and easy way to add lasting value to your home. Whether you\'re planning to design your dream bath or simply update your existing one, Chicagoland Remodeling can help guide you through the remodel process.</p>\r\n<p style=\"text-align: justify;\">Working with your must haves, our experts can walk you through the selection of tile, furniture, fixtures, and flooring &amp; everything you need to create your personal space. Together we will design a space that fits your lifestyle and your budget.</p>\r\n<p style=\"text-align: justify;\">Bathroom remodeling can completely transform your home. But remodeling of any kind can be an overwhelming process. While the contractors will ultimately complete the work, the inspiration must come from you. So, how do you plan for your remodeling job? Today, we will offer you a few helpful tips.</p>\r\n<h2>How to Plan Your Remodeling</h2>\r\n<ul>\r\n	<li><b>Determine why you are remodeling.</b> <span style=\"font-weight: 400;\">What exactly are you trying to accomplish with the remodel? Do you need a décor chance? Is the bathroom too small for your current needs? </span></li>\r\n</ul>\r\n<ul>\r\n	<li><b>Determine what will help you accomplish your goals.</b><span style=\"font-weight: 400;\">Do you want a shower stall instead of a tub? Do you need a simple tile or change of wall color? Do you need updated, eco-friendly fixtures? </span></li>\r\n</ul>\r\n<ul>\r\n	<li><b>Create a budget.</b> <span style=\"font-weight: 400;\">Know how much you are willing and able to spend on this remodeling job. </span></li>\r\n</ul>\r\n<ul>\r\n	<li><b>Find a contractor in your area.</b> <span style=\"font-weight: 400;\">Research and interview several contractors in your area. Get quotes, check reviews, and see who you communicate with best. From there, you can work together to create your plan. </span></li>\r\n</ul>\r\n<ul>\r\n	<li><b>Enjoy your new bathroom!</b></li>\r\n</ul>\r\n<p style=\"font-weight: 400; text-align: justify;\">One of the contractors homeowners have grown to trust is Chicagoland Remodeling. Our remodeling jobs are nothing short of amazing (our customers’ words, not ours). But don’t just take our word for it. Take a look at our photo gallery for examples of our work. We know every bathroom is unique, so we do our best to fit each customer’s individual needs with a 100% custom bathroom.</p>\r\n<p>&nbsp;</p>\r\n<div class=\"photo\"><img class=\"alignnone size-medium wp-image-1009\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-1011\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-1010\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></div>','Bathroom','','publish','closed','closed','','bathroom-remodeling','','','2021-02-03 19:37:45','2021-02-03 19:37:45','',0,'https://chicagolandremodeling.com/?p=956',0,'post','',0),(962,1,'2017-02-08 02:22:36','2017-02-08 02:22:36','','Kitchen','','publish','closed','closed','','kitchen-remodeling','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=962',6,'nav_menu_item','',0),(963,1,'2017-02-08 02:22:36','2017-02-08 02:22:36','','Bathroom','','publish','closed','closed','','bathroom-remodeling','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=963',5,'nav_menu_item','',0),(978,0,'2017-02-09 13:04:54','2017-02-09 13:04:54','799','Contact Us','','publish','closed','closed','','contact-us-21','','','2017-02-09 13:04:54','2017-02-09 13:04:54','',0,'https://chicagolandremodeling.com/contact-us-21/',0,'wr_cfsb_post_type','',0),(979,1,'2017-02-09 13:41:39','2017-02-09 13:41:39','<p>[Best_Wordpress_Gallery id=\"19\" gal_title=\"bathroom\"]</p>\r\n<p>\r\n<style>\r\n#container2{<br />\r\ndisplay:none;<br />\r\n}<br />\r\n</style>\r\n</p>','bathroom gallery','','publish','closed','closed','','bathroom-gallery','','','2021-02-03 19:03:10','2021-02-03 19:03:10','',0,'https://chicagolandremodeling.com/?page_id=979',0,'page','',0),(981,1,'2017-02-09 13:42:40','2017-02-09 13:42:40','<p>[Best_Wordpress_Gallery id=\"20\" gal_title=\"kitchen\"]</p>\r\n<p>\r\n<style>\r\n#container2{<br />\r\ndisplay:none;<br />\r\n}<br />\r\n</style>\r\n</p>','kitchen gallery','','publish','closed','closed','','kitchen-gallery','','','2021-02-03 18:38:48','2021-02-03 18:38:48','',0,'https://chicagolandremodeling.com/?page_id=981',0,'page','',0),(983,1,'2017-02-09 13:43:38','2017-02-09 13:43:38','<p>[Best_Wordpress_Gallery id=\"21\" gal_title=\"living room\"]</p>\r\n<p>\r\n<style>\r\n#container2{<br />\r\ndisplay:none;<br />\r\n}<br />\r\n</style>\r\n</p>','living room gallery','','publish','closed','closed','','living-room-gallery','','','2021-02-03 18:40:22','2021-02-03 18:40:22','',0,'https://chicagolandremodeling.com/?page_id=983',0,'page','',0),(985,1,'2017-02-09 13:46:19','2017-02-09 13:46:19','','Gallery','','publish','closed','closed','','gallery','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=985',11,'nav_menu_item','',0),(986,1,'2017-02-09 13:46:19','2017-02-09 13:46:19','','Living room','','publish','closed','closed','','living-room','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=986',14,'nav_menu_item','',0),(987,1,'2017-02-09 13:46:19','2017-02-09 13:46:19','','Kitchen','','publish','closed','closed','','kitchen','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=987',12,'nav_menu_item','',0),(988,1,'2017-02-09 13:46:19','2017-02-09 13:46:19','','Bathroom','','publish','closed','closed','','bathroom','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=988',13,'nav_menu_item','',0),(1070,1,'2017-02-23 21:33:27','0000-00-00 00:00:00','','contact-form','','draft','closed','closed','','','','','2017-02-23 21:33:27','2017-02-23 21:33:27','',0,'https://chicagolandremodeling.com/?post_type=wr_cf_post_type&#038;p=1070',0,'wr_cf_post_type','',0),(1078,1,'2017-02-23 21:49:44','2017-02-23 21:49:44','','Form Name','','publish','closed','closed','','form-name','','','2017-02-23 21:49:44','2017-02-23 21:49:44','',0,'https://chicagolandremodeling.com/smuzform/form-name/',0,'smuzform','',0),(1090,1,'2017-02-27 11:39:58','2017-02-27 11:39:58','','','','inherit','closed','closed','','living-2','','','2017-11-13 12:58:47','2017-11-13 12:58:47','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/living.jpg',0,'attachment','image/jpeg',0),(1091,1,'2017-02-27 11:40:04','2017-02-27 11:40:04','','','','inherit','closed','closed','','bahtrom','','','2017-11-13 12:57:11','2017-11-13 12:57:11','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bahtrom.jpg',0,'attachment','image/jpeg',0),(1092,0,'2017-02-27 17:49:47','2017-02-27 17:49:47','799','Contact Us','','publish','closed','closed','','contact-us-28','','','2017-02-27 17:49:47','2017-02-27 17:49:47','',0,'https://chicagolandremodeling.com/contact-us-28/',0,'wr_cfsb_post_type','',0),(1096,0,'2017-02-28 03:06:42','2017-02-28 03:06:42','799','Contact Us','','publish','closed','closed','','contact-us-29','','','2017-02-28 03:06:42','2017-02-28 03:06:42','',0,'https://chicagolandremodeling.com/contact-us-29/',0,'wr_cfsb_post_type','',0),(1105,1,'2017-03-01 15:53:21','2017-03-01 15:53:21','<label> <p style=\"color:#fff;\">Your Name (required) </p>\r\n    [text* your-name] </label> \r\n\r\n<label> <p style=\"color:#fff;\">Your Email (required) </p>\r\n    [email* your-email] </label> \r\n\r\n<label> <p style=\"color:#fff;\">Your Message </p>\r\n    [textarea your-message] </label>\r\n[submit \"Send\"]\n1\nchicagolandremodeling.com quote\n[your-name] <wordpress@chicagolandremodeling.com>\nkacper@infosystrade.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [your-email]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Untitled','','publish','closed','closed','','untitled','','','2020-05-19 23:44:28','2020-05-19 23:44:28','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=1105',0,'wpcf7_contact_form','',0),(8136,1,'2020-01-28 11:09:43','2020-01-28 11:09:43','<div class=\"row mb20 quick-quote\">\r\n<h2 class=\"text-center-align\"><span style=\"color: rgb(255, 255, 255); text-transform: uppercase; font-size: 20px; transition: none 0s ease 0s; text-align: inherit; line-height: 40px; border-width: 0px; margin: 0px; padding: 0px; letter-spacing: 0px; font-weight: 600;\">Get a free quote</span></h2>\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[text* your-name Placeholder \"Your name\"]\r\n	</div>\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[email* your-email Placeholder \"Your email\"]\r\n	</div>\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[text your-phone Placeholder \"Phone number\"]\r\n	</div>\r\n</div>\r\n<div class=\"row quick-quote\">\r\n	<div class=\"col-xs-12 textarea-bottom\">\r\n		[textarea your-message x4 class:qtextarea placeholder \"Your message\" ]\r\n	</div>\r\n</div>\r\n\r\n\r\n<div class=\"row mb20 btnnn quick-quote\">\r\n	<div class=\"col-xs-12\">\r\n		[submit class:btn \"SEND\" ]\r\n	</div>\r\n</div>\n1\nchicagolandremodeling.com quote\n[your-name] <wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [your-name] <[your-email]>\r\nPhone: [your-phone]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [your-email]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Quick Quote Slider','','publish','closed','closed','','contact-form-1_copy-2','','','2020-07-29 08:36:02','2020-07-29 08:36:02','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=8136',0,'wpcf7_contact_form','',0),(1111,1,'2017-03-01 16:13:59','2017-03-01 16:13:59','<div style=\"text-align:center;\">\r\n<label> <p style=\"color:#fff;\">Your Name (required)</p>\r\n[text text-597 your-name] </label>\r\n\r\n<label> <p style=\"color:#fff;\">Your Email (required)</p>\r\n[email email-976 your-email]\r\n </label>\r\n\r\n<label> <p style=\"color:#fff;\">Phone</p>\r\n    [tel tel-679] </label>\r\n\r\n\r\n<label> <p style=\"color:#fff;\">Your Message</p>\r\n    [textarea textarea-473 your-message] </label>\r\n\r\n[submit \"Send\"]\r\n</div>\n1\nchicagolandremodeling.com quote\n<wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [text-597] <[email-976]>\r\nPhone: [tel-679]\r\nMessage Body:\r\n[textarea-473]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\n\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','contactform','','publish','closed','closed','','contactform','','','2020-05-19 23:42:46','2020-05-19 23:42:46','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=1111',0,'wpcf7_contact_form','',0),(1113,1,'2017-03-01 16:26:28','2017-03-01 16:26:28','<div class=\"firstlab\">\r\n<label> <p style=\"color:#fff;\">Your Name (required)</p>\r\n    [text* class:namelb your-name] </label> </div>\r\n<div class=\"firstlab\">\r\n<label> <p style=\"color:#fff;\">Your Email (required)</p>\r\n    [email* class:emaillb your-email] </label> </div>\r\n<div class=\"xyza\">\r\n<label> <p style=\"color:#fff;\">Phone</p>\r\n    [tel* tel-404] </label></div>\r\n\r\n<label> <p style=\"color:#fff;\">Your Message</p>\r\n    [textarea your-message] </label>\r\n[submit \"Send\"]\n1\nchicagolandremodeling.com quote\nCR Quote <wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [class:namelb] <[class:emaillb]>\r\nPhone: [tel-404]\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [class:emaillb]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','contactform2','','publish','closed','closed','','contactform2','','','2020-05-19 23:43:07','2020-05-19 23:43:07','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=1113',0,'wpcf7_contact_form','',0),(1139,1,'2017-04-26 19:13:37','2017-04-26 19:13:37','','','','inherit','closed','closed','','dsc05754','','','2017-11-13 12:58:02','2017-11-13 12:58:02','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/DSC05754.jpg',0,'attachment','image/jpeg',0),(1140,1,'2017-04-26 19:13:38','2017-04-26 19:13:38','','','','inherit','closed','closed','','service-2','','','2017-11-13 12:55:22','2017-11-13 12:55:22','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/service-2.jpg',0,'attachment','image/jpeg',0),(1141,1,'2017-04-26 19:18:42','2017-04-26 19:18:42','','','','inherit','closed','closed','','0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior','','','2017-11-13 12:51:38','2017-11-13 12:51:38','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg',0,'attachment','image/jpeg',0),(1149,1,'2017-04-28 11:10:46','2017-04-28 11:10:46','','','','inherit','closed','closed','','cr1','','','2017-11-13 12:45:18','2017-11-13 12:45:18','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/cr1.jpg',0,'attachment','image/jpeg',0),(1179,0,'2017-05-01 23:40:42','2017-05-01 23:40:42','799','Contact Us','','publish','closed','closed','','contact-us-31','','','2017-05-01 23:40:42','2017-05-01 23:40:42','',0,'https://chicagolandremodeling.com/contact-us-31/',0,'wr_cfsb_post_type','',0),(1187,1,'2017-05-30 09:33:36','2017-05-30 09:33:36','','','','inherit','closed','closed','','customcherrywoodoffice','','','2017-11-13 12:45:48','2017-11-13 12:45:48','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/05/customCherryWoodOffice.jpg',0,'attachment','image/jpeg',0),(1218,0,'2017-06-19 19:32:57','2017-06-19 19:32:57','799','Contact Us','','publish','closed','closed','','contact-us-35','','','2017-06-19 19:32:57','2017-06-19 19:32:57','',0,'https://chicagolandremodeling.com/contact-us-35/',0,'wr_cfsb_post_type','',0),(8173,1,'2020-04-21 07:45:09','2020-04-21 07:45:09','','home remodeling','','inherit','closed','closed','','home-remodeling','','','2020-04-21 07:45:09','2020-04-21 07:45:09','',8170,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling.jpg',0,'attachment','image/jpeg',0),(1214,0,'2017-06-02 21:40:47','2017-06-02 21:40:47','799','Contact Us','','publish','closed','closed','','contact-us-32','','','2017-06-02 21:40:47','2017-06-02 21:40:47','',0,'https://chicagolandremodeling.com/contact-us-32/',0,'wr_cfsb_post_type','',0),(1215,0,'2017-06-03 14:13:11','2017-06-03 14:13:11','799','Contact Us','','publish','closed','closed','','contact-us-33','','','2017-06-03 14:13:11','2017-06-03 14:13:11','',0,'https://chicagolandremodeling.com/contact-us-33/',0,'wr_cfsb_post_type','',0),(1216,0,'2017-06-05 14:41:54','2017-06-05 14:41:54','799','Contact Us','','publish','closed','closed','','contact-us-34','','','2017-06-05 14:41:54','2017-06-05 14:41:54','',0,'https://chicagolandremodeling.com/contact-us-34/',0,'wr_cfsb_post_type','',0),(1230,1,'2017-07-18 15:36:00','2017-07-18 15:36:00','','','','inherit','closed','closed','','quality-badge','','','2017-10-31 17:25:10','2017-10-31 17:25:10','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg',0,'attachment','image/jpeg',0),(1235,0,'2017-07-22 05:02:09','2017-07-22 05:02:09','799','Contact Us','','publish','closed','closed','','contact-us-36','','','2017-07-22 05:02:09','2017-07-22 05:02:09','',0,'https://chicagolandremodeling.com/contact-us-36/',0,'wr_cfsb_post_type','',0),(1247,0,'2017-07-31 21:46:39','2017-07-31 21:46:39','799','Contact Us','','publish','closed','closed','','contact-us-37','','','2017-07-31 21:46:39','2017-07-31 21:46:39','',0,'https://chicagolandremodeling.com/contact-us-37/',0,'wr_cfsb_post_type','',0),(1259,0,'2017-08-07 17:02:09','2017-08-07 17:02:09','799','Contact Us','','publish','closed','closed','','contact-us-38','','','2017-08-07 17:02:09','2017-08-07 17:02:09','',0,'https://chicagolandremodeling.com/contact-us-38/',0,'wr_cfsb_post_type','',0),(1364,1,'2017-11-20 12:39:54','2017-11-20 12:39:54',' ','','','publish','closed','closed','','1364','','','2021-02-04 12:34:59','2021-02-04 12:34:59','',0,'https://chicagolandremodeling.com/?p=1364',3,'nav_menu_item','',0),(1326,0,'2017-10-11 16:52:28','2017-10-11 16:52:28','799','Contact Us','','publish','closed','closed','','contact-us-43','','','2017-10-11 16:52:28','2017-10-11 16:52:28','',0,'https://chicagolandremodeling.com/contact-us-43/',0,'wr_cfsb_post_type','',0),(1331,1,'2017-10-20 12:37:59','2017-10-20 12:37:59','','','','inherit','closed','closed','','target','','','2017-10-31 17:24:25','2017-10-31 17:24:25','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/target.png',0,'attachment','image/png',0),(1355,1,'2017-11-17 15:32:45','2017-11-17 15:32:45','','bathroom-photos-10','','inherit','closed','closed','','bathroom-photos-10','','','2017-11-17 15:32:45','2017-11-17 15:32:45','',1354,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg',0,'attachment','image/jpeg',0),(1346,1,'2017-11-06 12:53:21','2017-11-06 12:53:21','[Best_Wordpress_Gallery id=\"23\" gal_title=\"gallery\"]','gallery','','publish','closed','closed','','gallery','','','2017-11-06 12:53:21','2017-11-06 12:53:21','',0,'https://chicagolandremodeling.com/bwg_gallery/gallery/',0,'bwg_gallery','',0),(1347,1,'2017-11-06 12:53:22','2017-11-06 12:53:22','[Best_Wordpress_Gallery id=\"24\" gal_title=\"bathroom\"]','bathroom','','publish','closed','closed','','bathroom','','','2017-11-06 12:53:22','2017-11-06 12:53:22','',0,'https://chicagolandremodeling.com/bwg_gallery/bathroom/',0,'bwg_gallery','',0),(1348,1,'2017-11-06 12:53:23','2017-11-06 12:53:23','[Best_Wordpress_Gallery id=\"25\" gal_title=\"kitchen\"]','kitchen','','publish','closed','closed','','kitchen','','','2017-11-06 12:53:23','2017-11-06 12:53:23','',0,'https://chicagolandremodeling.com/bwg_gallery/kitchen/',0,'bwg_gallery','',0),(1349,1,'2017-11-06 12:53:25','2017-11-06 12:53:25','[Best_Wordpress_Gallery id=\"26\" gal_title=\"living room\"]','living room','','publish','closed','closed','','living-room','','','2017-11-06 12:53:25','2017-11-06 12:53:25','',0,'https://chicagolandremodeling.com/bwg_gallery/living-room/',0,'bwg_gallery','',0),(1350,0,'2017-11-09 06:38:33','2017-11-09 06:38:33','799','Contact Us','','publish','closed','closed','','contact-us-49','','','2017-11-09 06:38:33','2017-11-09 06:38:33','',0,'https://chicagolandremodeling.com/contact-us-49/',0,'wr_cfsb_post_type','',0),(1351,0,'2017-11-12 16:44:47','2017-11-12 16:44:47','799','Contact Us','','publish','closed','closed','','contact-us-50','','','2017-11-12 16:44:47','2017-11-12 16:44:47','',0,'https://chicagolandremodeling.com/contact-us-50/',0,'wr_cfsb_post_type','',0),(1352,0,'2017-11-13 15:48:52','2017-11-13 15:48:52','799','Contact Us','','publish','closed','closed','','contact-us-51','','','2017-11-13 15:48:52','2017-11-13 15:48:52','',0,'https://chicagolandremodeling.com/contact-us-51/',0,'wr_cfsb_post_type','',0),(1327,0,'2017-10-17 18:37:55','2017-10-17 18:37:55','799','Contact Us','','publish','closed','closed','','contact-us-44','','','2017-10-17 18:37:55','2017-10-17 18:37:55','',0,'https://chicagolandremodeling.com/contact-us-44/',0,'wr_cfsb_post_type','',0),(1319,0,'2017-09-26 18:02:29','2017-09-26 18:02:29','799','Contact Us','','publish','closed','closed','','contact-us-41','','','2017-09-26 18:02:29','2017-09-26 18:02:29','',0,'https://chicagolandremodeling.com/contact-us-41/',0,'wr_cfsb_post_type','',0),(1320,0,'2017-10-02 11:50:16','2017-10-02 11:50:16','799','Contact Us','','publish','closed','closed','','contact-us-42','','','2017-10-02 11:50:16','2017-10-02 11:50:16','',0,'https://chicagolandremodeling.com/contact-us-42/',0,'wr_cfsb_post_type','',0),(1354,1,'2017-11-17 15:33:44','2017-11-17 15:33:44','<p><strong>Bathroom makover </strong>are incredibly exciting. They are one of the most popular home remodeling services performed in Chicago and across the country, and for good reason. Bathrooms can easily become outdated, so a remodel can help bring your bathroom back to the modern era. Today, we will discuss a few tips to help the remodeling contractors Chicago homeowners hire for their remodeling on track!</p>\r\n<p><strong>1.Plan your budget.</strong> One of the first steps is knowing how much you can afford to spend on your bathroom. Come up with a price range you are comfortable with, and give yourself a little wiggle room. While going through this process, familiarize yourself with how much  remodel usually costs. It may determine how big a remodeling job you have done.<br />\r\n<strong>2.Plan a lighting scheme.</strong> It seems obvious, but lighting is one of the most frequently forgotten or overlooked aspects of a remodel. Make sure you include enough light that you can perform your everyday bathroom routines. Even better, consider energy efficient lighting!<br />\r\n<strong>3.Know standard bathroom dimensions.</strong> Are you keeping your current bathroom footprint? Or are you expanding? Knowing typical bathroom dimensions can help keep you on track.<br />\r\n<strong>4.Plan your sink’s height.</strong> Sinks can be placed at a variety of heights. Find what works best for you and your family. You can go with a standard height, but you can always raise or lower that if your height is different than average.<br />\r\n<strong>5.Double check your tile size.</strong> Make sure that you purchase enough tile to complete the job!</p>\r\n<p>Make sure to consult contractors residents trust for your bathroom remodeling.</p>','5 Design Tips','','publish','closed','closed','','5-design-tips-know-remodeling-bathroom','','','2021-02-04 12:33:50','2021-02-04 12:33:50','',0,'https://chicagolandremodeling.com/?p=1354',0,'post','',0),(7954,1,'2018-10-30 01:18:25','2018-10-30 01:18:25','<p>Kitchen remodeling is one of the most popular home renovation projects in the country. Homeowners spend more money on this room than any other part of the house. The reason for this is simple: remodeling provides you with a great return on your investment – on average, you stand to recover about 60% of your investment. The first step in any successful remodeling is to spend several months planning. Impulsive renovations are far less likely to leave you satisfied and probably going to be less cost-effective as well. Consider foot traffic, kitchen usage patterns, and choose all your fixtures and materials.</p>\r\n<h2>A Word About Appliances During Your Remodel</h2>\r\n<p>One of the biggest money-wasters during a kitchen remodel is changing up the location of your appliances. Moving plumping and electrical outlets can vastly inflate the price of your renovation, so try to keep your appliances, fixtures, and walls in the same location. On the same note, avoid going crazy with luxury appliances. While everyone wants a nice stove, it’s important to be realistic. Unless you’re a professional-grade cook, a standard range will be fine. Spend this kind of money on long-term options which add value like cabinets and flooring.</p>\r\n<h2>Choose High-Quality Materials and Good Lighting</h2>\r\n<p>Good lighting is a great way to spend your remodeling dollars. Creative use of under-cabinet lighting and extra fixtures can make your kitchen look better, bigger, and brighter without blowing up your budget. Under-cabinet lighting is an essential option for any kitchen, and pendant lights or recessed lights are also great options to brighten things up in there. Ambient lighting with dimmer switches is great for creating an attractive mood. Finally, even if you’re on a tight budget, avoid choosing budget materials. Quality should always be a primary consideration. Choose solid-surface countertops and products with long-lasting warranties. It might cost more up front, but the quality is worth it.</p>','Planning Your Ideal Kitchen','','publish','closed','closed','','planning-your-ideal-kitchen-remodel','','','2021-02-04 12:09:13','2021-02-04 12:09:13','',0,'https://chicagolandremodeling.com/?p=7954',0,'post','',0),(1329,1,'2017-10-20 12:37:58','2017-10-20 12:37:58','','','','inherit','closed','closed','','badge','','','2017-10-31 17:24:45','2017-10-31 17:24:45','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/badge.png',0,'attachment','image/png',0),(1330,1,'2017-10-20 12:37:58','2017-10-20 12:37:58','','','','inherit','closed','closed','','settings','','','2017-10-31 17:24:59','2017-10-31 17:24:59','',0,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/settings.png',0,'attachment','image/png',0),(1315,0,'2017-09-07 23:07:18','2017-09-07 23:07:18','799','Contact Us','','publish','closed','closed','','contact-us-40','','','2017-09-07 23:07:18','2017-09-07 23:07:18','',0,'https://chicagolandremodeling.com/contact-us-40/',0,'wr_cfsb_post_type','',0),(1341,0,'2017-10-30 20:07:57','2017-10-30 20:07:57','799','Contact Us','','publish','closed','closed','','contact-us-45','','','2017-10-30 20:07:57','2017-10-30 20:07:57','',0,'https://chicagolandremodeling.com/contact-us-45/',0,'wr_cfsb_post_type','',0),(1343,0,'2017-11-01 23:34:56','2017-11-01 23:34:56','799','Contact Us','','publish','closed','closed','','contact-us-47','','','2017-11-01 23:34:56','2017-11-01 23:34:56','',0,'https://chicagolandremodeling.com/contact-us-47/',0,'wr_cfsb_post_type','',0),(1344,0,'2017-11-02 15:33:36','2017-11-02 15:33:36','799','Contact Us','','publish','closed','closed','','contact-us-48','','','2017-11-02 15:33:36','2017-11-02 15:33:36','',0,'https://chicagolandremodeling.com/contact-us-48/',0,'wr_cfsb_post_type','',0),(1365,0,'2017-11-21 17:59:53','2017-11-21 17:59:53','799','Contact Us','','publish','closed','closed','','contact-us-53','','','2017-11-21 17:59:53','2017-11-21 17:59:53','',0,'https://chicagolandremodeling.com/contact-us-53/',0,'wr_cfsb_post_type','',0),(1363,0,'2017-11-17 20:12:18','2017-11-17 20:12:18','799','Contact Us','','publish','closed','closed','','contact-us-52','','','2017-11-17 20:12:18','2017-11-17 20:12:18','',0,'https://chicagolandremodeling.com/contact-us-52/',0,'wr_cfsb_post_type','',0),(1368,0,'2017-12-02 18:44:35','2017-12-02 18:44:35','799','Contact Us','','publish','closed','closed','','contact-us-54','','','2017-12-02 18:44:35','2017-12-02 18:44:35','',0,'https://chicagolandremodeling.com/contact-us-54/',0,'wr_cfsb_post_type','',0),(1372,0,'2017-12-15 03:03:20','2017-12-15 03:03:20','799','Contact Us','','publish','closed','closed','','contact-us-55','','','2017-12-15 03:03:20','2017-12-15 03:03:20','',0,'https://chicagolandremodeling.com/contact-us-55/',0,'wr_cfsb_post_type','',0),(1373,0,'2017-12-15 03:04:25','2017-12-15 03:04:25','799','Contact Us','','publish','closed','closed','','contact-us-56','','','2017-12-15 03:04:25','2017-12-15 03:04:25','',0,'https://chicagolandremodeling.com/contact-us-56/',0,'wr_cfsb_post_type','',0),(1380,0,'2017-12-23 01:49:38','2017-12-23 01:49:38','799','Contact Us','','publish','closed','closed','','contact-us-57','','','2017-12-23 01:49:38','2017-12-23 01:49:38','',0,'https://chicagolandremodeling.com/contact-us-57/',0,'wr_cfsb_post_type','',0),(1382,1,'2017-12-30 02:01:38','2017-12-30 02:01:38','<div class=\"contact-form-box\"><h4 style=\"text-align:center;color:#000\">QUICK QUOTE</h4>\r\n<div class=\"contact-form-input\">[text* yname placeholder \"Name *\"] </div>\r\n<div class=\"contact-form-input\">[email* email placeholder \"Email *\"]</div>\r\n<div class=\"contact-form-input\">[text* phone placeholder \"Phone *\"] </div>\r\n<div class=\"contact-form-textarea\">[textarea message 40x5 placeholder \"Message \"]</div>\r\n\r\n<div class=\"wpcf7-submit-wrap\">\r\n[submit \"Submit\"]\r\n</div>\r\n</div>\n1\nchicagolandremodeling.com quote\n[yname] <wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [yname] <[email]>\r\nPhone: [phone]\r\n\r\nMessage Body:\r\n[message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [email]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form subpages','','publish','closed','closed','','contact-form-1_copy','','','2020-05-19 23:42:26','2020-05-19 23:42:26','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=1382',0,'wpcf7_contact_form','',0),(8137,1,'2020-01-28 11:13:23','2020-01-28 11:13:23','<div class=\"row mb20 quick-quote\">\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[text* your-name Placeholder \"Your name\"]\r\n	</div>\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[email* your-email Placeholder \"Your email\"]\r\n	</div>\r\n	<div class=\"col-sm-12 col-xs-12\">\r\n		[text your-phone Placeholder \"Phone number\"]\r\n	</div>\r\n</div>\r\n<div class=\"row quick-quote\">\r\n	<div class=\"col-xs-12 textarea-bottom\">\r\n		[textarea your-message x4 class:qtextarea placeholder \"Your message\" ]\r\n	</div>\r\n</div>\r\n\r\n\r\n<div class=\"row mb20 btnnn quick-quote\">\r\n	<div class=\"col-xs-12\">\r\n		[submit class:btn \"SEND\" ]\r\n	</div>\r\n</div>\n1\nchicagolandremodeling.com quote\n[your-name] <wordpress@chicagolandremodeling.com>\ncr@strony1234.com\nFrom: [your-name] <[your-email]>\r\nPhone: [your-phone]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: [your-email]\n\n\n\n\nChicagoland Remodeling, Inc. \"[your-subject]\"\nChicagoland Remodeling, Inc. <wordpress@chicagolandremodeling.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chicagoland Remodeling, Inc. (https://chicagolandremodeling.com)\nReply-To: kacper@infosystrade.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Quick Quote Slider Mobile','','publish','closed','closed','','quick-quote-slider_copy','','','2020-05-19 23:44:06','2020-05-19 23:44:06','',0,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&#038;p=8137',0,'wpcf7_contact_form','',0),(8097,1,'2019-09-02 08:44:59','2019-09-02 08:44:59','','kitchen-3689918_1920','','inherit','closed','closed','','kitchen-3689918_1920','','','2019-09-02 08:44:59','2019-09-02 08:44:59','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-3689918_1920.jpg',0,'attachment','image/jpeg',0),(1427,1,'2018-03-16 13:24:18','2018-03-16 13:24:18','','vinyl_replacment_windows_benefits-900x500','','inherit','closed','closed','','vinyl_replacment_windows_benefits-900x500','','','2018-10-30 01:20:33','2018-10-30 01:20:33','',1424,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg',0,'attachment','image/jpeg',0),(1424,1,'2018-03-16 13:26:17','2018-03-16 13:26:17','<p>Kitchen remodeling is one of the best ways to upgrade your home. Without breaking the bank, you can easily upgrade old fixtures, increase the value of your home, and open up the available space you’re working with. If you’re looking into kitchen makover, here are some tips from contractors which can help you get the most bang for your buck.</p>\r\n<h3>1. Customize Storage</h3>\r\n<p><br />\r\nMost kitchens have a bunch of storage space, including cabinets, drawers, etc. Ask your contractors about recessed storage which is built into walls or tucked away into your countertops. During kitchen makeover, homeowners can easily open up even the most cramped kitchen with creative storage solutions.</p>\r\n<h3><br />\r\n2. Lighten It Up</h3>\r\n<p>A simple change in your kitchen’s color scheme can work wonders. You can bring more light into your kitchen with options like glass-faced cabinets. You can also re-finish your countertops and cabinets. Home renovation can be a great time to re-consider the color scheme of your entire home.</p>\r\n<h3><br />\r\n3. Painting</h3>\r\n<p>Painting your kitchen opens up a lot of options too. If your kitchen has old or outdated wallpaper, you can strip it and opt for a whole new color scheme. Even if you already have a paintjob you like, switching it up can make your kitchen feel brand new.</p>\r\n<h3><br />\r\n4. Change out the curtains or switch out the blinds</h3>\r\n<p>Switching out your curtains or blinds can breathe new life into your kitchen. Try a new pattern or style which better suits the theme you’re going for.</p>\r\n<h3><br />\r\n5. Re-use</h3>\r\n<p>Home makeover doesn’t have to mean “out with the old, in with the new”. In a lot of cases, old cabinets and fixtures can find new use, especially if you touch them up a bit.</p>\r\n<h3><br />\r\n6. Go timeless</h3>\r\n<p>When picking out your style, consider picking something that has been around for a long time. Super modern styles can quickly change, but vintage styles mean you won’t have to keep upgrading your home!</p>','6 Budget remodeling ideas','','publish','closed','closed','','6-budget-kitchen-remodeling-ideas','','','2021-02-04 12:31:13','2021-02-04 12:31:13','',0,'https://chicagolandremodeling.com/?p=1424',0,'post','',0),(8033,1,'2019-07-16 09:42:44','2019-07-16 09:42:44','','60613-nazwa listing','','inherit','closed','closed','','60613-nazwa-listing','','','2019-07-16 09:42:44','2019-07-16 09:42:44','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613-nazwa-listing.png',0,'attachment','image/png',0),(8037,1,'2019-08-02 12:57:02','2019-08-02 12:57:02','','60639','','inherit','closed','closed','','60639','','','2019-08-02 12:57:02','2019-08-02 12:57:02','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60639.png',0,'attachment','image/png',0),(8041,1,'2019-08-02 13:44:35','2019-08-02 13:44:35','','image (8)','','inherit','closed','closed','','image-8','','','2019-08-02 13:44:35','2019-08-02 13:44:35','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-8.png',0,'attachment','image/png',0),(8043,1,'2019-08-02 13:54:14','2019-08-02 13:54:14','','image (9)','','inherit','closed','closed','','image-9','','','2019-08-02 13:54:14','2019-08-02 13:54:14','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-9.png',0,'attachment','image/png',0),(8050,1,'2019-08-02 14:08:39','2019-08-02 14:08:39','','image (10)','','inherit','closed','closed','','image-10','','','2019-08-02 14:08:39','2019-08-02 14:08:39','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-10.png',0,'attachment','image/png',0),(8013,1,'2019-07-04 13:27:22','2019-07-04 13:27:22','','roselle (1)','','inherit','closed','closed','','roselle-1','','','2019-07-04 13:27:22','2019-07-04 13:27:22','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle-1.png',0,'attachment','image/png',0),(8019,1,'2019-07-04 14:16:17','2019-07-04 14:16:17','','roselle2','','inherit','closed','closed','','roselle2','','','2019-07-04 14:16:17','2019-07-04 14:16:17','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle2.png',0,'attachment','image/png',0),(8021,1,'2019-07-05 06:43:55','2019-07-05 06:43:55','','60613','','inherit','closed','closed','','60613','','','2019-07-05 06:43:55','2019-07-05 06:43:55','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613.png',0,'attachment','image/png',0),(8022,1,'2019-07-05 06:43:56','2019-07-05 06:43:56','','60606','','inherit','closed','closed','','60606','','','2019-07-05 06:43:56','2019-07-05 06:43:56','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60606.png',0,'attachment','image/png',0),(8023,1,'2019-07-05 06:43:58','2019-07-05 06:43:58','','elmwood','','inherit','closed','closed','','elmwood','','','2019-07-05 06:43:58','2019-07-05 06:43:58','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/elmwood.png',0,'attachment','image/png',0),(8024,1,'2019-07-05 06:44:00','2019-07-05 06:44:00','','chicago60618','','inherit','closed','closed','','chicago60618-2','','','2019-07-05 06:44:00','2019-07-05 06:44:00','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618-1.png',0,'attachment','image/png',0),(8010,1,'2019-07-01 18:37:41','2019-07-01 18:37:41','','chicago60618','','inherit','closed','closed','','chicago60618','','','2019-07-01 18:37:41','2019-07-01 18:37:41','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618.png',0,'attachment','image/png',0),(8001,1,'2019-06-24 12:04:54','2019-06-24 12:04:54','','custom-kitchen-remodel-dallas-tx-joseph-and-berry','','inherit','closed','closed','','custom-kitchen-remodel-dallas-tx-joseph-and-berry','','','2019-06-24 12:04:54','2019-06-24 12:04:54','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg',0,'attachment','image/jpeg',0),(8002,1,'2019-06-24 12:04:57','2019-06-24 12:04:57','','new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas','','inherit','closed','closed','','new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas','','','2019-06-24 12:04:57','2019-06-24 12:04:57','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg',0,'attachment','image/jpeg',0),(8109,1,'2019-09-20 19:22:43','2019-09-20 19:22:43','','60606-NEW','','inherit','closed','closed','','60606-new','','','2019-09-20 19:22:43','2019-09-20 19:22:43','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/60606-NEW.png',0,'attachment','image/png',0),(8058,1,'2019-08-14 11:16:21','2019-08-14 11:16:21','','roselle-image','','inherit','closed','closed','','roselle-image','','','2019-08-14 11:16:21','2019-08-14 11:16:21','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image.png',0,'attachment','image/png',0),(8063,1,'2019-08-14 11:26:20','2019-08-14 11:26:20','','roselle-image-2','','inherit','closed','closed','','roselle-image-2','','','2019-08-14 11:26:20','2019-08-14 11:26:20','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image-2.png',0,'attachment','image/png',0),(8072,1,'2019-08-30 11:56:17','2019-08-30 11:56:17','','5_stelle','','inherit','closed','closed','','5_stelle','','','2019-08-30 11:56:17','2019-08-30 11:56:17','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/5_stelle.png',0,'attachment','image/png',0),(8075,1,'2019-08-30 12:17:07','2019-08-30 12:17:07','','60630','','inherit','closed','closed','','60630','','','2019-08-30 12:17:07','2019-08-30 12:17:07','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60630.png',0,'attachment','image/png',0),(8081,1,'2019-08-30 14:44:43','2019-08-30 14:44:43','','Exceptional Home Remodeling Image','','inherit','closed','closed','','exceptional-home-remodeling-image','','','2019-08-30 14:44:43','2019-08-30 14:44:43','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/Exceptional-Home-Remodeling-Image.jpg',0,'attachment','image/jpeg',0),(3458,1,'2018-04-30 19:35:50','2018-04-30 19:35:50','','call-answer','','inherit','closed','closed','','call-answer','','','2018-04-30 19:35:50','2018-04-30 19:35:50','',0,'https://chicagolandremodeling.com/wp-content/uploads/2018/04/call-answer.png',0,'attachment','image/png',0),(8087,1,'2019-09-02 07:50:31','2019-09-02 07:50:31','','kitchen-2014860_1920','','inherit','closed','closed','','kitchen-2014860_1920','','','2019-09-02 07:50:31','2019-09-02 07:50:31','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-2014860_1920.jpg',0,'attachment','image/jpeg',0),(8092,1,'2019-09-02 08:16:12','2019-09-02 08:16:12','','bathroom-1597027_1920','','inherit','closed','closed','','bathroom-1597027_1920','','','2019-09-02 08:16:12','2019-09-02 08:16:12','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/bathroom-1597027_1920.jpg',0,'attachment','image/jpeg',0),(8101,1,'2019-09-02 14:00:52','2019-09-02 14:00:52','','northbrook-przerabianiec','','inherit','closed','closed','','northbrook-przerabianiec','','','2019-09-02 14:00:52','2019-09-02 14:00:52','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/northbrook-przerabianiec.png',0,'attachment','image/png',0),(8113,1,'2019-09-23 13:26:55','2019-09-23 13:26:55','','chicagoland-remodeling-logo','','inherit','closed','closed','','chicagoland-remodeling-logo','','','2019-09-23 13:26:55','2019-09-23 13:26:55','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/chicagoland-remodeling-logo.png',0,'attachment','image/png',0),(8170,1,'2020-04-21 07:49:10','2020-04-21 07:49:10','<p><span style=\"font-weight: 400;\">Our </span><span style=\"font-weight: 400;\">contractors</span><span style=\"font-weight: 400;\"> have some essential tips to consider before you start your revamp.</span></p>\r\n<p><span style=\"font-weight: 400;\">Getting remodeling can be a challenging endeavor. It is important to set a project, so you can follow through with your plans and not exceed your expenses. The best approach is to get a team of contractors to look over your budget plan for more accuracy.</span></p>\r\n<p><span style=\"font-weight: 400;\">Have a clear vision of how you want your finished home to look like, whether it is a kitchen,remodeling, or bathroom remodeling. This will help you make better and quicker decisions, especially with the plethora of decision making you would have to do during the remodeling.</span></p>\r\n<p><span style=\"font-weight: 400;\">Once you have decided on the design and budget, you can decide on the best team of contractors to hire. They can help you achieve your dream home using their years of experience, and provide you the comfort of knowing everything will be fine once the dust has settled. </span></p>\r\n<p><span style=\"font-weight: 400;\">Acknowledge the challenges that come with home remodelings. Keep in mind that remodelings do not last forever and you can soon enjoy the home you deserve.</span></p>\r\n<p>&nbsp;</p>','Blog - Tips','','publish','closed','closed','','home-remodeling-tips-chicago-il','','','2021-02-04 12:00:29','2021-02-04 12:00:29','',0,'https://chicagolandremodeling.com/?p=8170',0,'post','',0),(8118,1,'2019-09-24 12:12:14','2019-09-24 12:12:14','','GLEN-ELLYN','','inherit','closed','closed','','glen-ellyn','','','2019-09-24 12:12:14','2019-09-24 12:12:14','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/GLEN-ELLYN.png',0,'attachment','image/png',0),(8128,1,'2019-11-20 11:07:24','2019-11-20 11:07:24','','chicagoland-home-remodeling-contractors-logo','','inherit','closed','closed','','chicagoland-home-remodeling-contractors-logo','','','2019-11-20 11:07:24','2019-11-20 11:07:24','',0,'https://chicagolandremodeling.com/wp-content/uploads/2019/11/chicagoland-home-remodeling-contractors-logo.png',0,'attachment','image/png',0),(1955,0,'2018-04-17 14:15:00','2018-04-17 14:15:00','','Image','','publish','closed','closed','','image','','','2018-04-17 14:15:00','2018-04-17 14:15:00','',0,'https://chicagolandremodeling.com/image/',0,'bwg_share','',0),(7927,1,'2018-08-01 09:28:13','0000-00-00 00:00:00','','Kitchen remodelling tips to make your space look bigger','','draft','closed','closed','','','','','2018-08-01 09:28:13','2018-08-01 09:28:13','',0,'https://chicagolandremodeling.com/?p=7927',0,'post','',0),(7945,1,'2018-09-19 23:45:29','2018-09-19 23:45:29','<h2>Quick DIY remodeling with tile painting</h2>\r\n<p>You enter into your bathroom and aren’t thoroughly pleased with its looks and overall functionality. First thought is giving a call your neighborhood remodeling crew for top to bottom makeover. In some cases, it would be quite viable solution as laying tiles, rearranging plumbing or installing fixtures lies outside skills and patience of average homeowners. Sometimes however, you just want to pimp your house, investing little time and money. And internet comes to your aid offering plenty of advice for more or less technically minded. One of the DIY remodeling ideas that allow for complete change of interior feel is painting tiles. Task itself isn’t overly complicated and requires neither top-notch equipment nor exotic materials. You’ll only need sand paper, a paint roller and of course, paint (either latex or epoxy).  However, there is a caveat. This solution won’t work well for heavy trafficked or wet areas (floor, tub or shower surroundings, vanity countertops).</p>\r\n<h3>Storage containers – eco-friendly and charming bathroom idea</h3>\r\n<p>Painting tiles is a quick process, which gives your bathroom completely new look. But if such idea isn’t to your liking, you can always limit yourself to changing color of chosen pieces of furniture or accessories. Particularly charming and budget friendly option is handmade jars and storage containers.  They don’t have to be elaborate or very decorative to start with, actually quite the contrary – the simpler the better. The only requirement – they should be water resistant or at least fare well in humid bathroom environment. At the end of the day, you don’t want your creations’ to be eaten by mold. You may also consider reusing containers that otherwise would be chucked into recycling bin. As result, your DIY project will not be friendly for your budget but also for environment. As far as decorating them is involved, imagination is the limit – paint, water-resistant marker, glitter an even old doorknobs (working as handles).</p>','Do it yourself bathroom ideas','','publish','closed','closed','','do-it-yourself-bathroom-ideas','','','2021-02-04 12:21:16','2021-02-04 12:21:16','',0,'https://chicagolandremodeling.com/?p=7945',0,'post','',0),(7946,1,'2018-09-19 23:43:23','2018-09-19 23:43:23','','','','inherit','closed','closed','','zz','','','2018-09-19 23:44:11','2018-09-19 23:44:11','',7945,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg',0,'attachment','image/jpeg',0),(7902,1,'2018-06-06 11:45:42','2018-06-06 11:45:42','','angies','','publish','closed','closed','','angies-2','','','2018-06-06 11:45:42','2018-06-06 11:45:42','',0,'https://chicagolandremodeling.com/angies-2/',1,'nav_menu_item','',0),(7903,1,'2018-06-06 11:45:42','2018-06-06 11:45:42','','google','','publish','closed','closed','','google-2','','','2018-06-06 11:45:42','2018-06-06 11:45:42','',0,'https://chicagolandremodeling.com/google-2/',2,'nav_menu_item','',0),(7904,1,'2018-06-06 11:45:42','2018-06-06 11:45:42','','facebook','','publish','closed','closed','','facebook-2','','','2018-06-06 11:45:42','2018-06-06 11:45:42','',0,'https://chicagolandremodeling.com/facebook-2/',3,'nav_menu_item','',0),(7905,1,'2018-06-06 11:45:42','2018-06-06 11:45:42','','yelp','','publish','closed','closed','','yelp-2','','','2018-06-06 11:45:42','2018-06-06 11:45:42','',0,'https://chicagolandremodeling.com/yelp-2/',4,'nav_menu_item','',0),(7930,1,'2018-08-01 09:59:58','2018-08-01 09:59:58','<h2>Remodelling a bigger kitchen from scratch</h2>\r\n<p style=\"text-align: justify;\">Have you ever felt like your kitchen could use a bit more space? Whether you are an avid cook or just casually put something on a frying pan, put comfortableness above all when planning your kitchen makeover. If you want to save some counter space, consider buying a single sink instead of the widely popular double version. Those additional 12 inches will surely make your counter more acommodative. Moreover, there are a lot of space to be saved by choosing a slimmer fridge and dishwasher. If you don\'t cook so much then maybe the compound dishwasher will be a more logical solution. Another way to save space is to use upper shelfs or simply removing doors to upper cabinets. This way you won\'t need to mind your head. On the other hand, if your aim is to widen the area of motion, perhaps shallow cabinets are the right choice for you, especially considering how tough the standard 24 inch version is to reach.</p>\r\n<h2>Visual-trick your way to a spacy kitchen design</h2>\r\n<p style=\"text-align: justify;\">At the end of the day, it all comes down to whether the kitchen feels spacy, even if it not necessarily is so. That\'s why at Chicagoland Remodeling we always emphasize the visual aspects of kitchen designs. The untold secret lies in lighting – try taking the curtains off the windows and intalling under-cabinet lights. If you wish to deepen the effect you might want to come around to white or other bright colors of kitchen layouts. When it comes to backsplashes, it is advisable to make them short, preferably in color that blends with the walls. Another options is to mirror your backsplash which will create the sensation your kitchen is much bigger than it truly is.And last,but not least – aim for the least amount of clutter, especially in places that attract the eye the most.</p>','Kitchen remodelling tips to make your space look bigger','','draft','closed','closed','','kitchen-remodelling-tips-to-make-your-space-look-bigger','','','2018-08-01 10:46:37','2018-08-01 10:46:37','',0,'https://chicagolandremodeling.com/?p=7930',0,'post','',0),(7931,1,'2018-08-01 09:59:52','2018-08-01 09:59:52','','pexels-photo-276554','','inherit','closed','closed','','pexels-photo-276554','','','2018-08-01 09:59:52','2018-08-01 09:59:52','',7930,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/pexels-photo-276554.jpeg',0,'attachment','image/jpeg',0),(7934,1,'2018-08-02 13:27:09','2018-08-02 13:27:09','<h2>Remodelling a bigger kitchen from scratch</h2>\r\n<p style=\"text-align: justify;\">Have you ever felt like your kitchen could use a bit more space? Whether you are an avid cook or just casually put something on a frying pan, put comfortableness above all when planning your kitchen makeover. If you want to save some counter space, consider buying a single sink instead of the widely popular double version. Those additional 12 inches will surely make your counter more acommodative. Moreover, there are a lot of space to be saved by choosing a slimmer fridge and dishwasher. If you don\'t cook so much then maybe the compound dishwasher will be a more logical solution. Another way to save space is to use upper shelfs or simply removing doors to upper cabinets. This way you won\'t need to mind your head. On the other hand, if your aim is to widen the area of motion, perhaps shallow cabinets are the right choice for you, especially considering how tough the standard 24 inch version is to reach.</p>\r\n<h2>Visual-trick your way to a spacy kitchen design</h2>\r\n<p style=\"text-align: justify;\">At the end of the day, it all comes down to whether the kitchen feels spacy, even if it not necessarily is so. That\'s why at Chicagoland Remodeling we always emphasize the visual aspects of kitchen designs. The untold secret lies in lighting – try taking the curtains off the windows and intalling under-cabinet lights. If you wish to deepen the effect you might want to come around to white or other bright colors of kitchen layouts. When it comes to backsplashes, it is advisable to make them short, preferably in color that blends with the walls. Another options is to mirror your backsplash which will create the sensation your kitchen is much bigger than it truly is.And last,but not least – aim for the least amount of clutter, especially in places that attract the eye the most.</p>','Kitchen - tips to make your space look bigger','','publish','closed','closed','','kitchen-remodelling-tips-to-make-your-space-look-bigger-2','','','2021-02-04 12:27:03','2021-02-04 12:27:03','',0,'https://chicagolandremodeling.com/?p=7934',0,'post','',0),(7935,1,'2018-08-02 13:26:52','2018-08-02 13:26:52','','','','inherit','closed','closed','','photo-1495433324511-bf8e92934d90','','','2018-08-02 13:27:04','2018-08-02 13:27:04','',7934,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg',0,'attachment','image/jpeg',0),(7939,1,'2018-08-27 10:44:57','2018-08-27 10:44:57','<h2>Planning is Key</h2>\r\n<p>Considering renovating an old house? It is important to get a basic plan in place at the beginning. <br />\r\nCheck the foundation for stability and water issues. Structural problems must be addressed early on, exterior and interior. Which interior walls are supporting walls? Are exterior walls sound? <br />\r\nNext to consider is electrical service. Is there proper amperage and wiring to support a modern household? Will the electrical service support an HVAC system? Getting a plan of how to wire the house, including a heating and air conditioning system and how to run duct work are some of the basic decisions that need to be planned early in the process.</p>\r\n<p>The roof is the next consideration. Is the structure solid? Are there openings or holes? Attached to the roof are fascias and gutters. Guttering controls water runoff and leads directly to the issue of outside water drainage. Water lines coming into the house as well as sewage lines leaving the house need to be checked and replaced if necessary. Next comes plumbing. How much can be saved and what will need replacing?</p>\r\n<h3>Basics First, Then Details</h3>\r\n<p>Once all these basics are in place, then the interior work begins. Flooring is often well worth saving, but refinishing of old wood floors should wait until major interior construction is done. Walls, ceilings, dealing with plaster versus stripping it away and replacing it with more modern materials, are all major decisions. Then comes plumbing and electrical fixtures, cabinetry and finishes such as tile, wall board and paint.</p>\r\n<p>In short, renovating an old house involves a wide variety of skilled trades and deep knowledge of the mechanics and structural elements of a building. Planning every stage of the process from the beginning can save you tens of thousands of dollars. Home renovating is a rewarding experience, but it also has the potential to turn into a nightmare. Get expert advice before you start, you\'ll be glad you did.</p>\r\n<p>If you are considering renovating an old house, call us here at Chicagoland Remodeling. Our experts can help make your project a success.</p>','How to renovate an old house?','','publish','closed','closed','','how-to-renovate-an-old-house','','','2021-02-04 12:22:44','2021-02-04 12:22:44','',0,'https://chicagolandremodeling.com/?p=7939',0,'post','',0),(7941,1,'2018-08-27 10:44:44','2018-08-27 10:44:44','','','','inherit','closed','closed','','open-kitchen-living-room-small-kitchen-decorating-ideas-for-apartment-open-kitchen-living-room-decorating-ideas-interior-design-ideas-kitchen-family-room-within-contemporary-apartment-kitchen-white-co','','','2018-08-27 10:44:53','2018-08-27 10:44:53','',7939,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg',0,'attachment','image/jpeg',0),(8178,1,'2020-04-26 14:43:42','2020-04-26 14:43:42','<h1 style=\"text-align: center;\">Profesjonalne Strony Internetowe Chicago oraz Skuteczne Pozycjonowanie Stron</h1>\r\n<div>Właśnie przeglądasz witrynę internetową Chicagoland Remodeling, która została zaprojektowana i wykonana przez naszą firmę — <a href=\"http://strony123.com\">Strony Internetowe Chicago Strony123</a>. Nasz zespół nieustannie dba o prawidłowe działanie tej strony. Dbamy, by była ona przyjazna dla każdego użytkownika oraz na bieżąco aktualizowana. Jeśli mają Państwo do nas jakiekolwiek pytania lub sugestie, zachęcamy do skontaktowania się z nami na przykład za pomocą formularza. Znajdą go Państwo na stronie: Strony Internetowe &amp; Pozycjonowanie Stron Chicago. Wszystkie opinie zostaną przeanalizowane przez nas zespół i pomogą nam w dalszym rozwoju tej witryny internetowej, tak by była ona jeszcze przyjaźniejsza i bardziej intuicyjna dla Państwa oraz by zawsze zawierała wszelkie informacje, jakie Państwa interesują.</div>\r\n<div> </div>\r\n<div> </div>\r\n<div>The website you are viewing right now was made by our team -  strony123.com. We are people who are committed to making sure that sites designed by our company are user-friendly, always easy to access for all users, and of course up to date. If you have any questions to ask or think that our team didn\'t meet your expectations, please contact our company. To do it, simply go to <a href=\"http://strony123.com\">strony123.com</a> and fill the form. With every assistance and user feedback, our team will be able to improve our websites.</div>','Strony Internetowe Chicago','','publish','closed','closed','','strony-internetowe-chicago','','','2020-04-26 14:43:42','2020-04-26 14:43:42','',0,'https://chicagolandremodeling.com/?page_id=8178',0,'page','',0),(8204,1,'2020-09-06 14:38:04','2020-09-06 14:38:04','','incredilble bathroom remodeling','','inherit','closed','closed','','incredilble-bathroom-remodeling','','','2020-09-06 14:38:04','2020-09-06 14:38:04','',0,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/incredilble-bathroom-remodeling.jpg',0,'attachment','image/jpeg',0),(8205,1,'2020-09-06 14:38:18','2020-09-06 14:38:18','','stunning kitchen remodeling','','inherit','closed','closed','','stunning-kitchen-remodeling','','','2020-09-06 14:38:18','2020-09-06 14:38:18','',0,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/stunning-kitchen-remodeling.jpg',0,'attachment','image/jpeg',0),(8244,1,'2021-02-04 18:58:04','2021-02-04 18:58:04','<div>\n<h1 style=\"text-align: center; font-size: 300%; line-height: 120%; margin-top: 50px;\">Chicagoland Remodeling</h1>\n<hr />\n<p>&nbsp;</p>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\"><strong>Chicagoland Remodeling</strong> is one of Chicago’s go to home remodeling contractors for all of your needs. A proud member of Angie’s List, we are licensed for both general contractor work and roofing, making us a one stop shop for your home remodeling needs. With nearing thirty years of experience, we are up to every challenge. For us, good is not good enough. We strive for each of our jobs to be excellent and superior. We strive to make that superior remodeling work available at a competitive, affordable price.</p>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Chicagoland Remodeling performs wonderful work on home, bathroom  and kitchen remodeling (and more!). We pride ourselves on a friendly and professional staff. In fact, your first meeting will be with our owner, Wally Szymanski. We provide free estimates for our remodeling services, and if you choose us, we do our best to create a work schedule that fits both our needs. Remodeling is a big decision, and we here at Chicagoland Remodeling want to make your dreams come true. We promise there will never be surprises; we keep you up to date on changes as they happen. You are our priority. Since cost and quality are two of your top priorities, they are ours as well.</p>\n<p>&nbsp;</p>\n<div class=\"cr-row ThreeColumn flex\">\n<div class=\"cr-col-md-4 ColumnOne\">\n<h2 style=\"text-align: center; margin-bottom: 37px;\">Splendid remodeling to make over your place</h2>\n<hr />\n<h3>Our contractors performing excellent services</h3>\n<p style=\"text-align: justify;\">Does thinking of remodeling give you sleepless nights? With best contractors, you have nothing to worry about! We make the most out of every space we remodel. You will be delighted with your new interior design.</p>\n</div>\n<div class=\"cr-col-md-4 ColumnTwo\">\n<h2 style=\"text-align: center;\">Make your business space more welcoming </h2>\n<hr />\n<h3>You’re in the right place if you need commercial contractors</h3>\n<p style=\"text-align: justify;\">We offer complex commercial services. Whether you are in need of increasing your business space, or refreshing the interiors – our indispensable contractors got your covered. If you’re serious about your business, you have to take care of your office appearance to impress the customers.</p>\n</div>\n<div class=\"cr-col-md-4 ColumnThree\">\n<h2 style=\"text-align: center;\">Chicagoland Remodeling for all your needs</h2>\n<hr />\n<h3>Look no further for reliable remodeling services</h3>\n<p style=\"text-align: justify; margin-top: 35px;\">When it comes to interior remodeling, there is nothing that could surprise us. We’ve been in the remodeling business for many years and we are able to handle every situation. We are pleased to assist you during whole remodeling process to make it less stressful for you!</p>\n</div>\n</div>\n<div class=\"cr-row\">\n<div class=\"cr-col-sm-6\">\n<h2 style=\"text-align: center; font-size: 200%;\">About the Chicagoland Remodeling</h2>\n<hr />\n<h3 style=\"text-align: left; font-size: 150%;\">The most experienced company</h3>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">There are hundreds of remodeling contractors throughout Chicagoland, which can make the decision on who to hire difficult. We are aware of this, and we strive to always remain at the top of the pack. We love our job and our priority is always the customer. Each of our contractors is highly experienced in all aspects of remodeling, allowing us to bring you your updated home quickly, efficiently, and affordably. Our staff is friendly and communicative. We know that remodeling is a big decision, so we are here to guide you through the process. It should be fun! You are bringing your home from drab to the spectacular vision you have in your head.</p>\n<h3>Whenever you need remodeling advice, feel free to contact Chicagoland Remodeling!</h3>\n<div style=\"text-align: center;\"><img style=\"display: block; margin: 0 auto;\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg\" alt=\"\" width=\"225\" height=\"225\" /></div>\n</div>\n<div class=\"cr-col-sm-6\">\n<h2 style=\"text-align: center; font-size: 200%;\">Splendid Services Provided by Chicagoland Remodeling</h2>\n<hr />\n<h3 style=\"text-align: left; font-size: 150%;\">Remodel provided with a wide array of services in Chicagoland</h3>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">At Chicagoland Remodeling, Inc., we can provide a variety of remodeling services. We can remodel family rooms, bedrooms, bathrooms, kitchens, basements, stairs, and more. Sometimes remodels are as simple as a new coat of paint. Sometimes its changing up the floor. A remodeling project can be as large and grand or small and minimalistic as you would like. It all depends on your vision and your budget. Contact us to get a quote and discuss your options, today!</p>\n<h3 style=\"text-align: left; font-size: 150%;\">We Deliver Quality Remodel Services</h3>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Remodeling is not just for homes! Commercial properties can undergo remodeling or renovations as well. Chicagoland Remodeling, Inc. is highly experienced in home remodeling, yes, but our commercial clients have loved our results as well. Need to upgrade your office and commercial space? Not a problem! A commercial remodeling can be just the thing you need to redefine, rebrand, or make your current working space for suited to your business’s unique needs. Opening up floorplans, new flooring, and paint jobs are all common commercial remodeling techniques.</p>\n<h3>Chicagoland Remodeling covering all your needs</h3>\n</div>\n</div>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center; font-size: 200%;\">The Reviews of Chicagoland Remodeling </h2>\n<hr />\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">We believe that with good work and fair prices, you can achieve a lot. This is how our contractracting company have worked for over 20 years! Since the late 1980s, we have finished great amounts of remodeling projects, which have been appreciated by many customers. This is possible only because our clients are a top priority for Chicagoland Remodeling. Every day we strive to perform only high quality remodeling, kitchen and bathroom services. Your satisfaction is our goal. Are we fulfilling it?</p>\n</div>\n<div id=\"social_links\">\n<div id=\"social_links_content\">\n<h4 style=\"text-align: center; font-size: 150%; color: #ffffff;\">Read below how other customers rated our remodeling services:</h4>\n\n\n \n\n\n<div style=\"text-align: center; display: block;\">\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.google.com/maps/place/Chicagoland+Remodeling+Inc+Elmwood+Park/@41.9191304,-87.8063203,15z/data=!4m5!3m4!1s0x0:0x96ea8c6cd66dd326!8m2!3d41.9191304!4d-87.8063203?sa=X&amp;ved=0ahUKEwimtbiv37zRAhVHxoMKHY5jDYcQ_BIIkAEwCg\" rel=\"nofollow\"> <img class=\"alignnone size-full wp-image-828\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.facebook.com/Chicagoland-Remodeling-Inc-146756022167900/\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-835\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512-300x300.png\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.yelp.com/biz/chicagoland-remodeling-elmwood-park\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-849\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b-300x300.jpg\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\n<div style=\"width: 25%; float: left;\"><a href=\"https://www.mapquest.com/us/illinois/business-elmwood-park/chicagoland-remodeling-7799028\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-850\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large-259x300.jpg\" alt=\"\" width=\"65\" height=\"65\" /> </a></div>\n<div style=\"clear: both;\"> </div>\n</div>\n</div>\n</div>\n<div style=\"margin-top: 200px;\">\n<p>&nbsp;</p>\n<h4 style=\"text-align: center; font-size: 160%;\">Chicagoland Remodeling Awards</h4>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">When choosing a remodeling service, you want only the best. How do you best make that distinction with so many factors to consider? Chicagoland Remodeling has received several awards for our services, proving that we are a top contender for your job! We received the 2015 Angie’s List Super Service Award. We have been recognized by the Better Business Bureau (BBB) as an Accredited Business with A+ rating. We are also a Smith Approved Contractor. The outstanding work of our remodelers have been appreciated by following portals:</p>\n<div style=\"text-align: center; display: block;\">\n<div style=\"width: 50%; float: left;\"><a href=\"https://www.angieslist.com/companylist/us/il/elmwood-park/chicagoland-remodeling-inc-reviews-440818.htm\" rel=\"nofollow\"> <img class=\"alignnone size-medium wp-image-880\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015-300x248.png\" alt=\"\" width=\"250\" height=\"195\" /> </a></div>\n<div style=\"width: 50%; float: left;\"><a href=\"http://www.gosmith.com/pro/66126\" rel=\"nofollow\"> <img class=\"alignnone size-full wp-image-865\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png\" alt=\"\" width=\"195\" height=\"195\" /> </a></div>\n\n\n </div>\n<h4 style=\"text-align: center; font-size: 150%;\">Over 260 reviews on Angies List!</h4>\n<div style=\"text-align: center;\"><img class=\"alignnone size-medium wp-image-872\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn-300x90.png\" alt=\"\" width=\"900\" height=\"270\" /></div>\n\n\n   \n\n\n<h2 style=\"text-align: center; font-size: 200%;\">Services We Provide:</h2>\n<hr />\n<h2 style=\"text-align: center; font-size: 250%;\">Interiors</h2>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Chicagoland Remodeling is the go to company for many Chicagoans. Some of our top remodeling services include kitchen, basement, bedroom, and bathroom remodeling. Here at Chicagoland Remodeling we offer free estimates performed by our owner. Our staff is experienced and we strive to make our services affordable for all. Remodeling is an important part of helping to make your home uniquely yours.<br />\nWhether you are needing to expand the size of a room, update outdated décor and appliances, or more, Chicagoland Remodeling has the experience to make your dream come true. We offer a wide variety of services. Check out the full list of our remodeling services below. If you don’t see a service you are looking for, give us a call. With our years of experience, we may be able to help!</p>\n<h2 style=\"text-align: center; font-size: 250%;\">Exteriors </h2>\n<p style=\"text-align: justify; font-size: 140%; line-height: 120%;\">Do you need exterior remodeling done? <a href=\"https://chicagolandroofingcompanies.com/\" rel=\"nofollow\"><strong> Chicagoland Roofing Companies </strong> </a> has you covered! We are the one stop you need for all of your exterior needs. Chicagoland homeowners trust are numerous, but not every contractor is skilled at both interior and exterior remodeling. When you need roofing, windows, doors, gutters, or soffit fascia installed or repaired, we can help you! Exterior remodeling is incredibly important. Structurally, the tasks performed are important; they can prevent water damage, increase insulation, and protect the foundation of your home. But it is also important aesthetically. You want your home to look attractive. Your home is unique to your family, and it should feel like your home. For remodel purposes look no further than Chicagoland Remodeling. We can perform any exterior remodeling job. Just give us a call. We can’t wait to hear from you.</p>\n</div>\n<div id=\"makeMeScrollable\"><a href=\"http://chicagolandroofingcompanies.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img class=\"alignnone wp-image-789 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg\" alt=\"bright kitchen \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">EXTERIORS</span></a><a href=\"/kitchen-remodeling/\"><img class=\"alignnone wp-image-789 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg\" alt=\"bright kitchen \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">KITCHENS</span></a><a href=\"/bathroom-remodeling/\"><img class=\"alignnone wp-image-784 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg\" alt=\"large bathroom \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">BATHROOMS</span></a><a href=\"/basements/\"><img class=\"alignnone wp-image-783 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg\" alt=\"basement with billiard \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">BASEMENTS</span></a><a href=\"/bedrooms/\"><img class=\"alignnone wp-image-785 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg\" alt=\"pink and white bedroom\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">MASTER BEDROOMS</span></a><a href=\"/family-rooms/\"><img class=\"alignnone wp-image-788 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg\" alt=\"family room \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">FAMILY ROOMS</span></a><a href=\"/dinning-rooms/\"><img class=\"alignnone size-full wp-image-787\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg\" alt=\"dining_room\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">DINNING ROOMS</span></a><a href=\"/offices-commercial-spaces/\"><img class=\"alignnone wp-image-786 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg\" alt=\"office \" width=\"293\" height=\"293\" /><span class=\"carousel-span\">COMMERCIALS</span></a><a href=\"/remodeling-painting/\"><img class=\"alignnone wp-image-790 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg\" alt=\"hotel coridour \" width=\"293\" height=\"293\" /> <span class=\"carousel-span\">BATHROOMS</span></a><a href=\"/stairs/\"><img class=\"alignnone wp-image-791 size-full\" src=\"https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg\" alt=\"large stairs\" width=\"293\" height=\"293\" /><span class=\"carousel-span\">STAIRS </span></a></div>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center; font-size: 200%;\">Chicagoland Remodeling Services:</h2>\n<p>&nbsp;</p>\n<div id=\"services-info\">[su_row][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">01</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Kitchen Contractors</h3>\n<p class=\"service-description\">Shouldn’t the place you eat be both functional and stylish? Chicagoland Remodeling can help a kitchen meet an individual’s unique cooking needs through customized counter space, storage space, and lighting options.</p>\n</div>\n</div>\n\n\n[/su_column][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">02</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Bathroom Contractors</h3>\n<p class=\"service-description\">Relax and unwind in a bathroom designed to do just that. Bathroom services can range from small tile or lighting changes to a complete replacing of fixtures and floor space.</p>\n</div>\n</div>\n\n\n[/su_column][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">03</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Basement Contractors </h3>\n<p class=\"service-description\">Add additional living space to your home with an upgraded basement. Basements can add remarkable flexibility to your home’s layout. Use it for bedrooms, a game room, laundry, storage, and more!</p>\n</div>\n</div>\n\n\n[/su_column][/su_row][su_row][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">04</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Bedroom Contractors</h3>\n<p class=\"service-description\">Your bedroom is your personal space, and we can help customize it to meet your wants and needs from changes in floor plans to changes in color schemes and flooring.</p>\n</div>\n</div>\n\n\n[/su_column][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">05</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Family Room Contractors </h3>\n<p class=\"service-description\">If you’re like most families, you probably spend a lot of time in your family room. Make this room a place you love with new flooring, wall colors, and lighting.</p>\n</div>\n</div>\n\n\n[/su_column][su_column size=\"1/3\"]\n\n\n<div class=\"su-row\">\n<div class=\"su-column su-column-size-1-5\">\n<p class=\"services-count\">06</p>\n</div>\n<div class=\"su-column su-column-size-4-5\">\n<h3>Commercial Contractors </h3>\n<p class=\"service-description\">Remodeling can bring life to a tired business and impress customers. Change cluttered floorplans to one that fits your business model. Update lighting or color schemes to fit your vision.</p>\n</div>\n</div>\n\n\n[/su_column][/su_row]</div>\n<p>\n<style>\n  #container2 {\n    display:none;\n  }\n</style>\n</p>','Home','','inherit','closed','closed','','8-autosave-v1','','','2021-02-04 18:58:04','2021-02-04 18:58:04','',8,'https://chicagolandremodeling.com/8-autosave-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_404`
--

DROP TABLE IF EXISTS `wp_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_404` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `url` (`url`(191)),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=104924 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_404`
--

LOCK TABLES `wp_redirection_404` WRITE;
/*!40000 ALTER TABLE `wp_redirection_404` DISABLE KEYS */;
INSERT INTO `wp_redirection_404` VALUES (103653,'2021-01-28 06:40:16','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1008:b15a:9287:35dd:13ed:b730:2933'),(103654,'2021-01-28 06:40:16','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1008:b15a:9287:35dd:13ed:b730:2933'),(103655,'2021-01-28 06:40:16','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1008:b15a:9287:35dd:13ed:b730:2933'),(103656,'2021-01-28 06:40:17','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1008:b15a:9287:35dd:13ed:b730:2933'),(103657,'2021-01-28 06:40:17','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1008:b15a:9287:35dd:13ed:b730:2933'),(103658,'2021-01-28 07:00:06','/wp-includes/css/modules.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103659,'2021-01-28 07:00:11','/wso.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103660,'2021-01-28 07:00:16','/wp-content/plugins/upspy/','python-requests/2.25.1',NULL,'46.17.57.226'),(103661,'2021-01-28 07:00:21','/wp-content/plugins/ubh/','python-requests/2.25.1',NULL,'46.17.57.226'),(103662,'2021-01-28 07:00:26','/wp-content/plugins/vwcleanerplugin/bump.php?cache','python-requests/2.25.1',NULL,'46.17.57.226'),(103663,'2021-01-28 07:00:29','/wp-content/plugins/xichang/x.php?xi','python-requests/2.25.1',NULL,'46.17.57.226'),(103664,'2021-01-28 07:00:33','/wp-content/plugins/html404/index.html','python-requests/2.25.1',NULL,'46.17.57.226'),(103665,'2021-01-28 07:00:37','/wp-admin/shapes.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103666,'2021-01-28 07:00:41','/olux.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103667,'2021-01-28 07:00:45','/indoxploit.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103668,'2021-01-28 07:00:54','/up.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103669,'2021-01-28 07:00:58','/upload.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103670,'2021-01-28 07:01:03','/shell.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103671,'2021-01-28 07:01:08','/wp-admin/network/wp-footer.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103672,'2021-01-28 07:01:12','/wp-info.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103673,'2021-01-28 07:01:17','/wp-content/vuln.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103674,'2021-01-28 07:01:20','/upel.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103675,'2021-01-28 07:01:24','/wp-content/plugins/ppus/up.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103676,'2021-01-28 07:01:31','/098.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103677,'2021-01-28 07:01:36','/V5.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103678,'2021-01-28 07:01:39','/new_license.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103679,'2021-01-28 07:01:42','/wp-content/plugins/theme-configurator/mini.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103680,'2021-01-28 07:01:52','/wp-content/plugins/widget-logic/mini.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103681,'2021-01-28 07:01:58','/wso.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103682,'2021-01-28 07:02:03','/modules/modules/modules.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103683,'2021-01-28 07:02:07','/modules/mod_simplefileuploadv1.3/elements/Clean.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103684,'2021-01-28 07:02:10','/modules/mod_simplefileuploadv1.3/elements/udd.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103685,'2021-01-28 07:02:15','/libraries/joomla/css.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103686,'2021-01-28 07:02:20','/libraries/joomla/jmails.php?u','python-requests/2.25.1',NULL,'46.17.57.226'),(103687,'2021-01-28 07:02:24','/libraries/joomla/jmail.php?u','python-requests/2.25.1',NULL,'46.17.57.226'),(103688,'2021-01-28 07:02:29','/images/vuln.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103689,'2021-01-28 07:02:31','/tmp/vuln.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103690,'2021-01-28 07:02:34','/XxX.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103691,'2021-01-28 07:02:38','/Marvins.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103692,'2021-01-28 07:02:43','/rxr.php?rxr','python-requests/2.25.1',NULL,'46.17.57.226'),(103693,'2021-01-28 07:02:46','/olux.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103694,'2021-01-28 07:02:53','/indoxploit.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103695,'2021-01-28 07:02:57','/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103696,'2021-01-28 07:03:00','/RxR.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103697,'2021-01-28 07:03:04','/components/com_b2jcontact/izoc.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103698,'2021-01-28 07:03:07','/V3.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103699,'2021-01-28 07:03:11','/V5.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103700,'2021-01-28 07:03:19','/up.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103701,'2021-01-28 07:03:23','/upload.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103702,'2021-01-28 07:03:26','/shell.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103703,'2021-01-28 07:03:31','/administrator/templates/bluestork/','python-requests/2.25.1',NULL,'46.17.57.226'),(103704,'2021-01-28 07:03:38','/administrator/templates/bluestork/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103705,'2021-01-28 07:03:43','/administrator/templates/hathor/','python-requests/2.25.1',NULL,'46.17.57.226'),(103706,'2021-01-28 07:03:50','/administrator/templates/hathor/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103707,'2021-01-28 07:03:55','/administrator/templates/isis/','python-requests/2.25.1',NULL,'46.17.57.226'),(103708,'2021-01-28 07:04:01','/administrator/templates/isis/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103709,'2021-01-28 07:04:06','/templates/beez/','python-requests/2.25.1',NULL,'46.17.57.226'),(103710,'2021-01-28 07:04:10','/templates/ja_purity/','python-requests/2.25.1',NULL,'46.17.57.226'),(103711,'2021-01-28 07:04:14','/templates/rhuk_milkyway/','python-requests/2.25.1',NULL,'46.17.57.226'),(103712,'2021-01-28 07:04:20','/templates/system/','python-requests/2.25.1',NULL,'46.17.57.226'),(103713,'2021-01-28 07:04:27','/templates/system/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103714,'2021-01-28 07:04:35','/templates/beez3/','python-requests/2.25.1',NULL,'46.17.57.226'),(103715,'2021-01-28 07:04:42','/templates/beez3/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103716,'2021-01-28 07:04:49','/templates/beez5/','python-requests/2.25.1',NULL,'46.17.57.226'),(103717,'2021-01-28 07:04:55','/templates/beez5/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103718,'2021-01-28 07:05:03','/templates/beez_20/','python-requests/2.25.1',NULL,'46.17.57.226'),(103719,'2021-01-28 07:05:07','/templates/beez_20/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103720,'2021-01-28 07:05:15','/templates/protostar/','python-requests/2.25.1',NULL,'46.17.57.226'),(103721,'2021-01-28 07:05:19','/templates/protostar/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103722,'2021-01-28 07:05:26','/templates/atomic/','python-requests/2.25.1',NULL,'46.17.57.226'),(103723,'2021-01-28 07:05:30','/templates/atomic/error.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103724,'2021-01-28 07:05:34','/olux.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103725,'2021-01-28 07:05:38','/indoxploit.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103726,'2021-01-28 07:05:43','/indoxploit.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103727,'2021-01-28 07:05:49','/wso.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103728,'2021-01-28 07:05:54','/images/','python-requests/2.25.1',NULL,'46.17.57.226'),(103729,'2021-01-28 07:05:58','/uploads/','python-requests/2.25.1',NULL,'46.17.57.226'),(103730,'2021-01-28 07:06:02','/img/','python-requests/2.25.1',NULL,'46.17.57.226'),(103731,'2021-01-28 07:06:07','/upload/','python-requests/2.25.1',NULL,'46.17.57.226'),(103732,'2021-01-28 07:06:15','/files/','python-requests/2.25.1',NULL,'46.17.57.226'),(103733,'2021-01-28 07:06:19','/pdf/','python-requests/2.25.1',NULL,'46.17.57.226'),(103734,'2021-01-28 07:06:22','/docs/','python-requests/2.25.1',NULL,'46.17.57.226'),(103735,'2021-01-28 07:06:29','/up.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103736,'2021-01-28 07:06:34','/upload.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103737,'2021-01-28 07:06:38','/shell.php','python-requests/2.25.1',NULL,'46.17.57.226'),(103738,'2021-01-28 07:26:33','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.62'),(103739,'2021-01-28 07:26:59','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'135.125.91.32'),(103740,'2021-01-28 07:27:05','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'135.125.91.32'),(103741,'2021-01-28 07:56:07','/community/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',NULL,'95.79.223.108'),(103742,'2021-01-28 08:45:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103743,'2021-01-28 08:45:04','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103744,'2021-01-28 08:45:04','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103745,'2021-01-28 08:45:04','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103746,'2021-01-28 08:45:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103747,'2021-01-28 08:45:13','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103748,'2021-01-28 08:45:13','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2001:56a:7992:4c00:fde3:29ff:4880:df9b'),(103749,'2021-01-28 08:47:06','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103750,'2021-01-28 09:04:24','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'13.78.139.231'),(103751,'2021-01-28 09:21:35','/adminer-4.6.0.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14',NULL,'103.139.113.34'),(103752,'2021-01-28 09:41:41','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(103753,'2021-01-28 10:27:51','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.62'),(103754,'2021-01-28 12:01:05','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103755,'2021-01-28 12:01:05','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103756,'2021-01-28 14:25:31','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0'),(103757,'2021-01-28 14:25:31','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0'),(103758,'2021-01-28 14:25:31','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0'),(103759,'2021-01-28 14:25:31','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0'),(103760,'2021-01-28 14:25:31','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0'),(103761,'2021-01-28 15:02:11','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10','https://chicagolandremodeling.com/','195.123.247.119'),(103762,'2021-01-28 15:42:46','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'35.153.175.31'),(103763,'2021-01-28 16:27:29','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103764,'2021-01-28 16:27:29','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103765,'2021-01-28 16:37:38','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e'),(103766,'2021-01-28 16:37:38','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e'),(103767,'2021-01-28 16:37:38','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e'),(103768,'2021-01-28 16:37:38','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e'),(103769,'2021-01-28 16:37:38','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e'),(103770,'2021-01-28 16:41:54','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) RockMelt/0.9.56.310 Chrome/11.0.696.68 Safari/534.24','https://chicagolandremodeling.com/','195.123.247.119'),(103771,'2021-01-28 16:42:47','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103772,'2021-01-28 16:42:47','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103773,'2021-01-28 17:28:43','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'129.213.52.204'),(103774,'2021-01-28 18:28:14','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','172.58.140.2'),(103775,'2021-01-28 18:28:14','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','172.58.140.2'),(103776,'2021-01-28 18:28:14','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','172.58.140.2'),(103777,'2021-01-28 18:28:14','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','172.58.140.2'),(103778,'2021-01-28 18:28:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','172.58.140.2'),(103779,'2021-01-28 18:33:24','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1036.7 Safari/535.20','https://chicagolandremodeling.com/','195.123.247.119'),(103780,'2021-01-28 18:38:12','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36',NULL,'78.47.218.140'),(103781,'2021-01-28 19:26:03','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103782,'2021-01-28 19:26:03','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103783,'2021-01-28 19:26:03','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103784,'2021-01-28 19:26:03','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103785,'2021-01-28 19:26:03','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103786,'2021-01-28 19:28:51','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103787,'2021-01-28 19:28:51','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','69.148.201.166'),(103788,'2021-01-28 19:29:21','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'13.68.168.107'),(103789,'2021-01-28 19:37:59','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103790,'2021-01-28 19:37:59','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103791,'2021-01-28 19:37:59','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103792,'2021-01-28 19:37:59','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103793,'2021-01-28 19:37:59','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103794,'2021-01-28 19:38:39','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103795,'2021-01-28 19:38:39','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103796,'2021-01-28 19:38:40','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103797,'2021-01-28 19:38:40','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103798,'2021-01-28 19:38:40','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:e:f8c3:364c:95cd'),(103799,'2021-01-28 20:36:45','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.700.3 Safari/534.24','https://chicagolandremodeling.com/','195.123.247.119'),(103800,'2021-01-28 20:43:35','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103801,'2021-01-28 21:16:48','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103802,'2021-01-28 21:16:48','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103803,'2021-01-28 21:16:48','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103804,'2021-01-28 21:16:48','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103805,'2021-01-28 21:16:48','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103806,'2021-01-28 21:30:43','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103807,'2021-01-28 21:30:43','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','159.180.140.142'),(103808,'2021-01-28 21:30:58','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.13.226.88'),(103809,'2021-01-28 21:30:58','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.13.226.88'),(103810,'2021-01-28 21:30:58','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.13.226.88'),(103811,'2021-01-28 21:30:58','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.13.226.88'),(103812,'2021-01-28 21:30:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.13.226.88'),(103813,'2021-01-28 22:14:20','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) RockMelt/0.9.56.357 Chrome/11.0.696.71 Safari/534.24','https://chicagolandremodeling.com/','195.123.247.119'),(103814,'2021-01-28 23:33:03','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'34.229.255.181'),(103815,'2021-01-29 00:27:31','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.152.235.219'),(103816,'2021-01-29 00:27:31','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.152.235.219'),(103817,'2021-01-29 00:27:32','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.152.235.219'),(103818,'2021-01-29 00:27:32','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.152.235.219'),(103819,'2021-01-29 00:27:32','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.152.235.219'),(103820,'2021-01-29 00:48:49','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(103821,'2021-01-29 00:51:41','/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text/html&mla_download_file=../../../../wp-config.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0',NULL,'176.113.234.112'),(103822,'2021-01-29 01:35:05','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.62'),(103823,'2021-01-29 02:16:27','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103824,'2021-01-29 02:16:27','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103825,'2021-01-29 02:16:28','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103826,'2021-01-29 02:16:28','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103827,'2021-01-29 02:16:30','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103828,'2021-01-29 02:49:39','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103829,'2021-01-29 03:47:35','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(103830,'2021-01-29 04:01:37','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 ChromePlus/1.6.3.1','https://chicagolandremodeling.com/','195.123.247.119'),(103831,'2021-01-29 04:09:04','/wp-content/plugins/super-forms/changelog.txt','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36',NULL,'176.8.91.58'),(103832,'2021-01-29 04:31:32','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.62'),(103833,'2021-01-29 05:46:25','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'137.116.184.56'),(103834,'2021-01-29 05:55:55','/wp-includes/css/css.php','python-requests/2.25.1',NULL,'217.160.42.134'),(103835,'2021-01-29 05:56:44','/wp-includes/fonts/css.php','python-requests/2.25.1',NULL,'217.160.42.134'),(103836,'2021-01-29 07:18:20','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.65 Safari/535.11','https://chicagolandremodeling.com/','195.123.247.119'),(103837,'2021-01-29 07:43:39','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103838,'2021-01-29 07:43:39','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103839,'2021-01-29 07:43:40','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103840,'2021-01-29 07:43:40','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103841,'2021-01-29 07:43:40','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103842,'2021-01-29 08:01:39','/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits.jpeg','Photon/1.0',NULL,'195.234.109.14'),(103843,'2021-01-29 09:23:08','/.git/config','python-requests/2.22.0',NULL,'35.174.170.30'),(103844,'2021-01-29 10:41:50','/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&employer=synthroid-u.s.-price&animal=1482933818','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,'54.36.149.69'),(103845,'2021-01-29 11:45:27','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'178.63.149.70'),(103846,'2021-01-29 12:32:12','/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text/html&mla_download_file=../../../../wp-config.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0',NULL,'176.113.234.112'),(103847,'2021-01-29 13:22:10','/wp-includes/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.10.175'),(103848,'2021-01-29 13:22:38','/wp-includes/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.10.175'),(103849,'2021-01-29 13:34:26','/webmail','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'207.46.13.109'),(103850,'2021-01-29 13:45:17','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1008:b128:8f4:2d63:28c5:7cb9:880b'),(103851,'2021-01-29 13:45:17','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1008:b128:8f4:2d63:28c5:7cb9:880b'),(103852,'2021-01-29 13:45:18','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1008:b128:8f4:2d63:28c5:7cb9:880b'),(103853,'2021-01-29 13:45:18','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1008:b128:8f4:2d63:28c5:7cb9:880b'),(103854,'2021-01-29 13:45:18','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1008:b128:8f4:2d63:28c5:7cb9:880b'),(103855,'2021-01-29 14:22:13','/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&brown=terbinafine-liquid-to-paint-on-toenail-fungus&profit=1482888424','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,'54.36.148.81'),(103856,'2021-01-29 16:04:31','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','2601:245:ce80:3840:3832:2f7f:9e88:816d'),(103857,'2021-01-29 16:04:31','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','2601:245:ce80:3840:3832:2f7f:9e88:816d'),(103858,'2021-01-29 16:04:31','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','2601:245:ce80:3840:3832:2f7f:9e88:816d'),(103859,'2021-01-29 16:04:31','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','2601:245:ce80:3840:3832:2f7f:9e88:816d'),(103860,'2021-01-29 16:04:31','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','2601:245:ce80:3840:3832:2f7f:9e88:816d'),(103861,'2021-01-29 16:24:05','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103862,'2021-01-29 16:26:22','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'45.41.134.170'),(103863,'2021-01-29 17:34:32','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103864,'2021-01-29 17:34:32','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103865,'2021-01-29 17:34:32','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103866,'2021-01-29 17:34:32','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103867,'2021-01-29 17:34:32','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103868,'2021-01-29 17:35:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103869,'2021-01-29 17:35:04','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103870,'2021-01-29 17:35:22','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103871,'2021-01-29 17:35:22','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103872,'2021-01-29 17:36:00','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103873,'2021-01-29 17:36:00','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103874,'2021-01-29 17:36:47','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103875,'2021-01-29 17:36:47','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103876,'2021-01-29 19:01:59','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103877,'2021-01-29 19:01:59','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103878,'2021-01-29 19:01:59','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103879,'2021-01-29 19:01:59','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103880,'2021-01-29 19:01:59','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103881,'2021-01-29 19:02:54','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103882,'2021-01-29 19:02:54','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:387:b:3::ad'),(103883,'2021-01-29 19:20:35','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103884,'2021-01-29 19:20:35','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103885,'2021-01-29 19:20:35','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103886,'2021-01-29 19:20:35','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103887,'2021-01-29 19:20:35','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103888,'2021-01-29 19:20:46','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103889,'2021-01-29 19:20:46','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:b489:488a:c0b8:6713'),(103890,'2021-01-29 19:40:49','/wp-content/themes/wp-update.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','chicagolandremodeling.com','37.97.185.158'),(103891,'2021-01-29 20:32:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(103892,'2021-01-29 20:32:05','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(103893,'2021-01-29 20:32:06','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(103894,'2021-01-29 20:32:06','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(103895,'2021-01-29 20:32:06','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(103896,'2021-01-29 20:58:03','/?author=2','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103897,'2021-01-29 20:58:04','/?author=3','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103898,'2021-01-29 20:58:05','/?author=4','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103899,'2021-01-29 20:58:07','/?author=5','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103900,'2021-01-29 20:58:08','/?author=6','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103901,'2021-01-29 20:58:09','/?author=7','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103902,'2021-01-29 20:58:10','/?author=8','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103903,'2021-01-29 20:58:11','/?author=9','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103904,'2021-01-29 20:58:13','/?author=10','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103905,'2021-01-29 20:58:14','/?author=11','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103906,'2021-01-29 20:58:16','/?author=12','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103907,'2021-01-29 20:58:17','/?author=13','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103908,'2021-01-29 20:58:18','/?author=14','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103909,'2021-01-29 20:58:20','/?author=15','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103910,'2021-01-29 20:58:21','/?author=16','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103911,'2021-01-29 20:58:22','/?author=17','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103912,'2021-01-29 20:58:24','/?author=18','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103913,'2021-01-29 20:58:25','/?author=19','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103914,'2021-01-29 20:58:27','/?author=20','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'115.159.115.69'),(103915,'2021-01-29 21:01:52','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103916,'2021-01-29 21:01:52','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(103917,'2021-01-29 21:06:22','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'51.222.69.210'),(103918,'2021-01-29 21:09:46','/wp-content/themes/chimod/screenshot.jpg','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://ui.wordpress-theme-detector.com/','73.208.143.119'),(103919,'2021-01-29 21:15:08','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.62'),(103920,'2021-01-29 21:35:33','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2603:9000:f802:1700:5db9:340c:f4b4:1ac6'),(103921,'2021-01-29 21:35:33','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2603:9000:f802:1700:5db9:340c:f4b4:1ac6'),(103922,'2021-01-29 21:35:33','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2603:9000:f802:1700:5db9:340c:f4b4:1ac6'),(103923,'2021-01-29 21:35:33','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2603:9000:f802:1700:5db9:340c:f4b4:1ac6'),(103924,'2021-01-29 21:35:34','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2603:9000:f802:1700:5db9:340c:f4b4:1ac6'),(103925,'2021-01-29 22:35:14','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103926,'2021-01-29 23:23:46','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'45.77.205.148'),(103927,'2021-01-29 23:28:51','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(103928,'2021-01-30 00:15:07','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(103929,'2021-01-30 01:05:51','/wp-includes/wpconfig.bak.php?act=ul','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','135.125.10.175'),(103930,'2021-01-30 02:04:51','/humans.txt','Go-http-client/1.1','http://chicagolandremodeling.com/humans.txt','192.71.10.105'),(103931,'2021-01-30 02:04:53','/ads.txt','Go-http-client/1.1','http://chicagolandremodeling.com/ads.txt','192.36.53.165'),(103932,'2021-01-30 02:57:28','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'54.167.223.137'),(103933,'2021-01-30 03:24:15','/wordpress/wp-admin/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','http://chicagolandremodeling.com/','66.225.201.210'),(103934,'2021-01-30 03:33:50','/ads.txt','TprAdsTxtCrawler/1.0',NULL,'52.211.58.58'),(103935,'2021-01-30 03:33:51','/app-ads.txt','TprAdsTxtCrawler/1.0',NULL,'52.211.58.58'),(103936,'2021-01-30 05:59:58','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1700:5650:ac60:4d0f:153:a572:4e2f'),(103937,'2021-01-30 05:59:58','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1700:5650:ac60:4d0f:153:a572:4e2f'),(103938,'2021-01-30 05:59:58','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1700:5650:ac60:4d0f:153:a572:4e2f'),(103939,'2021-01-30 05:59:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1700:5650:ac60:4d0f:153:a572:4e2f'),(103940,'2021-01-30 05:59:58','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1700:5650:ac60:4d0f:153:a572:4e2f'),(103941,'2021-01-30 06:19:59','/https:/chicagolandremodeling.com/','Test Certificate Info',NULL,'2600:1700:f470:6b50::2a'),(103942,'2021-01-30 06:25:47','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103943,'2021-01-30 06:25:47','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103944,'2021-01-30 06:25:48','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103945,'2021-01-30 06:25:48','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103946,'2021-01-30 06:25:49','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(103947,'2021-01-30 06:27:31','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'51.195.232.155'),(103948,'2021-01-30 06:27:31','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'51.195.232.155'),(103949,'2021-01-30 06:31:02','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'217.160.69.252'),(103950,'2021-01-30 08:43:52','/wp-includes/css/css.php','python-requests/2.25.0',NULL,'82.165.185.18'),(103951,'2021-01-30 08:45:34','/wp-includes/fonts/css.php','python-requests/2.25.0',NULL,'82.165.185.18'),(103952,'2021-01-30 10:12:01','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'129.213.52.204'),(103953,'2021-01-30 11:40:48','/.git/config','python-requests/2.25.1',NULL,'31.207.38.220'),(103954,'2021-01-30 12:42:39','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.2'),(103955,'2021-01-30 13:27:55','/community/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',NULL,'95.79.223.108'),(103956,'2021-01-30 14:29:36','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103957,'2021-01-30 14:29:36','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103958,'2021-01-30 14:29:36','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103959,'2021-01-30 14:29:36','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103960,'2021-01-30 14:29:36','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103961,'2021-01-30 14:29:44','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103962,'2021-01-30 14:29:44','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:f761:1740:3461:b2b0:724b:5ac1'),(103963,'2021-01-30 17:10:36','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103964,'2021-01-30 17:10:37','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103965,'2021-01-30 17:33:52','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(103966,'2021-01-30 18:51:34','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103967,'2021-01-30 19:47:57','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(103968,'2021-01-30 20:36:01','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(103969,'2021-01-30 22:10:09','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103970,'2021-01-30 22:10:10','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103971,'2021-01-30 22:59:23','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'45.56.183.116'),(103972,'2021-01-31 00:01:42','/?author=2','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103973,'2021-01-31 00:01:46','/?author=3','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103974,'2021-01-31 00:01:53','/?author=4','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103975,'2021-01-31 00:02:16','/?author=5','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103976,'2021-01-31 00:02:18','/?author=6','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103977,'2021-01-31 00:02:21','/?author=7','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103978,'2021-01-31 00:02:23','/?author=8','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103979,'2021-01-31 00:02:25','/?author=9','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103980,'2021-01-31 00:02:27','/?author=10','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103981,'2021-01-31 00:02:29','/?author=11','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103982,'2021-01-31 00:02:31','/?author=12','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103983,'2021-01-31 00:02:34','/?author=13','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103984,'2021-01-31 00:02:37','/?author=14','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103985,'2021-01-31 00:02:40','/?author=15','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103986,'2021-01-31 00:02:43','/?author=16','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103987,'2021-01-31 00:02:46','/?author=17','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103988,'2021-01-31 00:02:49','/?author=18','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103989,'2021-01-31 00:02:53','/?author=19','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103990,'2021-01-31 00:02:55','/?author=20','Apache-HttpClient/4.5.2 (Java/1.8.0_161)',NULL,'139.155.2.15'),(103991,'2021-01-31 03:31:32','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103992,'2021-01-31 03:31:33','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(103993,'2021-01-31 07:25:06','/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&king=revatio-20-mg-pfizer-inc&grandparents=1482890116','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,'54.36.148.12'),(103994,'2021-01-31 08:05:49','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(103995,'2021-01-31 09:34:24','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'54.179.160.181'),(103996,'2021-01-31 10:51:23','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',NULL,'35.226.219.78'),(103997,'2021-01-31 11:10:29','/wp-includes/css/modules.php','python-requests/2.25.1',NULL,'43.250.248.190'),(103998,'2021-01-31 11:10:34','/wso.php','python-requests/2.25.1',NULL,'43.250.248.190'),(103999,'2021-01-31 11:10:39','/wp-content/plugins/upspy/','python-requests/2.25.1',NULL,'43.250.248.190'),(104000,'2021-01-31 11:10:45','/wp-content/plugins/ubh/','python-requests/2.25.1',NULL,'43.250.248.190'),(104001,'2021-01-31 11:10:50','/wp-content/plugins/vwcleanerplugin/bump.php?cache','python-requests/2.25.1',NULL,'43.250.248.190'),(104002,'2021-01-31 11:10:53','/wp-content/plugins/xichang/x.php?xi','python-requests/2.25.1',NULL,'43.250.248.190'),(104003,'2021-01-31 11:10:58','/wp-content/plugins/html404/index.html','python-requests/2.25.1',NULL,'43.250.248.190'),(104004,'2021-01-31 11:11:02','/wp-admin/shapes.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104005,'2021-01-31 11:11:06','/olux.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104006,'2021-01-31 11:11:10','/indoxploit.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104007,'2021-01-31 11:11:16','/up.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104008,'2021-01-31 11:11:20','/upload.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104009,'2021-01-31 11:11:26','/shell.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104010,'2021-01-31 11:11:30','/wp-admin/network/wp-footer.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104011,'2021-01-31 11:11:35','/wp-info.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104012,'2021-01-31 11:11:38','/wp-content/vuln.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104013,'2021-01-31 11:11:42','/upel.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104014,'2021-01-31 11:11:45','/wp-content/plugins/ppus/up.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104015,'2021-01-31 11:11:49','/098.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104016,'2021-01-31 11:11:53','/V5.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104017,'2021-01-31 11:11:58','/new_license.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104018,'2021-01-31 11:12:02','/wp-content/plugins/theme-configurator/mini.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104019,'2021-01-31 11:12:06','/wp-content/plugins/widget-logic/mini.php','python-requests/2.25.1',NULL,'43.250.248.190'),(104020,'2021-01-31 11:30:10','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.91.32'),(104021,'2021-01-31 11:30:19','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.91.32'),(104022,'2021-01-31 12:18:41','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'35.242.218.196'),(104023,'2021-01-31 12:29:37','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'51.210.245.4'),(104024,'2021-01-31 12:29:50','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'51.210.245.4'),(104025,'2021-01-31 13:10:39','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(104026,'2021-01-31 13:56:34','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:243:cc00:da20:314a:d44e:7f3c:687b'),(104027,'2021-01-31 13:56:34','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:243:cc00:da20:314a:d44e:7f3c:687b'),(104028,'2021-01-31 13:56:34','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:243:cc00:da20:314a:d44e:7f3c:687b'),(104029,'2021-01-31 13:56:34','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:243:cc00:da20:314a:d44e:7f3c:687b'),(104030,'2021-01-31 13:56:34','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:243:cc00:da20:314a:d44e:7f3c:687b'),(104031,'2021-01-31 14:34:47','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104032,'2021-01-31 15:47:11','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(104033,'2021-01-31 16:03:08','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','3.95.241.175'),(104034,'2021-01-31 16:05:29','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(104035,'2021-01-31 16:05:30','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.186.155.64'),(104036,'2021-01-31 16:16:56','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(104037,'2021-01-31 16:18:19','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','34.208.123.146'),(104038,'2021-01-31 16:19:11','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','208.109.43.16'),(104039,'2021-01-31 16:19:18','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','208.109.43.16'),(104040,'2021-01-31 17:29:49','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','51.77.213.160'),(104041,'2021-01-31 18:02:45','/wp-includes/wpconfig.bak.php?act=ul','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','135.125.10.175'),(104042,'2021-01-31 18:29:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2607:fb90:f016:a044:40d4:87e2:160c:97c1'),(104043,'2021-01-31 18:29:58','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2607:fb90:f016:a044:40d4:87e2:160c:97c1'),(104044,'2021-01-31 18:29:58','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2607:fb90:f016:a044:40d4:87e2:160c:97c1'),(104045,'2021-01-31 18:29:58','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2607:fb90:f016:a044:40d4:87e2:160c:97c1'),(104046,'2021-01-31 18:29:58','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2607:fb90:f016:a044:40d4:87e2:160c:97c1'),(104047,'2021-01-31 18:54:50','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.2'),(104048,'2021-01-31 19:50:24','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:241:8d81:6530:2811:9b22:6466:78cd'),(104049,'2021-01-31 19:50:24','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:241:8d81:6530:2811:9b22:6466:78cd'),(104050,'2021-01-31 19:50:24','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:241:8d81:6530:2811:9b22:6466:78cd'),(104051,'2021-01-31 19:50:24','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:241:8d81:6530:2811:9b22:6466:78cd'),(104052,'2021-01-31 19:50:24','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2601:241:8d81:6530:2811:9b22:6466:78cd'),(104053,'2021-01-31 20:41:29','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:248:4002:2000:692c:66ec:6bfe:14e'),(104054,'2021-01-31 20:41:29','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:248:4002:2000:692c:66ec:6bfe:14e'),(104055,'2021-01-31 20:41:29','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:248:4002:2000:692c:66ec:6bfe:14e'),(104056,'2021-01-31 20:41:29','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:248:4002:2000:692c:66ec:6bfe:14e'),(104057,'2021-01-31 20:41:29','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:248:4002:2000:692c:66ec:6bfe:14e'),(104058,'2021-01-31 21:40:01','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:5520:9fb0:7c72:ecc:8e01:18a9'),(104059,'2021-01-31 21:40:01','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:5520:9fb0:7c72:ecc:8e01:18a9'),(104060,'2021-01-31 21:40:01','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:5520:9fb0:7c72:ecc:8e01:18a9'),(104061,'2021-01-31 21:40:01','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:5520:9fb0:7c72:ecc:8e01:18a9'),(104062,'2021-01-31 21:40:02','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1700:5520:9fb0:7c72:ecc:8e01:18a9'),(104063,'2021-01-31 22:06:38','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104064,'2021-01-31 22:06:38','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104065,'2021-01-31 22:06:38','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104066,'2021-01-31 22:06:38','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104067,'2021-01-31 22:06:38','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104068,'2021-01-31 22:07:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104069,'2021-01-31 22:07:05','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104070,'2021-01-31 22:07:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104071,'2021-01-31 22:07:05','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104072,'2021-01-31 22:07:05','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','73.44.172.167'),(104073,'2021-02-01 01:45:46','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:39cd:5e65:8634:b282'),(104074,'2021-02-01 01:45:46','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:39cd:5e65:8634:b282'),(104075,'2021-02-01 01:45:46','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:39cd:5e65:8634:b282'),(104076,'2021-02-01 01:45:46','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:39cd:5e65:8634:b282'),(104077,'2021-02-01 01:45:46','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8701:a850:39cd:5e65:8634:b282'),(104078,'2021-02-01 02:09:38','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104079,'2021-02-01 02:09:38','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104080,'2021-02-01 02:09:39','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104081,'2021-02-01 02:09:39','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104082,'2021-02-01 02:09:40','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104083,'2021-02-01 02:56:18','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'51.210.245.4'),(104084,'2021-02-01 02:56:36','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'51.210.245.4'),(104085,'2021-02-01 03:13:56','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104086,'2021-02-01 04:16:04','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104087,'2021-02-01 04:33:49','/.git/config','python-requests/2.18.4',NULL,'62.210.53.87'),(104088,'2021-02-01 04:34:37','/ads.txt','MixnodeCache/1.8(+https://cache.mixnode.com/)',NULL,'54.162.102.36'),(104089,'2021-02-01 07:49:58','/bitrix/rk.php?goto=https://ya.ru','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',NULL,'194.104.10.13'),(104090,'2021-02-01 07:50:02','/bitrix/redirect.php?goto=https://ya.ru','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36',NULL,'193.203.8.241'),(104091,'2021-02-01 08:09:17','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'51.195.232.155'),(104092,'2021-02-01 08:09:22','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',NULL,'51.195.232.155'),(104093,'2021-02-01 08:10:08','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(104094,'2021-02-01 09:34:25','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104095,'2021-02-01 09:45:42','/old/wp-admin/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','http://chicagolandremodeling.com/','62.129.195.100'),(104096,'2021-02-01 10:29:06','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.120'),(104097,'2021-02-01 10:56:51','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104098,'2021-02-01 11:02:10','/wp-content/wp-admin.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',NULL,'46.161.15.88'),(104099,'2021-02-01 11:07:54','/wp-includes/css/css.php','python-requests/2.25.1',NULL,'212.227.210.241'),(104100,'2021-02-01 11:09:08','/wp-includes/fonts/css.php','python-requests/2.25.1',NULL,'212.227.210.241'),(104101,'2021-02-01 11:16:16','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.77'),(104102,'2021-02-01 12:22:37','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1150.1 Iron/20.0.1150.1 Safari/536.11','https://chicagolandremodeling.com/','195.123.247.119'),(104103,'2021-02-01 14:36:42','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104104,'2021-02-01 14:36:45','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'51.195.232.155'),(104105,'2021-02-01 14:36:50','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',NULL,'51.195.232.155'),(104106,'2021-02-01 15:48:39','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'34.68.212.119'),(104107,'2021-02-01 17:20:42','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:fb90:f0c9:eea9:25f6:6918:fe31:d418'),(104108,'2021-02-01 17:20:43','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:fb90:f0c9:eea9:25f6:6918:fe31:d418'),(104109,'2021-02-01 17:20:43','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:fb90:f0c9:eea9:25f6:6918:fe31:d418'),(104110,'2021-02-01 17:20:43','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:fb90:f0c9:eea9:25f6:6918:fe31:d418'),(104111,'2021-02-01 17:20:43','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:fb90:f0c9:eea9:25f6:6918:fe31:d418'),(104112,'2021-02-01 17:34:16','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104113,'2021-02-01 17:37:34','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104114,'2021-02-01 17:41:59','/wp-content/plugins/wp-file-manager/lib/files/wpadmind.php','curl/7.68.0',NULL,'188.165.239.211'),(104115,'2021-02-01 17:45:18','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104116,'2021-02-01 17:49:06','/wp-content/plugins/wp-file-manager/lib/files/wpadmin.php?act=ul','curl/7.68.0',NULL,'188.165.239.211'),(104117,'2021-02-01 17:52:47','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104118,'2021-02-01 17:56:17','/wp-content/plugins/wp-file-manager/lib/files/uladmin.php?act=ul','curl/7.68.0',NULL,'188.165.239.211'),(104119,'2021-02-01 17:59:34','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104120,'2021-02-01 18:03:51','/wp-content/plugins/wp-file-manager/lib/files/admin.php','curl/7.68.0',NULL,'188.165.239.211'),(104121,'2021-02-01 18:04:22','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104122,'2021-02-01 18:09:55','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104123,'2021-02-01 18:14:07','/wp-content/plugins/wp-file-manager/lib/files/wpadmind.php','curl/7.68.0',NULL,'188.165.239.211'),(104124,'2021-02-01 18:17:56','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104125,'2021-02-01 18:21:29','/wp-content/plugins/wp-file-manager/lib/files/wpadmin.php?act=ul','curl/7.68.0',NULL,'188.165.239.211'),(104126,'2021-02-01 18:25:27','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104127,'2021-02-01 18:29:53','/wp-content/plugins/wp-file-manager/lib/files/uladmin.php?act=ul','curl/7.68.0',NULL,'188.165.239.211'),(104128,'2021-02-01 18:33:28','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104129,'2021-02-01 18:33:48','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104130,'2021-02-01 18:39:00','/wp-content/plugins/wp-file-manager/lib/files/admin.php','curl/7.68.0',NULL,'188.165.239.211'),(104131,'2021-02-01 18:43:38','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','curl/7.68.0',NULL,'188.165.239.211'),(104132,'2021-02-01 18:47:27','/wp-content/plugins/wp-file-manager/lib/files/badmin1.php','curl/7.68.0',NULL,'188.165.239.211'),(104133,'2021-02-01 18:57:21','/wp','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','185.239.242.125'),(104134,'2021-02-01 18:57:57','/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&party=lamictal-300-mg-reviews&sweet=1482874577','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.66.221'),(104135,'2021-02-01 18:58:02','/wordpress','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','185.239.242.125'),(104136,'2021-02-01 19:00:03','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.0 Safari/534.24','https://chicagolandremodeling.com/','195.123.247.119'),(104137,'2021-02-01 19:33:26','/wp-includes/wpconfig.bak.php?act=ul','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','135.125.10.175'),(104138,'2021-02-01 20:01:00','/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&party=lamictal-300-mg-reviews&sweet=1482874577','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.66.193'),(104139,'2021-02-01 20:37:46','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104140,'2021-02-01 20:37:46','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104141,'2021-02-01 20:37:46','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104142,'2021-02-01 20:37:46','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104143,'2021-02-01 20:37:46','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104144,'2021-02-01 20:53:02','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104145,'2021-02-01 20:53:02','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104146,'2021-02-01 20:54:06','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104147,'2021-02-01 20:54:06','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104148,'2021-02-01 20:54:06','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104149,'2021-02-01 20:54:06','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104150,'2021-02-01 20:54:06','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.113.100'),(104151,'2021-02-01 21:00:00','/wp-content/plugins/duplicator/assets/css/style.css','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0',NULL,'78.60.111.211'),(104152,'2021-02-01 21:01:04','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','63.88.73.10'),(104153,'2021-02-01 21:01:04','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','63.88.73.10'),(104154,'2021-02-01 21:01:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','63.88.73.10'),(104155,'2021-02-01 21:01:04','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','63.88.73.10'),(104156,'2021-02-01 21:01:04','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','63.88.73.10'),(104157,'2021-02-01 21:01:10','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.141.120.132'),(104158,'2021-02-01 21:01:10','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.141.120.132'),(104159,'2021-02-01 21:01:10','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.141.120.132'),(104160,'2021-02-01 21:01:10','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.141.120.132'),(104161,'2021-02-01 21:01:11','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.141.120.132'),(104162,'2021-02-01 21:10:11','/wp-content/db-cache.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36','chicagolandremodeling.com','192.241.235.210'),(104163,'2021-02-01 21:21:18','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:246:802:9160:4ad:8a45:129c:5cc6'),(104164,'2021-02-01 21:21:19','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:246:802:9160:4ad:8a45:129c:5cc6'),(104165,'2021-02-01 21:21:19','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:246:802:9160:4ad:8a45:129c:5cc6'),(104166,'2021-02-01 21:21:19','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:246:802:9160:4ad:8a45:129c:5cc6'),(104167,'2021-02-01 21:21:19','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:246:802:9160:4ad:8a45:129c:5cc6'),(104168,'2021-02-01 21:55:26','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104169,'2021-02-01 21:55:26','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104170,'2021-02-01 21:55:26','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104171,'2021-02-01 21:55:27','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104172,'2021-02-01 21:55:27','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104173,'2021-02-01 21:58:56','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104174,'2021-02-01 21:58:57','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104175,'2021-02-01 21:58:57','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104176,'2021-02-01 21:58:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104177,'2021-02-01 21:58:58','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','223.226.103.57'),(104178,'2021-02-01 23:08:37','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1100:ee30:945b:3a18:49f9:b365'),(104179,'2021-02-01 23:08:37','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1100:ee30:945b:3a18:49f9:b365'),(104180,'2021-02-01 23:08:37','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1100:ee30:945b:3a18:49f9:b365'),(104181,'2021-02-01 23:08:37','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1100:ee30:945b:3a18:49f9:b365'),(104182,'2021-02-01 23:08:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1100:ee30:945b:3a18:49f9:b365'),(104183,'2021-02-01 23:33:58','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'146.59.203.207'),(104184,'2021-02-01 23:34:09','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'146.59.203.207'),(104185,'2021-02-02 00:28:30','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104186,'2021-02-02 01:31:19','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.7 (KHTML, like Gecko) Iron/16.0.950.0 Chrome/16.0.950.0 Safari/535.7','https://chicagolandremodeling.com/','195.123.247.119'),(104187,'2021-02-02 01:53:29','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'77.81.136.103'),(104188,'2021-02-02 02:53:37','/>','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.66.192'),(104189,'2021-02-02 03:00:43','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','50.76.76.30'),(104190,'2021-02-02 03:00:43','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','50.76.76.30'),(104191,'2021-02-02 03:00:43','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','50.76.76.30'),(104192,'2021-02-02 03:00:43','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','50.76.76.30'),(104193,'2021-02-02 03:00:43','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','50.76.76.30'),(104194,'2021-02-02 03:07:10','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104195,'2021-02-02 03:07:10','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104196,'2021-02-02 03:07:10','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104197,'2021-02-02 03:07:11','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104198,'2021-02-02 03:07:11','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104199,'2021-02-02 03:07:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104200,'2021-02-02 03:07:15','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104201,'2021-02-02 03:07:15','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104202,'2021-02-02 03:07:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104203,'2021-02-02 03:07:15','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','78.129.191.6'),(104204,'2021-02-02 03:13:44','/.git/config','python-requests/2.18.4',NULL,'62.210.53.87'),(104205,'2021-02-02 03:22:07','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','66.249.66.221'),(104206,'2021-02-02 03:22:07','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','66.249.66.221'),(104207,'2021-02-02 03:22:07','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','66.249.66.221'),(104208,'2021-02-02 03:22:07','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','66.249.66.221'),(104209,'2021-02-02 03:22:08','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','66.249.66.221'),(104210,'2021-02-02 03:55:45','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104211,'2021-02-02 03:58:57','/wp-content/plugins/super-forms/documentation.txt','Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Firefox/17.0',NULL,'45.92.228.50'),(104212,'2021-02-02 03:58:58','/wp-content/plugins/super-forms/','Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Firefox/17.0',NULL,'45.92.228.50'),(104213,'2021-02-02 03:58:59','/wp-content/plugins/super-forms/','Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Firefox/17.0',NULL,'45.92.228.50'),(104214,'2021-02-02 03:59:00','/wp-content/plugins/super-forms/','Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Firefox/17.0',NULL,'45.92.228.50'),(104215,'2021-02-02 04:07:45','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','2001:41d0:2:dab5::'),(104216,'2021-02-02 05:06:37','/docindex.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/docindex.php','2001:1bb0:e000:1e::204'),(104217,'2021-02-02 05:06:55','/docindex.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/docindex.php','2001:1bb0:e000:1e::204'),(104218,'2021-02-02 05:25:10','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104219,'2021-02-02 05:59:42','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','2a00:d680:20:50::4a10'),(104220,'2021-02-02 06:29:45','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'51.79.102.163'),(104221,'2021-02-02 06:29:52','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',NULL,'51.79.102.163'),(104222,'2021-02-02 06:47:35','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104223,'2021-02-02 07:45:18','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.106'),(104224,'2021-02-02 08:33:58','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104225,'2021-02-02 08:42:56','/wordpress/','python-requests/2.25.1',NULL,'107.172.122.25'),(104226,'2021-02-02 08:43:16','/wp/','python-requests/2.25.1',NULL,'107.172.122.25'),(104227,'2021-02-02 08:43:32','/blog/','python-requests/2.25.1',NULL,'107.172.122.25'),(104228,'2021-02-02 08:43:43','/new/','python-requests/2.25.1',NULL,'107.172.122.25'),(104229,'2021-02-02 08:44:06','/old/','python-requests/2.25.1',NULL,'107.172.122.25'),(104230,'2021-02-02 08:46:44','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.91.32'),(104231,'2021-02-02 08:46:51','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'135.125.91.32'),(104232,'2021-02-02 09:45:36','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.149.209.126'),(104233,'2021-02-02 09:45:38','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'52.149.209.126'),(104234,'2021-02-02 10:44:44','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104235,'2021-02-02 11:28:17','/tel:7085839904','Mozilla/5.0 (Linux; Android 7.0; Moto G (4) Build/NPJS25.93-14-18) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36','https://chicagolandremodeling.com','54.161.127.165'),(104236,'2021-02-02 11:28:21','/tel:7085839904','Mozilla/5.0 (Linux; Android 7.0; Moto G (4) Build/NPJS25.93-14-18) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36','https://chicagolandremodeling.com','52.71.134.206'),(104237,'2021-02-02 12:20:25','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.243.24.119'),(104238,'2021-02-02 12:20:26','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.243.24.119'),(104239,'2021-02-02 12:20:26','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.243.24.119'),(104240,'2021-02-02 12:20:26','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.243.24.119'),(104241,'2021-02-02 12:20:26','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.243.24.119'),(104242,'2021-02-02 12:27:21','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','139.5.242.228'),(104243,'2021-02-02 12:27:22','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','139.5.242.228'),(104244,'2021-02-02 12:27:22','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','139.5.242.228'),(104245,'2021-02-02 12:27:22','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','139.5.242.228'),(104246,'2021-02-02 12:27:22','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','139.5.242.228'),(104247,'2021-02-02 14:15:16','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'51.195.232.155'),(104248,'2021-02-02 14:15:21','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',NULL,'51.195.232.155'),(104249,'2021-02-02 14:45:17','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104250,'2021-02-02 14:45:18','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104251,'2021-02-02 14:45:18','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104252,'2021-02-02 14:45:18','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104253,'2021-02-02 14:45:18','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104254,'2021-02-02 15:32:35','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','52.87.217.245'),(104255,'2021-02-02 15:32:35','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','52.87.217.245'),(104256,'2021-02-02 15:32:35','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','52.87.217.245'),(104257,'2021-02-02 15:32:35','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','52.87.217.245'),(104258,'2021-02-02 15:32:35','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','52.87.217.245'),(104259,'2021-02-02 16:52:15','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.61.110'),(104260,'2021-02-02 16:52:15','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.61.110'),(104261,'2021-02-02 16:52:16','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.61.110'),(104262,'2021-02-02 16:52:16','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.61.110'),(104263,'2021-02-02 16:52:16','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.61.110'),(104264,'2021-02-02 17:30:51','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104265,'2021-02-02 17:30:51','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104266,'2021-02-02 17:30:51','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104267,'2021-02-02 17:30:51','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104268,'2021-02-02 17:30:51','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104269,'2021-02-02 17:48:42','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.117.191.129'),(104270,'2021-02-02 17:48:43','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.117.191.129'),(104271,'2021-02-02 17:48:45','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.117.191.129'),(104272,'2021-02-02 17:48:46','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.117.191.129'),(104273,'2021-02-02 17:48:49','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.117.191.129'),(104274,'2021-02-02 18:11:47','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:8800:5995:8500:54f4:4f71:6bd3:6772'),(104275,'2021-02-02 18:11:47','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:8800:5995:8500:54f4:4f71:6bd3:6772'),(104276,'2021-02-02 18:11:48','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:8800:5995:8500:54f4:4f71:6bd3:6772'),(104277,'2021-02-02 18:11:48','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:8800:5995:8500:54f4:4f71:6bd3:6772'),(104278,'2021-02-02 18:11:49','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:8800:5995:8500:54f4:4f71:6bd3:6772'),(104279,'2021-02-02 18:27:43','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104280,'2021-02-02 18:27:44','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104281,'2021-02-02 18:27:44','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104282,'2021-02-02 18:27:44','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104283,'2021-02-02 18:27:44','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104284,'2021-02-02 18:39:57','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104285,'2021-02-02 18:39:57','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','24.136.27.85'),(104286,'2021-02-02 18:50:50','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.100.105'),(104287,'2021-02-02 18:50:51','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.100.105'),(104288,'2021-02-02 18:50:51','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.100.105'),(104289,'2021-02-02 18:50:51','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.100.105'),(104290,'2021-02-02 18:50:51','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.100.105'),(104291,'2021-02-02 18:54:59','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104292,'2021-02-02 18:54:59','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104293,'2021-02-02 18:54:59','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104294,'2021-02-02 18:54:59','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104295,'2021-02-02 18:54:59','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104296,'2021-02-02 18:56:05','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104297,'2021-02-02 18:56:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104298,'2021-02-02 18:56:05','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104299,'2021-02-02 18:56:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104300,'2021-02-02 18:56:05','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104301,'2021-02-02 18:56:48','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'37.46.150.171'),(104302,'2021-02-02 18:56:49','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'37.46.150.171'),(104303,'2021-02-02 18:59:39','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104304,'2021-02-02 18:59:39','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104305,'2021-02-02 19:02:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104306,'2021-02-02 19:02:06','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:249:b01:350:406b:e87d:7d84:8d5d'),(104307,'2021-02-02 19:02:19','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104308,'2021-02-02 19:02:19','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104309,'2021-02-02 19:02:19','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104310,'2021-02-02 19:02:20','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104311,'2021-02-02 19:02:20','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104312,'2021-02-02 19:22:43','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'51.195.233.63'),(104313,'2021-02-02 19:30:50','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104314,'2021-02-02 19:30:50','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104315,'2021-02-02 19:30:50','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104316,'2021-02-02 19:30:50','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104317,'2021-02-02 19:30:50','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104318,'2021-02-02 19:35:06','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'51.178.61.24'),(104319,'2021-02-02 19:35:28','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'51.178.61.24'),(104320,'2021-02-02 19:46:57','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104321,'2021-02-02 19:46:58','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104322,'2021-02-02 19:50:48','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.249.69.82'),(104323,'2021-02-02 19:50:50','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.249.69.82'),(104324,'2021-02-02 19:50:50','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.249.69.82'),(104325,'2021-02-02 19:50:50','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.249.69.82'),(104326,'2021-02-02 19:50:50','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','209.249.69.82'),(104327,'2021-02-02 20:19:24','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104328,'2021-02-02 20:19:25','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104329,'2021-02-02 20:19:25','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104330,'2021-02-02 20:19:25','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104331,'2021-02-02 20:19:25','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104332,'2021-02-02 20:24:52','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104333,'2021-02-02 20:59:43','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'37.46.150.171'),(104334,'2021-02-02 20:59:44','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'37.46.150.171'),(104335,'2021-02-02 21:00:49','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104336,'2021-02-02 21:00:49','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104337,'2021-02-02 21:00:50','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104338,'2021-02-02 21:00:51','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104339,'2021-02-02 21:00:51','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','81.92.203.122'),(104340,'2021-02-02 21:07:22','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','62.210.75.68'),(104341,'2021-02-02 21:13:32','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','203.171.21.225'),(104342,'2021-02-02 21:49:40','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30','https://chicagolandremodeling.com/','195.123.247.119'),(104343,'2021-02-02 21:50:45','/?author=2','Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.85.48 (KHTML, like Gecko) Chrome/57.4.9756.4028 Safari/534.56 OPR/44.5.1479.6741','http://chicagolandremodelinginc.com/','109.200.225.211'),(104344,'2021-02-02 21:50:57','/?author=3','Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.85.48 (KHTML, like Gecko) Chrome/57.4.9756.4028 Safari/534.56 OPR/44.5.1479.6741','http://chicagolandremodelinginc.com/','109.200.225.211'),(104345,'2021-02-02 21:51:13','/?author=4','Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.85.48 (KHTML, like Gecko) Chrome/57.4.9756.4028 Safari/534.56 OPR/44.5.1479.6741','http://chicagolandremodelinginc.com/','109.200.225.211'),(104346,'2021-02-02 22:26:44','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','167.172.215.83'),(104347,'2021-02-02 23:22:57','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104348,'2021-02-02 23:22:57','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104349,'2021-02-02 23:22:58','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104350,'2021-02-02 23:22:58','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104351,'2021-02-02 23:22:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104352,'2021-02-02 23:22:59','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104353,'2021-02-02 23:24:20','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104354,'2021-02-02 23:24:20','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104355,'2021-02-02 23:24:20','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104356,'2021-02-02 23:24:20','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104357,'2021-02-02 23:24:20','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104358,'2021-02-02 23:25:52','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104359,'2021-02-02 23:25:52','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.227.86.34'),(104360,'2021-02-03 00:43:54','/__media__/js/netsoltrademark.php?d=site.com','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',NULL,'195.154.182.201'),(104361,'2021-02-03 00:53:49','/class-wp-widget-archives.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0',NULL,'45.158.15.36'),(104362,'2021-02-03 01:27:55','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104363,'2021-02-03 02:53:01','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104364,'2021-02-03 03:13:08','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104365,'2021-02-03 03:13:09','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104366,'2021-02-03 03:13:09','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104367,'2021-02-03 03:13:10','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104368,'2021-02-03 03:13:11','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104369,'2021-02-03 03:46:22','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.106'),(104370,'2021-02-03 04:31:04','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'77.81.136.103'),(104371,'2021-02-03 04:33:33','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104372,'2021-02-03 05:28:06','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104373,'2021-02-03 05:28:06','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104374,'2021-02-03 05:28:07','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104375,'2021-02-03 05:28:07','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104376,'2021-02-03 05:28:07','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104377,'2021-02-03 06:45:23','/404testpage4525d2fdc','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://sucuri.net','18.223.142.71'),(104378,'2021-02-03 06:45:25','/404javascript.js','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://www.google.com/url/?sa=t','18.223.142.71'),(104379,'2021-02-03 07:31:08','/app-ads.txt','TprAdsTxtCrawler/1.0',NULL,'52.211.58.58'),(104380,'2021-02-03 07:31:09','/ads.txt','TprAdsTxtCrawler/1.0',NULL,'52.211.58.58'),(104381,'2021-02-03 07:46:47','/?author=2','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_37_84) AppleWebKit/532.88.26 (KHTML, like Gecko) Chrome/56.2.7704.2432 Safari/532.18 Edge/36.12530','http://mychicagolandremodeling.com/','109.200.225.211'),(104382,'2021-02-03 07:47:31','/?author=3','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_37_84) AppleWebKit/532.88.26 (KHTML, like Gecko) Chrome/56.2.7704.2432 Safari/532.18 Edge/36.12530','http://mychicagolandremodeling.com/','109.200.225.211'),(104383,'2021-02-03 07:48:04','/?author=4','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_37_84) AppleWebKit/532.88.26 (KHTML, like Gecko) Chrome/56.2.7704.2432 Safari/532.18 Edge/36.12530','http://mychicagolandremodeling.com/','109.200.225.211'),(104384,'2021-02-03 07:48:12','/?author=5','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_37_84) AppleWebKit/532.88.26 (KHTML, like Gecko) Chrome/56.2.7704.2432 Safari/532.18 Edge/36.12530','http://mychicagolandremodeling.com/','109.200.225.211'),(104385,'2021-02-03 08:29:17','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'34.123.127.56'),(104386,'2021-02-03 11:32:18','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'78.141.195.3'),(104387,'2021-02-03 11:52:28','/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com','54.86.145.243'),(104388,'2021-02-03 15:50:45','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1008:b06f:c011:eded:d52d:c47b:2bce'),(104389,'2021-02-03 15:50:45','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1008:b06f:c011:eded:d52d:c47b:2bce'),(104390,'2021-02-03 15:50:45','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1008:b06f:c011:eded:d52d:c47b:2bce'),(104391,'2021-02-03 15:50:45','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1008:b06f:c011:eded:d52d:c47b:2bce'),(104392,'2021-02-03 15:50:45','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/','2600:1008:b06f:c011:eded:d52d:c47b:2bce'),(104393,'2021-02-03 15:58:16','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1702:1320:6d40:e4d3:45f3:981c:d36a'),(104394,'2021-02-03 15:58:16','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1702:1320:6d40:e4d3:45f3:981c:d36a'),(104395,'2021-02-03 15:58:16','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1702:1320:6d40:e4d3:45f3:981c:d36a'),(104396,'2021-02-03 15:58:17','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1702:1320:6d40:e4d3:45f3:981c:d36a'),(104397,'2021-02-03 15:58:17','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2600:1702:1320:6d40:e4d3:45f3:981c:d36a'),(104398,'2021-02-03 16:36:15','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104399,'2021-02-03 16:44:07','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104400,'2021-02-03 16:44:07','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104401,'2021-02-03 16:44:07','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104402,'2021-02-03 16:44:07','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104403,'2021-02-03 16:44:07','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104404,'2021-02-03 16:45:49','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104405,'2021-02-03 16:45:49','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.247.118.51'),(104406,'2021-02-03 16:52:13','/wp-includes/css/css.php','python-requests/2.25.1',NULL,'82.165.117.55'),(104407,'2021-02-03 16:52:22','/wp-includes/fonts/css.php','python-requests/2.25.1',NULL,'82.165.117.55'),(104408,'2021-02-03 17:42:23','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104409,'2021-02-03 17:42:24','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104410,'2021-02-03 17:42:24','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104411,'2021-02-03 17:42:25','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104412,'2021-02-03 17:42:25','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104413,'2021-02-03 17:43:25','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104414,'2021-02-03 17:43:25','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104415,'2021-02-03 17:43:26','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104416,'2021-02-03 17:43:26','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104417,'2021-02-03 17:43:26','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104418,'2021-02-03 17:44:15','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104419,'2021-02-03 17:44:16','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104420,'2021-02-03 17:46:15','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104421,'2021-02-03 17:46:16','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104422,'2021-02-03 17:46:16','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104423,'2021-02-03 17:46:16','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104424,'2021-02-03 17:46:16','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104425,'2021-02-03 17:46:21','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104426,'2021-02-03 17:46:22','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104427,'2021-02-03 17:46:22','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104428,'2021-02-03 17:46:22','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104429,'2021-02-03 17:46:22','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104430,'2021-02-03 17:46:33','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104431,'2021-02-03 17:46:33','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104432,'2021-02-03 17:48:37','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104433,'2021-02-03 17:48:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104434,'2021-02-03 17:51:52','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104435,'2021-02-03 17:51:52','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104436,'2021-02-03 17:51:57','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104437,'2021-02-03 17:51:57','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104438,'2021-02-03 17:51:58','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104439,'2021-02-03 17:51:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104440,'2021-02-03 17:51:59','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.208.143.119'),(104441,'2021-02-03 18:20:26','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104442,'2021-02-03 18:24:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104443,'2021-02-03 18:24:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104444,'2021-02-03 18:25:33','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.803.0 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104445,'2021-02-03 18:42:42','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'51.178.61.24'),(104446,'2021-02-03 18:43:08','/wp-content/wp-1ogin_bak.php','python-requests/2.25.1',NULL,'51.178.61.24'),(104447,'2021-02-03 18:51:54','/wp-content/uploads/404.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-content/uploads/404.php','77.221.130.5'),(104448,'2021-02-03 18:52:23','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104449,'2021-02-03 18:52:23','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104450,'2021-02-03 18:52:35','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104451,'2021-02-03 18:52:36','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104452,'2021-02-03 18:55:47','/home-remodeling-contractors-schaumburg-il/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104453,'2021-02-03 18:57:27','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','2601:249:8b80:d850::b72'),(104454,'2021-02-03 18:57:27','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','2601:249:8b80:d850::b72'),(104455,'2021-02-03 18:57:27','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','2601:249:8b80:d850::b72'),(104456,'2021-02-03 18:57:27','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','2601:249:8b80:d850::b72'),(104457,'2021-02-03 18:57:27','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','2601:249:8b80:d850::b72'),(104458,'2021-02-03 19:24:12','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104459,'2021-02-03 19:24:13','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104460,'2021-02-03 19:24:13','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104461,'2021-02-03 19:24:13','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104462,'2021-02-03 19:24:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104463,'2021-02-03 19:37:11','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104464,'2021-02-03 19:37:11','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104465,'2021-02-03 19:39:42','/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104466,'2021-02-03 19:55:32','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','174.126.209.125'),(104467,'2021-02-03 19:55:32','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','174.126.209.125'),(104468,'2021-02-03 19:55:32','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','174.126.209.125'),(104469,'2021-02-03 19:55:33','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','174.126.209.125'),(104470,'2021-02-03 19:55:33','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/','174.126.209.125'),(104471,'2021-02-03 19:59:45','/locations/remodeling-companies-lake-view-east-chicago-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104472,'2021-02-03 20:00:48','/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://www.google.com/','182.185.156.246'),(104473,'2021-02-03 20:02:24','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','182.185.156.246'),(104474,'2021-02-03 20:02:24','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','182.185.156.246'),(104475,'2021-02-03 20:02:25','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','182.185.156.246'),(104476,'2021-02-03 20:02:26','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','182.185.156.246'),(104477,'2021-02-03 20:02:26','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','182.185.156.246'),(104478,'2021-02-03 20:41:42','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:b3c:2e0:48b5:80e6:9c7c:2269'),(104479,'2021-02-03 20:41:42','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:b3c:2e0:48b5:80e6:9c7c:2269'),(104480,'2021-02-03 20:41:42','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:b3c:2e0:48b5:80e6:9c7c:2269'),(104481,'2021-02-03 20:41:43','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:b3c:2e0:48b5:80e6:9c7c:2269'),(104482,'2021-02-03 20:41:43','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:1700:b3c:2e0:48b5:80e6:9c7c:2269'),(104483,'2021-02-03 20:48:48','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104484,'2021-02-03 20:48:48','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104485,'2021-02-03 20:48:48','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104486,'2021-02-03 20:48:48','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104487,'2021-02-03 20:48:48','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','195.181.163.45'),(104488,'2021-02-03 21:11:26','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.13+ (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2','https://chicagolandremodeling.com/','195.123.247.119'),(104489,'2021-02-03 21:35:52','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104490,'2021-02-03 21:41:29','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'172.241.166.100'),(104491,'2021-02-03 21:41:30','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'172.241.166.100'),(104492,'2021-02-03 21:53:00','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104493,'2021-02-03 21:53:00','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104494,'2021-02-03 21:53:00','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104495,'2021-02-03 21:53:00','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104496,'2021-02-03 21:53:00','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104497,'2021-02-03 21:56:01','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104498,'2021-02-03 21:56:01','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','73.9.69.208'),(104499,'2021-02-03 21:56:38','/?author=2','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104500,'2021-02-03 21:56:39','/?author=3','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104501,'2021-02-03 21:56:54','/?author=4','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104502,'2021-02-03 21:56:55','/?author=5','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104503,'2021-02-03 21:57:01','/?author=6','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104504,'2021-02-03 21:57:02','/?author=7','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104505,'2021-02-03 21:57:03','/?author=8','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104506,'2021-02-03 21:57:13','/?author=9','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104507,'2021-02-03 21:57:15','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:8544:e45e:a691:d49e'),(104508,'2021-02-03 21:57:15','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:8544:e45e:a691:d49e'),(104509,'2021-02-03 21:57:15','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:8544:e45e:a691:d49e'),(104510,'2021-02-03 21:57:15','/?author=10','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104511,'2021-02-03 21:57:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:8544:e45e:a691:d49e'),(104512,'2021-02-03 21:57:15','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:241:8c00:c380:8544:e45e:a691:d49e'),(104513,'2021-02-03 21:57:17','/?author=11','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104514,'2021-02-03 21:57:18','/?author=12','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104515,'2021-02-03 21:57:19','/?author=13','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104516,'2021-02-03 21:57:21','/?author=14','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104517,'2021-02-03 21:57:22','/?author=15','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104518,'2021-02-03 21:57:23','/?author=16','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104519,'2021-02-03 21:57:24','/?author=17','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104520,'2021-02-03 21:57:28','/?author=18','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104521,'2021-02-03 21:57:54','/?author=19','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104522,'2021-02-03 21:57:55','/?author=20','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'118.24.124.59'),(104523,'2021-02-03 21:58:39','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','72.21.196.65'),(104524,'2021-02-03 21:58:39','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','72.21.196.65'),(104525,'2021-02-03 21:58:39','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','72.21.196.65'),(104526,'2021-02-03 21:58:39','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','72.21.196.65'),(104527,'2021-02-03 21:58:39','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','72.21.196.65'),(104528,'2021-02-03 22:00:24','/locations/remodeling-contractors-northbrook-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104529,'2021-02-03 22:06:50','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104530,'2021-02-03 22:06:50','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104531,'2021-02-03 22:06:50','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104532,'2021-02-03 22:06:51','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104533,'2021-02-03 22:06:51','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104534,'2021-02-03 22:08:11','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104535,'2021-02-03 22:08:11','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.1.75.199'),(104536,'2021-02-03 22:45:20','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104537,'2021-02-03 22:48:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.12.68.115'),(104538,'2021-02-03 22:48:14','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.12.68.115'),(104539,'2021-02-03 22:48:15','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.12.68.115'),(104540,'2021-02-03 22:48:15','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.12.68.115'),(104541,'2021-02-03 22:48:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','24.12.68.115'),(104542,'2021-02-03 22:54:03','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104543,'2021-02-03 22:58:19','/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&party=lamictal-300-mg-reviews&sweet=1482874577','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104544,'2021-02-03 23:03:47','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.20 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104545,'2021-02-03 23:11:35','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','192.81.214.168'),(104546,'2021-02-03 23:22:27','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','107.180.103.185'),(104547,'2021-02-03 23:37:15','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7'),(104548,'2021-02-03 23:37:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7'),(104549,'2021-02-03 23:37:15','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7'),(104550,'2021-02-03 23:37:16','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7'),(104551,'2021-02-03 23:37:16','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7'),(104552,'2021-02-03 23:42:48','/locations/kitchen-remodeling-contractors-roselle-il/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,'54.36.149.96'),(104553,'2021-02-03 23:48:14','/.env','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,'194.49.69.108'),(104554,'2021-02-03 23:49:47','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.2'),(104555,'2021-02-04 00:38:09','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104556,'2021-02-04 00:41:18','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.1 (KHTML, like Gecko) Iron/14.0.850.0 Chrome/14.0.850.0 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104557,'2021-02-04 00:45:04','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','98.206.194.201'),(104558,'2021-02-04 00:45:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','98.206.194.201'),(104559,'2021-02-04 00:45:04','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','98.206.194.201'),(104560,'2021-02-04 00:45:04','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','98.206.194.201'),(104561,'2021-02-04 00:45:04','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','98.206.194.201'),(104562,'2021-02-04 00:57:50','/wp-content/plugins/background-image-cropper/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-content/plugins/background-image-cropper/doc.php','2a01:4f9:c010:9307::1'),(104563,'2021-02-04 01:15:54','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','47.32.49.226'),(104564,'2021-02-04 01:15:54','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','47.32.49.226'),(104565,'2021-02-04 01:15:54','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','47.32.49.226'),(104566,'2021-02-04 01:15:54','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','47.32.49.226'),(104567,'2021-02-04 01:15:55','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','47.32.49.226'),(104568,'2021-02-04 01:17:52','/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36',NULL,'2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104569,'2021-02-04 01:17:54','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104570,'2021-02-04 01:17:54','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104571,'2021-02-04 01:17:54','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104572,'2021-02-04 01:17:54','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104573,'2021-02-04 01:17:54','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104574,'2021-02-04 01:20:24','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','2001:41d0:203:4a2b::'),(104575,'2021-02-04 01:28:26','/locations/remodeling-companies-lake-view-east-chicago-il/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104576,'2021-02-04 01:47:01','/.env','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,'3.89.83.0'),(104577,'2021-02-04 01:52:15','/locations/kitchen-remodeling-contractors-wood-dale-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104578,'2021-02-04 02:08:38','/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104579,'2021-02-04 02:11:24','/home-remodeling-contractors-schaumburg-il/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104580,'2021-02-04 02:12:21','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Northbrook','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104581,'2021-02-04 02:12:41','/locations/remodeling-companies-the-loop-chicago/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104582,'2021-02-04 02:18:29','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.24 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104583,'2021-02-04 02:22:50','/locations/remodeling-contractors-elmwood-park-il/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104584,'2021-02-04 02:23:36','/locations/kitchen-remodeling-contractors-roselle-il/','ZoominfoBot (zoominfobot at zoominfo dot com)',NULL,'104.196.119.37'),(104585,'2021-02-04 02:36:18','/locations/home-remodeling-contractors-portage-park-chicago-il?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36',NULL,'2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104586,'2021-02-04 02:36:19','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104587,'2021-02-04 02:36:20','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2601:240:d400:7820:98e6:f5cb:5bc4:e1f'),(104588,'2021-02-04 03:14:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','189.174.156.143'),(104589,'2021-02-04 03:14:04','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','189.174.156.143'),(104590,'2021-02-04 03:14:04','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','189.174.156.143'),(104591,'2021-02-04 03:14:05','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','189.174.156.143'),(104592,'2021-02-04 03:14:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','189.174.156.143'),(104593,'2021-02-04 03:35:47','/.env','python-requests/2.25.1',NULL,'82.165.56.51'),(104594,'2021-02-04 03:35:50','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','python-requests/2.25.1',NULL,'82.165.56.51'),(104595,'2021-02-04 03:55:08','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.215 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104596,'2021-02-04 04:07:19','/apple-app-site-association','AdsBot-Google (+http://www.google.com/adsbot.html)',NULL,'66.249.91.60'),(104597,'2021-02-04 04:13:33','/docindex.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/docindex.php','2607:5300:60:5f40::'),(104598,'2021-02-04 04:14:40','/locations/home-remodeling-contractors-portage-park-chicago-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104599,'2021-02-04 04:30:49','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','54.37.121.239'),(104600,'2021-02-04 04:30:53','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','54.37.121.239'),(104601,'2021-02-04 04:38:58','/wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104602,'2021-02-04 04:39:05','/wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104603,'2021-02-04 04:39:09','/wp-content/plugins/cloudsafe365-for-wp/admin/editor/cs365_edit.php?file=..%2F..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104604,'2021-02-04 04:39:11','/wp-content/plugins/db-backup/download.php?file=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104605,'2021-02-04 04:39:13','/wp-content/plugins/google-mp3-audio-player/direct_download.php?file=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104606,'2021-02-04 04:39:16','/wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=..%2F..%2F..%2F..%2Fwp-config.php&file_size=10','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104607,'2021-02-04 04:39:23','/wp-content/plugins/history-collection/download.php?var=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104608,'2021-02-04 04:39:24','/wp-content/plugins/old-post-spinner/logview.php?ops_file=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104609,'2021-02-04 04:39:27','/wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104610,'2021-02-04 04:39:37','/wp-content/plugins/pictpress/resize.php?size=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104611,'2021-02-04 04:39:41','/wp-content/plugins/recent-backups/download-file.php?file_link=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104612,'2021-02-04 04:39:43','/wp-content/plugins/robotcpa/f.php?l=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104613,'2021-02-04 04:39:46','/wp-content/plugins/s3bubble-amazon-s3-html-5-video-with-adverts/assets/plugins/ultimate/content/downloader.php?name=wp-config.php&path=..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104614,'2021-02-04 04:39:53','/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104615,'2021-02-04 04:39:56','/wp-content/plugins/site-import/admin/page.php?url=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104616,'2021-02-04 04:40:00','/wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104617,'2021-02-04 04:40:02','/wp-content/plugins/wechat-broadcast/wechat/Image.php?url=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104618,'2021-02-04 04:40:07','/wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104619,'2021-02-04 04:40:09','/wp-content/plugins/wp-filemanager/incl/libfile.php?path=..%2F..%2F..%2F..%2F&filename=wp-config.php&action=download','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104620,'2021-02-04 04:40:12','/wp-content/plugins/wp-miniaudioplayer/map_download.php?fileurl=..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104621,'2021-02-04 04:40:16','/wp-content/plugins/wp-source-control/downloadfiles/download.php?path=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104622,'2021-02-04 04:40:19','/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'178.159.37.134'),(104623,'2021-02-04 04:44:01','/locations/remodeling-companies-lake-view-east-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60613','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104624,'2021-02-04 04:50:44','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'3.231.228.221'),(104625,'2021-02-04 04:50:44','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36',NULL,'3.231.228.221'),(104626,'2021-02-04 04:55:18','/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text%2Fhtml&mla_download_file=..%2F..%2F..%2F..%2Fwp-config.php','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,'176.109.191.208'),(104627,'2021-02-04 05:09:04','/2012/11/','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,'144.76.96.236'),(104628,'2021-02-04 05:09:12','/2012/11/','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,'144.76.96.236'),(104629,'2021-02-04 05:31:50','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.66 Safari/535.11','https://chicagolandremodeling.com/','195.123.247.119'),(104630,'2021-02-04 07:07:52','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1150.1 Iron/20.0.1150.1 Safari/536.11','https://chicagolandremodeling.com/','195.123.247.119'),(104631,'2021-02-04 07:16:00','/locations/remodeling-companies-lake-view-east-chicago-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Chicago-60613','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104632,'2021-02-04 07:21:51','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'146.59.203.207'),(104633,'2021-02-04 07:21:58','/wp-content/db-cache.php','python-requests/2.25.1',NULL,'146.59.203.207'),(104634,'2021-02-04 07:37:20','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104635,'2021-02-04 07:54:22','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104636,'2021-02-04 07:56:50','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.64'),(104637,'2021-02-04 08:02:30','/home-remodeling-contractors-schaumburg-il/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','https://chicagolandremodeling.com/home-remodeling-contractors-schaumburg-il/','195.154.182.201'),(104638,'2021-02-04 08:05:10','/locations/bathroom-remodeling-contractors-irving-park-chicago-il','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104639,'2021-02-04 08:12:09','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104640,'2021-02-04 08:14:05','/locations/bathroom-remodeling-contractors-irving-park-chicago-il','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,'17.58.100.214'),(104641,'2021-02-04 08:24:18','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.210.194.37'),(104642,'2021-02-04 08:24:19','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.210.194.37'),(104643,'2021-02-04 08:24:19','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.210.194.37'),(104644,'2021-02-04 08:24:21','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.210.194.37'),(104645,'2021-02-04 08:24:21','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','162.210.194.37'),(104646,'2021-02-04 08:43:05','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104647,'2021-02-04 08:43:05','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104648,'2021-02-04 08:43:05','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104649,'2021-02-04 08:43:05','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104650,'2021-02-04 08:44:28','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104651,'2021-02-04 08:44:28','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104652,'2021-02-04 08:44:29','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104653,'2021-02-04 08:44:30','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104654,'2021-02-04 08:44:30','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104655,'2021-02-04 08:45:00','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.24 Safari/535.1','https://chicagolandremodeling.com/','195.123.247.119'),(104656,'2021-02-04 08:49:11','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104657,'2021-02-04 08:55:06','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104658,'2021-02-04 08:57:38','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104659,'2021-02-04 08:57:38','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104660,'2021-02-04 08:59:20','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104661,'2021-02-04 08:59:22','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104662,'2021-02-04 09:04:45','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104663,'2021-02-04 09:04:45','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104664,'2021-02-04 09:04:45','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104665,'2021-02-04 09:04:47','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104666,'2021-02-04 09:04:48','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104667,'2021-02-04 09:05:58','/home-remodeling-contractors-schaumburg-il/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://cedarroofcare.net/','77.254.44.165'),(104668,'2021-02-04 09:07:49','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104669,'2021-02-04 09:07:49','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104670,'2021-02-04 09:07:49','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104671,'2021-02-04 09:10:43','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104672,'2021-02-04 09:10:43','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104673,'2021-02-04 09:10:43','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104674,'2021-02-04 09:10:43','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104675,'2021-02-04 09:10:43','/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=Northbrook','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.65'),(104676,'2021-02-04 09:10:44','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104677,'2021-02-04 09:11:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104678,'2021-02-04 09:12:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104679,'2021-02-04 09:12:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104680,'2021-02-04 09:23:35','/wp-content/plugins/background-image-cropper/content-post.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-content/plugins/background-image-cropper/content-post.php','89.163.210.217'),(104681,'2021-02-04 09:39:02','/locations/kitchen-remodeling-contractors-roselle-il','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,'17.58.100.214'),(104682,'2021-02-04 10:42:53','/wp-content/themes/distance-lite/languages/namespaces.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-content/themes/distance-lite/languages/namespaces.php','148.72.232.50'),(104683,'2021-02-04 10:53:46','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104684,'2021-02-04 10:53:47','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104685,'2021-02-04 11:03:47','/.git/config','python-requests/2.25.1',NULL,'51.255.223.31'),(104686,'2021-02-04 11:13:59','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104687,'2021-02-04 11:14:00','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104688,'2021-02-04 11:14:00','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104689,'2021-02-04 11:14:00','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104690,'2021-02-04 11:14:00','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104691,'2021-02-04 11:14:58','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104692,'2021-02-04 11:14:58','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104693,'2021-02-04 11:15:20','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104694,'2021-02-04 11:15:20','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104695,'2021-02-04 11:16:10','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104696,'2021-02-04 11:16:10','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104697,'2021-02-04 11:17:27','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104698,'2021-02-04 11:17:27','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104699,'2021-02-04 11:20:22','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104700,'2021-02-04 11:26:33','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104701,'2021-02-04 11:26:33','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104702,'2021-02-04 11:26:51','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104703,'2021-02-04 11:26:52','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104704,'2021-02-04 11:29:42','/.well-known/apple-app-site-association','AdsBot-Google (+http://www.google.com/adsbot.html)',NULL,'66.249.91.34'),(104705,'2021-02-04 11:32:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104706,'2021-02-04 11:32:37','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104707,'2021-02-04 11:33:02','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104708,'2021-02-04 11:33:02','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104709,'2021-02-04 11:33:36','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104710,'2021-02-04 11:33:36','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104711,'2021-02-04 11:35:09','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104712,'2021-02-04 11:35:09','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104713,'2021-02-04 11:35:19','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104714,'2021-02-04 11:35:20','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104715,'2021-02-04 11:36:36','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104716,'2021-02-04 11:36:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104717,'2021-02-04 11:41:37','/https:/chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.700.3 Safari/534.24','https://chicagolandremodeling.com/','195.123.247.119'),(104718,'2021-02-04 11:42:11','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104719,'2021-02-04 11:42:11','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104720,'2021-02-04 11:42:32','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104721,'2021-02-04 11:42:32','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104722,'2021-02-04 11:42:35','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104723,'2021-02-04 11:42:35','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104724,'2021-02-04 11:46:56','/locations/bathroom-remodeling-contractors-irving-park-chicago-il','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML%2C like Gecko) Mobile/15E148',NULL,'52.154.170.88'),(104725,'2021-02-04 11:52:27','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104726,'2021-02-04 11:52:27','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104727,'2021-02-04 11:52:46','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104728,'2021-02-04 11:52:46','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104729,'2021-02-04 12:22:59','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104730,'2021-02-04 12:22:59','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104731,'2021-02-04 12:22:59','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104732,'2021-02-04 12:26:08','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104733,'2021-02-04 12:26:09','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.8.231.66'),(104734,'2021-02-04 12:27:32','/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104735,'2021-02-04 12:27:33','/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104736,'2021-02-04 12:29:56','/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104737,'2021-02-04 12:29:57','/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.93'),(104738,'2021-02-04 12:31:52','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104739,'2021-02-04 12:31:53','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104740,'2021-02-04 12:35:04','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104741,'2021-02-04 12:35:04','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104742,'2021-02-04 12:38:03','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104743,'2021-02-04 12:38:03','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104744,'2021-02-04 12:38:03','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104745,'2021-02-04 12:38:03','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104746,'2021-02-04 12:39:55','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104747,'2021-02-04 12:39:55','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104748,'2021-02-04 12:46:46','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104749,'2021-02-04 12:46:47','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104750,'2021-02-04 12:46:47','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104751,'2021-02-04 12:46:47','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104752,'2021-02-04 12:48:14','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104753,'2021-02-04 12:48:14','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104754,'2021-02-04 12:48:15','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104755,'2021-02-04 12:48:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104756,'2021-02-04 12:48:30','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104757,'2021-02-04 12:48:30','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104758,'2021-02-04 12:48:30','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104759,'2021-02-04 12:48:30','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104760,'2021-02-04 12:48:30','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104761,'2021-02-04 12:50:39','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104762,'2021-02-04 12:50:39','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104763,'2021-02-04 12:59:40','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104764,'2021-02-04 12:59:40','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104765,'2021-02-04 12:59:52','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104766,'2021-02-04 12:59:52','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104767,'2021-02-04 13:00:43','/home-remodeling-contractors-schaumburg-il/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104768,'2021-02-04 13:00:53','/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104769,'2021-02-04 13:01:01','/locations/remodeling-contractors-elmwood-park-il/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104770,'2021-02-04 13:01:09','/locations/kitchen-remodeling-contractors-roselle-il/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104771,'2021-02-04 13:01:19','/locations/remodeling-companies-lake-view-east-chicago-il/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104772,'2021-02-04 13:01:25','/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','Mozilla/5.0 (compatible; Adsbot/3.1)','https://chicagolandremodeling.com/','216.18.204.209'),(104773,'2021-02-04 13:02:08','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104774,'2021-02-04 13:02:08','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104775,'2021-02-04 13:06:54','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104776,'2021-02-04 13:06:54','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104777,'2021-02-04 13:07:18','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104778,'2021-02-04 13:07:18','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104779,'2021-02-04 13:07:22','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104780,'2021-02-04 13:07:22','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104781,'2021-02-04 13:08:27','/locations/remodeling-contractors-northbrook-il/','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.65'),(104782,'2021-02-04 13:08:28','/locations/remodeling-contractors-northbrook-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104783,'2021-02-04 13:10:15','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104784,'2021-02-04 13:10:15','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104785,'2021-02-04 13:11:12','/locations/remodeling-contractors-northbrook-il/','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.95'),(104786,'2021-02-04 13:11:13','/locations/remodeling-contractors-northbrook-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.138 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.69.65'),(104787,'2021-02-04 15:02:33','/locations/bathroom-remodeling-contractors-irving-park-chicago-il','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://yelp-sales--c.visualforce.com/','185.98.173.203'),(104788,'2021-02-04 15:02:37','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','185.98.173.203'),(104789,'2021-02-04 15:02:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','185.98.173.203'),(104790,'2021-02-04 15:02:37','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','185.98.173.203'),(104791,'2021-02-04 15:02:39','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','185.98.173.203'),(104792,'2021-02-04 15:02:40','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','185.98.173.203'),(104793,'2021-02-04 15:20:53','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104794,'2021-02-04 15:20:53','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','83.8.163.179'),(104795,'2021-02-04 15:58:36','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104796,'2021-02-04 15:58:36','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104797,'2021-02-04 15:58:37','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104798,'2021-02-04 15:58:37','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104799,'2021-02-04 15:58:37','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104800,'2021-02-04 16:00:09','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104801,'2021-02-04 16:00:09','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104802,'2021-02-04 16:00:22','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104803,'2021-02-04 16:00:22','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','188.146.102.113'),(104804,'2021-02-04 16:18:11','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',NULL,'199.217.104.236'),(104805,'2021-02-04 16:34:19','/atom.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104806,'2021-02-04 17:23:20','/tel:7085839904','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','https://chicagolandremodeling.com','52.20.114.255'),(104807,'2021-02-04 17:23:24','/tel:7085839904','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','https://chicagolandremodeling.com','34.230.175.154'),(104808,'2021-02-04 17:24:05','/category/tel:7085839904','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','https://chicagolandremodeling.com/category/blog','52.20.114.255'),(104809,'2021-02-04 17:24:08','/category/tel:7085839904','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','https://chicagolandremodeling.com/category/blog','52.21.85.84'),(104810,'2021-02-04 17:29:56','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.222.20.82'),(104811,'2021-02-04 17:29:56','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.222.20.82'),(104812,'2021-02-04 17:29:56','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.222.20.82'),(104813,'2021-02-04 17:29:56','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.222.20.82'),(104814,'2021-02-04 17:29:57','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','12.222.20.82'),(104815,'2021-02-04 17:56:19','/sitemap.txt','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.94'),(104816,'2021-02-04 18:15:02','/locations/remodeling-contractors-elmwood-park-il/chicago60618-2/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104817,'2021-02-04 18:17:26','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104818,'2021-02-04 18:17:26','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104819,'2021-02-04 18:17:26','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104820,'2021-02-04 18:17:26','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104821,'2021-02-04 18:17:26','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104822,'2021-02-04 18:25:27','/wp-content/themes/images/arrow_right.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104823,'2021-02-04 18:25:27','/wp-content/themes/images/arrow_left.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104824,'2021-02-04 18:28:17','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104825,'2021-02-04 18:28:17','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','64.107.3.137'),(104826,'2021-02-04 18:41:39','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104827,'2021-02-04 18:41:40','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104828,'2021-02-04 18:41:40','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104829,'2021-02-04 18:41:40','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104830,'2021-02-04 18:41:41','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104831,'2021-02-04 18:43:41','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104832,'2021-02-04 18:43:41','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104833,'2021-02-04 18:43:41','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104834,'2021-02-04 18:43:41','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104835,'2021-02-04 18:43:41','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','204.62.118.152'),(104836,'2021-02-04 18:45:13','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104837,'2021-02-04 18:45:13','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104838,'2021-02-04 18:45:13','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104839,'2021-02-04 18:45:14','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104840,'2021-02-04 18:45:14','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104841,'2021-02-04 18:47:02','/blog/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104842,'2021-02-04 18:47:21','/site/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104843,'2021-02-04 18:47:39','/website/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104844,'2021-02-04 18:47:49','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.47.41.141'),(104845,'2021-02-04 18:47:49','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.47.41.141'),(104846,'2021-02-04 18:47:49','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.47.41.141'),(104847,'2021-02-04 18:47:49','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.47.41.141'),(104848,'2021-02-04 18:47:49','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','37.47.41.141'),(104849,'2021-02-04 18:48:02','/doc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/doc.php','208.109.43.16'),(104850,'2021-02-04 18:48:06','/new/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104851,'2021-02-04 18:48:25','/blog.chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104852,'2021-02-04 18:48:42','/blog.chicagolandremodeling/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWeb            Kit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,'91.121.148.189'),(104853,'2021-02-04 18:49:05','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104854,'2021-02-04 18:49:05','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104855,'2021-02-04 18:49:06','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104856,'2021-02-04 18:49:06','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104857,'2021-02-04 18:49:06','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','77.254.44.165'),(104858,'2021-02-04 18:52:31','/sitemaps.xml','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.106'),(104859,'2021-02-04 19:31:01','/wp-info.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-info.php','31.28.24.113'),(104860,'2021-02-04 19:40:48','/sitemap.xml.gz','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104861,'2021-02-04 20:48:47','/gank.php.PhP','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/gank.php.PhP','216.244.87.58'),(104862,'2021-02-04 20:55:11','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:9880:1950:73:bd03:cf62:f561:bf61'),(104863,'2021-02-04 20:55:11','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:9880:1950:73:bd03:cf62:f561:bf61'),(104864,'2021-02-04 20:55:11','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:9880:1950:73:bd03:cf62:f561:bf61'),(104865,'2021-02-04 20:55:12','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:9880:1950:73:bd03:cf62:f561:bf61'),(104866,'2021-02-04 20:55:13','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2607:9880:1950:73:bd03:cf62:f561:bf61'),(104867,'2021-02-04 20:58:16','/vendor/phpunit/phpunit/phpunit.xsd','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,'40.121.135.64'),(104868,'2021-02-04 21:12:10','/wp-content/themes/distance-lite/languages/namespaces.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/wp-content/themes/distance-lite/languages/namespaces.php','46.30.40.97'),(104869,'2021-02-04 22:35:33','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.60.232'),(104870,'2021-02-04 22:35:34','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.60.232'),(104871,'2021-02-04 22:35:34','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.60.232'),(104872,'2021-02-04 22:35:35','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.60.232'),(104873,'2021-02-04 22:35:35','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','165.225.60.232'),(104874,'2021-02-04 22:55:20','/home-remodeling-contractors-schaumburg-il/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104875,'2021-02-04 23:38:34','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e'),(104876,'2021-02-04 23:38:34','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e'),(104877,'2021-02-04 23:38:34','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e'),(104878,'2021-02-04 23:38:35','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e'),(104879,'2021-02-04 23:38:35','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e'),(104880,'2021-02-05 00:15:56','/2012/11/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,'54.36.148.100'),(104881,'2021-02-05 00:20:38','/?author=2','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104882,'2021-02-05 00:20:55','/?author=3','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104883,'2021-02-05 00:21:00','/?author=4','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104884,'2021-02-05 00:21:08','/?author=5','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104885,'2021-02-05 00:21:10','/?author=6','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104886,'2021-02-05 00:21:26','/?author=7','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104887,'2021-02-05 00:21:32','/?author=8','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104888,'2021-02-05 00:21:33','/?author=9','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104889,'2021-02-05 00:21:40','/?author=10','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104890,'2021-02-05 00:21:42','/?author=11','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104891,'2021-02-05 00:21:54','/?author=12','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104892,'2021-02-05 00:21:55','/?author=13','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104893,'2021-02-05 00:21:57','/?author=14','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104894,'2021-02-05 00:22:00','/?author=15','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104895,'2021-02-05 00:22:08','/?author=16','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104896,'2021-02-05 00:22:17','/?author=17','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104897,'2021-02-05 00:22:26','/?author=18','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104898,'2021-02-05 00:22:29','/?author=19','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104899,'2021-02-05 00:22:36','/?author=20','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,'139.155.172.190'),(104900,'2021-02-05 01:41:43','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',NULL,'159.65.153.102'),(104901,'2021-02-05 01:41:47','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',NULL,'79.137.78.123'),(104902,'2021-02-05 02:17:37','/404.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','http://chicagolandremodeling.com/404.php','51.68.11.195'),(104903,'2021-02-05 02:58:04','/locations/home-remodeling-contractors-portage-park-chicago-il/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,'13.66.139.17'),(104904,'2021-02-05 03:02:04','/locations/remodeling-contractors-elmwood-park-il/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.140 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,'66.249.73.191'),(104905,'2021-02-05 03:15:40','/wp-includes/wps-cache.php','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',NULL,'117.2.189.221'),(104906,'2021-02-05 04:05:39','/?author=2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',NULL,'94.23.250.140'),(104907,'2021-02-05 04:05:43','/?author=3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',NULL,'159.89.140.121'),(104908,'2021-02-05 06:31:53','/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104909,'2021-02-05 06:31:53','/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104910,'2021-02-05 06:31:54','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104911,'2021-02-05 06:31:54','/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104912,'2021-02-05 06:31:56','/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/','23.100.232.233'),(104913,'2021-02-05 06:44:52','/404testpage4525d2fdc','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://sucuri.net','18.223.142.71'),(104914,'2021-02-05 06:44:53','/404javascript.js','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://www.google.com/url/?sa=t','18.223.142.71'),(104915,'2021-02-05 06:54:00','/locations/bathroom-remodeling-contractors-irving-park-chicago-il','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,'17.58.102.161'),(104916,'2021-02-05 07:38:29','/locations/kitchen-remodeling-contractors-roselle-il','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,'17.58.102.161'),(104917,'2021-02-05 08:16:41','/wp-content/themes/images/cursors/cursor_arrow_left.png','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','197.210.174.31'),(104918,'2021-02-05 08:16:41','/wp-content/themes/images/cursors/cursor_arrow_right.cur','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','197.210.174.31'),(104919,'2021-02-05 08:16:41','/wp-content/themes/images/cursors/cursor_arrow_left.cur','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','197.210.174.31'),(104920,'2021-02-05 08:16:42','/wp-content/themes/images/cursors/cursor_arrow_right.png','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','197.210.174.31'),(104921,'2021-02-05 08:16:42','/wp-content/themes/images/big_transparent.gif','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','197.210.174.31'),(104922,'2021-02-05 08:34:19','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','102.130.112.193'),(104923,'2021-02-05 08:39:59','/?author=2','Mozilla/5.0(Windows NT 6.3; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','http://chicagolandremodeling.com?author=2','103.111.30.40');
/*!40000 ALTER TABLE `wp_redirection_404` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_groups`
--

DROP TABLE IF EXISTS `wp_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_groups` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tracking` int(11) NOT NULL DEFAULT '1',
  `module_id` int(11) unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_groups`
--

LOCK TABLES `wp_redirection_groups` WRITE;
/*!40000 ALTER TABLE `wp_redirection_groups` DISABLE KEYS */;
INSERT INTO `wp_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1);
/*!40000 ALTER TABLE `wp_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_items`
--

DROP TABLE IF EXISTS `wp_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_items` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `regex` int(11) unsigned NOT NULL DEFAULT '0',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  `last_count` int(10) unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `group_id` int(11) NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_code` int(11) unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_items`
--

LOCK TABLES `wp_redirection_items` WRITE;
/*!40000 ALTER TABLE `wp_redirection_items` DISABLE KEYS */;
INSERT INTO `wp_redirection_items` VALUES (1,'/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0',0,0,23576,'2021-02-05 02:15:56',1,'enabled','url',301,'/','url',''),(2,'/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0',0,1,0,'0000-00-00 00:00:00',1,'enabled','url',301,'/','url',''),(3,'/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0',0,2,0,'0000-00-00 00:00:00',1,'enabled','url',301,'/','url','');
/*!40000 ALTER TABLE `wp_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_redirection_logs`
--

DROP TABLE IF EXISTS `wp_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_redirection_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referrer` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `redirection_id` int(11) unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `module_id` int(11) unsigned NOT NULL,
  `group_id` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`),
  KEY `group_id` (`group_id`),
  KEY `module_id` (`module_id`)
) ENGINE=InnoDB AUTO_INCREMENT=23577 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_redirection_logs`
--

LOCK TABLES `wp_redirection_logs` WRITE;
/*!40000 ALTER TABLE `wp_redirection_logs` DISABLE KEYS */;
INSERT INTO `wp_redirection_logs` VALUES (23326,'2021-01-28 06:40:16','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2600:1008:b15a:9287:35dd:13ed:b730:2933',0,NULL),(23327,'2021-01-28 07:48:04','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','https://chicagolandremodeling.com/thankyou/',1,'40.77.188.189',0,NULL),(23328,'2021-01-28 08:45:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2001:56a:7992:4c00:fde3:29ff:4880:df9b',0,NULL),(23329,'2021-01-28 09:08:59','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0','https://chicagolandremodeling.com/contact-us/',1,'182.68.55.78',0,NULL),(23330,'2021-01-28 12:44:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/about-us/',1,'195.162.81.104',0,NULL),(23331,'2021-01-28 12:53:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','https://chicagolandremodeling.com/stairs/',1,'111.206.221.92',0,NULL),(23332,'2021-01-28 14:25:29','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0',0,NULL),(23333,'2021-01-28 14:31:12','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'2601:585:8002:1b50:34ff:3e9e:1c7d:2aa0',0,NULL),(23334,'2021-01-28 15:19:50','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2600:1702:3310:d7b0:f4bb:75f5:bd33:2a40',0,NULL),(23335,'2021-01-28 16:37:37','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2600:1700:a5f0:ba70:d5d8:6002:923d:4c3e',0,NULL),(23336,'2021-01-28 18:12:26','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/77.0.3835.0 Safari/537.36','https://chicagolandremodeling.com/',1,'13.57.48.36',0,NULL),(23337,'2021-01-28 18:28:13','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'172.58.140.2',0,NULL),(23338,'2021-01-28 19:22:27','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','https://chicagolandremodeling.com/',1,'31.60.159.20',0,NULL),(23339,'2021-01-28 19:26:02','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park',1,'69.148.201.166',0,NULL),(23340,'2021-01-28 19:26:25','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/kitchen-gallery/',1,'69.148.201.166',0,NULL),(23341,'2021-01-28 19:37:22','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/',1,'2601:241:8c00:c380:e:f8c3:364c:95cd',0,NULL),(23342,'2021-01-28 19:37:58','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2601:241:8c00:c380:e:f8c3:364c:95cd',0,NULL),(23343,'2021-01-28 21:16:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/',1,'159.180.140.142',0,NULL),(23344,'2021-01-28 21:27:11','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/bathroom-remodeling/',1,'159.180.140.142',0,NULL),(23345,'2021-01-28 21:27:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/bathroom-gallery/',1,'159.180.140.142',0,NULL),(23346,'2021-01-28 21:30:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/',1,'24.13.226.88',0,NULL),(23347,'2021-01-28 23:59:46','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'191.96.185.105',0,NULL),(23348,'2021-01-29 00:27:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'204.152.235.219',0,NULL),(23349,'2021-01-29 02:16:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/',1,'23.100.232.233',0,NULL),(23350,'2021-01-29 07:43:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/',1,'23.100.232.233',0,NULL),(23351,'2021-01-29 10:33:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'23.106.249.34',0,NULL),(23352,'2021-01-29 10:43:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23353,'2021-01-29 11:03:00','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606',1,'162.210.194.38',0,NULL),(23354,'2021-01-29 11:33:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/services/',1,'195.162.81.104',0,NULL),(23355,'2021-01-29 13:14:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'42.236.10.93',0,NULL),(23356,'2021-01-29 13:15:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'42.236.10.78',0,NULL),(23357,'2021-01-29 13:18:26','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'42.236.10.114',0,NULL),(23358,'2021-01-29 13:45:17','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/',1,'2600:1008:b128:8f4:2d63:28c5:7cb9:880b',0,NULL),(23359,'2021-01-29 13:45:32','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'2600:1008:b128:8f4:2d63:28c5:7cb9:880b',0,NULL),(23360,'2021-01-29 13:46:48','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 11; SM-G986U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'2600:1008:b128:8f4:2d63:28c5:7cb9:880b',0,NULL),(23361,'2021-01-29 15:12:29','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23362,'2021-01-29 16:04:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/',1,'2601:245:ce80:3840:3832:2f7f:9e88:816d',0,NULL),(23363,'2021-01-29 17:34:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'73.208.143.119',0,NULL),(23364,'2021-01-29 19:01:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2600:387:b:3::ad',0,NULL),(23365,'2021-01-29 19:20:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park',1,'2601:241:8701:a850:b489:488a:c0b8:6713',0,NULL),(23366,'2021-01-29 20:31:56','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'73.9.69.208',0,NULL),(23367,'2021-01-29 20:36:27','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23368,'2021-01-29 21:35:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/',1,'2603:9000:f802:1700:5db9:340c:f4b4:1ac6',0,NULL),(23369,'2021-01-29 21:35:46','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-companies-lake-view-east-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60613',1,'2603:9000:f802:1700:5db9:340c:f4b4:1ac6',0,NULL),(23370,'2021-01-29 22:06:17','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/',1,'185.98.173.203',0,NULL),(23371,'2021-01-30 02:29:58','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23372,'2021-01-30 05:54:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'2601:241:101:24b0:fd07:d9cf:7af3:3268',0,NULL),(23373,'2021-01-30 06:40:48','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23374,'2021-01-30 10:24:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23375,'2021-01-30 14:09:41','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.91',0,NULL),(23376,'2021-01-30 14:29:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/',1,'2600:1700:f761:1740:3461:b2b0:724b:5ac1',0,NULL),(23377,'2021-01-30 17:41:27','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23378,'2021-01-30 19:18:51','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-companies-lake-view-east-chicago-il/',1,'2601:240:e380:2120:48d6:49bd:1c5c:578f',0,NULL),(23379,'2021-01-30 19:50:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','https://chicagolandremodeling.com/',1,'3.249.186.142',0,NULL),(23380,'2021-01-30 19:50:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','https://chicagolandremodeling.com/',1,'3.249.186.142',0,NULL),(23381,'2021-01-30 19:50:18','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)',NULL,1,'3.249.186.142',0,NULL),(23382,'2021-01-30 20:02:50','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.0 Safari/537.36','https://chicagolandremodeling.com/',1,'51.15.201.34',0,NULL),(23383,'2021-01-30 20:02:51','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.0 Safari/537.36','https://chicagolandremodeling.com/',1,'51.15.119.40',0,NULL),(23384,'2021-01-30 20:02:51','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.0 Safari/537.36','https://chicagolandremodeling.com/',1,'51.158.169.2',0,NULL),(23385,'2021-01-30 20:02:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.0 Safari/537.36','https://chicagolandremodeling.com/',1,'163.172.150.182',0,NULL),(23386,'2021-01-30 22:08:14','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'73.208.121.159',0,NULL),(23387,'2021-01-30 22:08:40','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/services/',1,'73.208.121.159',0,NULL),(23388,'2021-01-30 22:38:54','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23389,'2021-01-31 01:27:10','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23390,'2021-01-31 07:00:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.65',0,NULL),(23391,'2021-01-31 07:26:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)','https://chicagolandremodeling.com/contact-us/',1,'104.144.8.209',0,NULL),(23392,'2021-01-31 08:55:20','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2710.82 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'141.98.152.208',0,NULL),(23393,'2021-01-31 10:55:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23394,'2021-01-31 13:56:32','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2601:243:cc00:da20:314a:d44e:7f3c:687b',0,NULL),(23395,'2021-01-31 15:12:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2730.67 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'196.16.69.61',0,NULL),(23396,'2021-01-31 16:41:18','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; https://zhanzhang.toutiao.com/)','https://chicagolandremodeling.com/',1,'111.225.149.224',0,NULL),(23397,'2021-01-31 17:09:43','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23398,'2021-01-31 17:31:52','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko','https://chicagolandremodeling.com/',1,'103.212.17.27',0,NULL),(23399,'2021-01-31 17:32:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko','https://chicagolandremodeling.com/contact-us/',1,'103.212.17.27',0,NULL),(23400,'2021-01-31 17:32:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko','https://chicagolandremodeling.com/thankyou/',1,'103.212.17.27',0,NULL),(23401,'2021-01-31 18:15:45','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/do-it-yourself-bathroom-ideas/',1,'97.92.245.54',0,NULL),(23402,'2021-01-31 18:29:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2607:fb90:f016:a044:40d4:87e2:160c:97c1',0,NULL),(23403,'2021-01-31 19:00:09','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/thankyou/',1,'76.198.26.113',0,NULL),(23404,'2021-01-31 19:00:13','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/gallery/',1,'76.198.26.113',0,NULL),(23405,'2021-01-31 19:50:00','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606',1,'2601:241:8d81:6530:2811:9b22:6466:78cd',0,NULL),(23406,'2021-01-31 19:50:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2601:241:8d81:6530:2811:9b22:6466:78cd',0,NULL),(23407,'2021-01-31 19:50:25','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2601:241:8d81:6530:2811:9b22:6466:78cd',0,NULL),(23408,'2021-01-31 20:41:26','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/',1,'2601:248:4002:2000:692c:66ec:6bfe:14e',0,NULL),(23409,'2021-01-31 21:43:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/thankyou/',1,'2600:1700:5520:9fb0:7c72:ecc:8e01:18a9',0,NULL),(23410,'2021-01-31 23:48:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23411,'2021-02-01 01:45:45','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park',1,'2601:241:8701:a850:39cd:5e65:8634:b282',0,NULL),(23412,'2021-02-01 02:09:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/',1,'23.100.232.233',0,NULL),(23413,'2021-02-01 02:38:12','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.119 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-companies-lake-view-east-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60613',1,'2603:9000:f802:1700:fd21:c9bb:ca7b:2b14',0,NULL),(23414,'2021-02-01 03:14:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23415,'2021-02-01 04:29:02','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b',NULL,1,'40.77.189.234',0,NULL),(23416,'2021-02-01 07:32:43','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23417,'2021-02-01 13:09:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23418,'2021-02-01 15:30:53','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Northbrook',1,'2601:246:c900:3aed:894a:17f1:8dd9:91dd',0,NULL),(23419,'2021-02-01 16:27:40','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23420,'2021-02-01 16:44:49','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.53','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'75.58.30.109',0,NULL),(23421,'2021-02-01 17:00:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.53','https://chicagolandremodeling.com/thankyou/',1,'75.58.30.109',0,NULL),(23422,'2021-02-01 17:03:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.53','https://chicagolandremodeling.com/reviews/',1,'75.58.30.109',0,NULL),(23423,'2021-02-01 17:20:40','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/',1,'2607:fb90:f0c9:eea9:25f6:6918:fe31:d418',0,NULL),(23424,'2021-02-01 17:21:43','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/bathroom-remodeling/',1,'2607:fb90:f0c9:eea9:25f6:6918:fe31:d418',0,NULL),(23425,'2021-02-01 17:22:39','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 10; SM-G960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/thankyou/',1,'2607:fb90:f0c9:eea9:25f6:6918:fe31:d418',0,NULL),(23426,'2021-02-01 18:31:00','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.53','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'2601:346:8100:1d60:943d:5a8f:c52d:90a7',0,NULL),(23427,'2021-02-01 18:31:08','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.53','https://chicagolandremodeling.com/kitchen-remodeling/',1,'2601:346:8100:1d60:943d:5a8f:c52d:90a7',0,NULL),(23428,'2021-02-01 19:17:45','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23429,'2021-02-01 19:25:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux i686 on x86_64; rv:46.0) Gecko/20100101 Firefox/46.0','https://chicagolandremodeling.com/contact-us/',1,'185.205.199.41',0,NULL),(23430,'2021-02-01 20:37:45','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'73.9.113.100',0,NULL),(23431,'2021-02-01 20:53:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'73.9.113.100',0,NULL),(23432,'2021-02-01 20:53:49','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/thankyou/',1,'73.9.113.100',0,NULL),(23433,'2021-02-01 21:00:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','https://chicagolandremodeling.com/',1,'63.88.73.10',0,NULL),(23434,'2021-02-01 21:01:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.41','https://chicagolandremodeling.com/',1,'209.141.120.132',0,NULL),(23435,'2021-02-01 21:21:14','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'2601:246:802:9160:4ad:8a45:129c:5cc6',0,NULL),(23436,'2021-02-01 21:21:26','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'2601:246:802:9160:4ad:8a45:129c:5cc6',0,NULL),(23437,'2021-02-01 21:39:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'3.10.215.249',0,NULL),(23438,'2021-02-01 21:46:54','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','https://chicagolandremodeling.com/',1,'3.141.37.90',0,NULL),(23439,'2021-02-01 21:47:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','https://chicagolandremodeling.com/',1,'3.141.37.90',0,NULL),(23440,'2021-02-01 21:55:20','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'223.226.103.57',0,NULL),(23441,'2021-02-01 21:58:52','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'223.226.103.57',0,NULL),(23442,'2021-02-01 22:24:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/category/blog/',1,'2600:8800:5995:8500:2013:461e:7fef:fd7b',0,NULL),(23443,'2021-02-01 23:08:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2601:243:1100:ee30:945b:3a18:49f9:b365',0,NULL),(23444,'2021-02-01 23:09:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/kitchen-remodeling/',1,'2601:243:1100:ee30:945b:3a18:49f9:b365',0,NULL),(23445,'2021-02-01 23:55:08','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2651.41 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'196.17.91.210',0,NULL),(23446,'2021-02-02 00:06:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23447,'2021-02-02 01:04:47','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)','https://chicagolandremodeling.com/services/',1,'17.58.100.214',0,NULL),(23448,'2021-02-02 02:51:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'66.249.66.221',0,NULL),(23449,'2021-02-02 02:55:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'50.76.76.30',0,NULL),(23450,'2021-02-02 03:07:08','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'78.129.191.6',0,NULL),(23451,'2021-02-02 03:07:12','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 7.0; SM-G615FU Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'78.129.191.6',0,NULL),(23452,'2021-02-02 03:22:02','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.114 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'66.249.66.223',0,NULL),(23453,'2021-02-02 04:19:59','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23454,'2021-02-02 08:04:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23455,'2021-02-02 11:28:09','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) splash Safari/538.1','https://chicagolandremodeling.com/',1,'54.236.77.177',0,NULL),(23456,'2021-02-02 11:43:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 10; Nokia 2.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.120 Mobile Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/',1,'209.236.113.244',0,NULL),(23457,'2021-02-02 12:19:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'162.243.24.119',0,NULL),(23458,'2021-02-02 12:20:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'162.243.24.119',0,NULL),(23459,'2021-02-02 12:27:15','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'139.5.242.228',0,NULL),(23460,'2021-02-02 12:27:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'139.5.242.228',0,NULL),(23461,'2021-02-02 12:38:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23462,'2021-02-02 13:27:25','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'42.236.10.75',0,NULL),(23463,'2021-02-02 14:45:16','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'24.136.27.85',0,NULL),(23464,'2021-02-02 15:32:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/76.0.3803.0 Safari/537.36','https://chicagolandremodeling.com/',1,'52.87.217.245',0,NULL),(23465,'2021-02-02 15:41:22','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-contractors-northbrook-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Northbrook',1,'159.180.132.12',0,NULL),(23466,'2021-02-02 15:41:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','https://chicagolandremodeling.com/testimonials/',1,'159.180.132.12',0,NULL),(23467,'2021-02-02 16:00:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23468,'2021-02-02 16:52:13','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'165.225.61.110',0,NULL),(23469,'2021-02-02 17:30:49','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'73.208.143.119',0,NULL),(23470,'2021-02-02 17:48:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'72.21.196.65',0,NULL),(23471,'2021-02-02 17:48:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'209.117.191.129',0,NULL),(23472,'2021-02-02 17:49:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/',1,'209.117.191.129',0,NULL),(23473,'2021-02-02 18:11:39','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'2600:8800:5995:8500:54f4:4f71:6bd3:6772',0,NULL),(23474,'2021-02-02 18:27:42','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'24.136.27.85',0,NULL),(23475,'2021-02-02 18:39:56','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'24.136.27.85',0,NULL),(23476,'2021-02-02 18:50:48','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'188.146.100.105',0,NULL),(23477,'2021-02-02 18:54:58','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'73.9.69.208',0,NULL),(23478,'2021-02-02 18:56:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'2601:249:b01:350:406b:e87d:7d84:8d5d',0,NULL),(23479,'2021-02-02 18:58:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/wp-admin/',1,'188.146.100.105',0,NULL),(23480,'2021-02-02 18:59:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'2601:249:b01:350:406b:e87d:7d84:8d5d',0,NULL),(23481,'2021-02-02 19:21:52','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/reviews/',1,'73.9.69.208',0,NULL),(23482,'2021-02-02 19:30:47','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'81.92.203.122',0,NULL),(23483,'2021-02-02 19:50:48','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'209.249.69.82',0,NULL),(23484,'2021-02-02 19:51:02','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','https://chicagolandremodeling.com/?fbclid=IwAR0RxCLYtl_bKTnkx1xEloqF4ds91q9xK-6lobhXPY50mwHVXa0LyBz1GNI',1,'2a03:2880:10ff:1f::face:b00c',0,NULL),(23485,'2021-02-02 20:19:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'73.9.69.208',0,NULL),(23486,'2021-02-02 21:00:47','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'81.92.203.122',0,NULL),(23487,'2021-02-02 21:28:18','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23488,'2021-02-02 23:24:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'12.227.86.34',0,NULL),(23489,'2021-02-02 23:24:27','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'12.227.86.34',0,NULL),(23490,'2021-02-02 23:25:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'12.227.86.34',0,NULL),(23491,'2021-02-03 01:40:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','https://chicagolandremodeling.com/',1,'18.179.47.148',0,NULL),(23492,'2021-02-03 01:41:02','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)',NULL,1,'18.179.47.148',0,NULL),(23493,'2021-02-03 01:42:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','https://chicagolandremodeling.com/',1,'18.157.73.76',0,NULL),(23494,'2021-02-03 01:42:59','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)',NULL,1,'18.157.73.76',0,NULL),(23495,'2021-02-03 01:45:41','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.91',0,NULL),(23496,'2021-02-03 03:13:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/reviews/',1,'73.208.143.119',0,NULL),(23497,'2021-02-03 04:52:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.65',0,NULL),(23498,'2021-02-03 04:58:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark',1,'2600:8800:140d:a700:a9cd:62e5:3fcc:bc2f',0,NULL),(23499,'2021-02-03 05:28:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/',1,'23.100.232.233',0,NULL),(23500,'2021-02-03 06:45:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://sucuri.net',1,'18.223.142.71',0,NULL),(23501,'2021-02-03 09:11:27','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 11; Pixel 4 XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleContact&utm_medium=GoogleContact&utm_campaign=ChicagoPortagePark',1,'207.229.182.10',0,NULL),(23502,'2021-02-03 09:32:17','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23503,'2021-02-03 11:50:13','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/home-remodeling-contractors-schaumburg-il/',1,'182.184.68.101',0,NULL),(23504,'2021-02-03 12:21:15','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23505,'2021-02-03 14:48:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','AdsBot-Google (+http://www.google.com/adsbot.html)','https://chicagolandremodeling.com/about-us/',1,'66.249.91.60',0,NULL),(23506,'2021-02-03 15:50:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/',1,'2600:1008:b06f:c011:eded:d52d:c47b:2bce',0,NULL),(23507,'2021-02-03 16:00:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'72.21.196.65',0,NULL),(23508,'2021-02-03 16:34:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23509,'2021-02-03 16:44:04','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/',1,'73.247.118.51',0,NULL),(23510,'2021-02-03 16:44:11','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/services/',1,'73.247.118.51',0,NULL),(23511,'2021-02-03 16:44:48','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/',1,'73.247.118.51',0,NULL),(23512,'2021-02-03 17:42:21','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23513,'2021-02-03 17:42:57','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/wp-admin/',1,'77.254.44.165',0,NULL),(23514,'2021-02-03 17:43:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23515,'2021-02-03 17:46:19','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'195.181.163.45',0,NULL),(23516,'2021-02-03 17:51:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','https://chicagolandremodeling.com/',1,'73.208.143.119',0,NULL),(23517,'2021-02-03 18:52:39','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'77.254.44.165',0,NULL),(23518,'2021-02-03 18:57:25','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/30.0  Mobile/15E148 Safari/605.1.15','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park',1,'2601:249:8b80:d850::b72',0,NULL),(23519,'2021-02-03 19:20:43','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','https://chicagolandremodeling.com/kitchen-remodeling/',1,'40.77.189.118',0,NULL),(23520,'2021-02-03 19:55:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/',1,'174.126.209.125',0,NULL),(23521,'2021-02-03 20:01:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'182.185.156.246',0,NULL),(23522,'2021-02-03 20:01:53','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'182.185.156.246',0,NULL),(23523,'2021-02-03 20:13:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'182.185.156.246',0,NULL),(23524,'2021-02-03 20:41:40','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'2600:1700:b3c:2e0:48b5:80e6:9c7c:2269',0,NULL),(23525,'2021-02-03 20:41:43','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'2600:1700:b3c:2e0:48b5:80e6:9c7c:2269',0,NULL),(23526,'2021-02-03 20:43:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23527,'2021-02-03 20:49:04','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'195.181.163.45',0,NULL),(23528,'2021-02-03 21:52:30','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/',1,'73.9.69.208',0,NULL),(23529,'2021-02-03 21:53:07','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/',1,'73.9.69.208',0,NULL),(23530,'2021-02-03 21:56:54','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'72.21.196.65',0,NULL),(23531,'2021-02-03 21:57:14','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2601:241:8c00:c380:8544:e45e:a691:d49e',0,NULL),(23532,'2021-02-03 21:57:26','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/gallery/',1,'2601:241:8c00:c380:8544:e45e:a691:d49e',0,NULL),(23533,'2021-02-03 21:58:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/kitchen-gallery/',1,'72.21.196.65',0,NULL),(23534,'2021-02-03 22:07:28','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/gallery/',1,'24.1.75.199',0,NULL),(23535,'2021-02-03 23:37:14','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7',0,NULL),(23536,'2021-02-03 23:37:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/about-us/',1,'2601:243:1f00:49c0:18b2:ae9d:afa3:2ef7',0,NULL),(23537,'2021-02-04 00:45:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','https://chicagolandremodeling.com/',1,'98.206.194.201',0,NULL),(23538,'2021-02-04 01:37:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.144',0,NULL),(23539,'2021-02-04 03:14:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'189.174.156.143',0,NULL),(23540,'2021-02-04 04:07:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','AdsBot-Google (+http://www.google.com/adsbot.html)','https://chicagolandremodeling.com/',1,'66.249.91.60',0,NULL),(23541,'2021-02-04 05:11:37','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','https://chicagolandremodeling.com/contact-us/',1,'216.158.194.251',0,NULL),(23542,'2021-02-04 06:01:01','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23543,'2021-02-04 08:23:24','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'162.210.194.37',0,NULL),(23544,'2021-02-04 08:39:23','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23545,'2021-02-04 08:58:00','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23546,'2021-02-04 08:59:17','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23547,'2021-02-04 11:13:59','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/',1,'37.8.231.66',0,NULL),(23548,'2021-02-04 11:32:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','AdsBot-Google (+http://www.google.com/adsbot.html)','https://chicagolandremodeling.com/',1,'66.249.91.60',0,NULL),(23549,'2021-02-04 12:11:49','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'83.8.163.179',0,NULL),(23550,'2021-02-04 12:16:04','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/about-us/',1,'37.8.231.66',0,NULL),(23551,'2021-02-04 12:53:39','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','AdsBot-Google (+http://www.google.com/adsbot.html)','https://chicagolandremodeling.com/',1,'66.249.91.61',0,NULL),(23552,'2021-02-04 13:29:44','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23553,'2021-02-04 14:10:13','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','https://chicagolandremodeling.com/about-us/',1,'2607:fb90:f02a:fe03:bdde:9ffe:ca02:9456',0,NULL),(23554,'2021-02-04 15:02:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/',1,'185.98.173.203',0,NULL),(23555,'2021-02-04 15:35:03','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'27.115.124.38',0,NULL),(23556,'2021-02-04 15:35:12','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.a','https://chicagolandremodeling.com/',1,'27.115.124.38',0,NULL),(23557,'2021-02-04 15:58:34','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','https://chicagolandremodeling.com/',1,'188.146.102.113',0,NULL),(23558,'2021-02-04 16:59:58','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/',1,'83.8.163.179',0,NULL),(23559,'2021-02-04 17:23:06','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) splash Safari/538.1','https://chicagolandremodeling.com/',1,'3.91.24.3',0,NULL),(23560,'2021-02-04 17:29:55','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'12.222.20.82',0,NULL),(23561,'2021-02-04 17:32:56','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.65',0,NULL),(23562,'2021-02-04 18:17:25','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56','https://chicagolandremodeling.com/',1,'64.107.3.137',0,NULL),(23563,'2021-02-04 18:41:35','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0','https://chicagolandremodeling.com/',1,'204.62.118.152',0,NULL),(23564,'2021-02-04 18:45:11','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36','https://chicagolandremodeling.com/',1,'77.254.44.165',0,NULL),(23565,'2021-02-04 18:47:39','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','https://chicagolandremodeling.com/wp-admin/',1,'37.47.41.141',0,NULL),(23566,'2021-02-04 20:55:08','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; CrOS x86_64 13421.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.199 Safari/537.36','https://chicagolandremodeling.com/',1,'2607:9880:1950:73:bd03:cf62:f561:bf61',0,NULL),(23567,'2021-02-04 21:41:38','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23568,'2021-02-04 22:35:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'165.225.60.232',0,NULL),(23569,'2021-02-04 23:38:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (X11; CrOS x86_64 13505.111.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.152 Safari/537.36','https://chicagolandremodeling.com/',1,'2600:6c44:4a7f:cd0f:95a9:cc92:6db6:622e',0,NULL),(23570,'2021-02-05 00:36:11','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/bathroom-remodeling/',1,'23.100.232.233',0,NULL),(23571,'2021-02-05 01:39:31','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.123.65',0,NULL),(23572,'2021-02-05 04:03:36','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas/',1,'99.23.41.48',0,NULL),(23573,'2021-02-05 05:32:21','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',NULL,1,'195.154.122.42',0,NULL),(23574,'2021-02-05 06:31:50','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','https://chicagolandremodeling.com/',1,'23.100.232.233',0,NULL),(23575,'2021-02-05 06:44:47','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','http://sucuri.net',1,'18.223.142.71',0,NULL),(23576,'2021-02-05 08:15:56','/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','/','Mozilla/5.0 (Linux; Android 6.0.1; P01T_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps',1,'197.210.174.31',0,NULL);
/*!40000 ALTER TABLE `wp_redirection_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"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\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"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\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"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\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"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\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"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\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"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\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"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\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"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\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(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\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"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\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

LOCK TABLES `wp_revslider_layer_animations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'slider-home','slider-home','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-transient\":\"1200\",\"instagram-type\":\"user\",\"instagram-user-id\":\"\",\"instagram-hash-tag\":\"\",\"flickr-count\":\"\",\"flickr-transient\":\"1200\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"album\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-transient\":\"1200\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-transient\":\"1200\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"product_types\":\"product\",\"product_category\":\"\",\"posts_list\":\"\",\"fetch_type\":\"cat_tag\",\"post_types\":\"post\",\"post_category\":\"\",\"product_sortby\":\"ID\",\"product_sort_direction\":\"DESC\",\"max_slider_products\":\"30\",\"excerpt_limit_product\":\"55\",\"reg_price_from\":\"\",\"reg_price_to\":\"\",\"sale_price_from\":\"\",\"sale_price_to\":\"\",\"instock_only\":\"off\",\"featured_only\":\"off\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"slider-home\",\"alias\":\"slider-home\",\"shortcode\":\"[rev_slider alias=\\\\\\\"slider-home\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"auto\",\"width\":\"1240\",\"height\":\"740\",\"width_notebook\":\"1024\",\"height_notebook\":\"600\",\"enable_custom_size_notebook\":\"on\",\"width_tablet\":\"778\",\"height_tablet\":\"450\",\"enable_custom_size_tablet\":\"on\",\"width_mobile\":\"480\",\"height_mobile\":\"420\",\"enable_custom_size_iphone\":\"on\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"\",\"max_width\":\"\",\"force_full_width\":\"off\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"def-layer_selection\":\"off\",\"slider_id\":\"\",\"delay\":\"5000\",\"start_js_after_delay\":\"0\",\"def-slide_transition\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_blur_start\":\"0\",\"def-kb_blur_end\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"blank\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"label_presetheight\":\"off\",\"waitforinit\":\"off\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progressbar_color\":\"rgba(0,0,0,0.15)\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"enable_arrows\":\"on\",\"rtl_arrows\":\"off\",\"navigation_arrow_style\":\"round\",\"navigation_arrows_preset\":\"default\",\"ph-round-arrows-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-arrows-arrow-size-custom-def\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-arrow-color-color-def\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-bg-size-custom-def\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-bg-color-custom-def\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"arrows_always_on\":\"false\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"20\",\"leftarrow_offset_vert\":\"0\",\"leftarrow_position\":\"slider\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"0\",\"rightarrow_position\":\"slider\",\"enable_bullets\":\"off\",\"rtl_bullets\":\"off\",\"navigation_bullets_style\":\"round\",\"navigation_bullets_preset\":\"default\",\"ph-round-bullets-hover-bullet-bg-color-def\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-bullets-border-size-custom-def\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-border-color-color-def\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-bullet-bg-bottom-color-def\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-bullet-bg-top-color-def\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-size-custom-def\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"bullets_position\":\"slider\",\"enable_thumbnails\":\"off\",\"rtl_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_style\":\"round\",\"navigation_thumbs_preset\":\"default\",\"ph-round-thumbs-title-font-size-custom-def\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"ph-round-thumbs-title-color-color-rgba-def\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-bg-color-rgba-def\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"thumbnails_position\":\"slider\",\"enable_tabs\":\"off\",\"rtl_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_style\":\"round\",\"navigation_tabs_preset\":\"default\",\"ph-round-tabs-param2-size-custom-def\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-tabs-param2-color-color-rgba-def\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"transparent\",\"ph-round-tabs-contentcolor-color-rgba-def\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-bgcolor-color-rgba-def\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-param1-size-custom-def\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-param1-color-color-rgba-def\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-image-size-custom-def\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-border-size-custom-def\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-border-color-color-rgba-def\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-font-family-font_family-def\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"tabs_position\":\"slider\",\"touchenabled\":\"off\",\"touchenabled_desktop\":\"off\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"mousescroll_navigation_reverse\":\"default\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"showalllayers_carousel\":\"off\",\"carousel_easing\":\"Power3.easeInOut\",\"carousel_speed\":\"800\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"ddd_parallax\":\"off\",\"ddd_parallax_shadow\":\"off\",\"ddd_parallax_bgfreeze\":\"off\",\"ddd_parallax_overflow\":\"off\",\"ddd_parallax_layer_overflow\":\"off\",\"ddd_parallax_zcorrection\":\"65\",\"parallax_type\":\"mouse\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_bg_speed\":\"0\",\"parallax_ls_speed\":\"0\",\"parallax_level_16\":\"55\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"46\",\"parallax_level_11\":\"47\",\"parallax_level_12\":\"48\",\"parallax_level_13\":\"49\",\"parallax_level_14\":\"50\",\"parallax_level_15\":\"51\",\"fade_scrolleffect\":\"off\",\"blur_scrolleffect\":\"off\",\"grayscale_scrolleffect\":\"off\",\"scrolleffect_maxblur\":\"10\",\"scrolleffect_bg\":\"off\",\"scrolleffect_layers\":\"off\",\"scrolleffect_parallax_layers\":\"off\",\"scrolleffect_static_layers\":\"off\",\"scrolleffect_static_parallax_layers\":\"off\",\"scrolleffect_direction\":\"both\",\"scrolleffect_tilt\":\"30\",\"scrolleffect_multiplicator\":\"1.3\",\"scrolleffect_multiplicator_layers\":\"1.3\",\"scrolleffect_off_mobile\":\"on\",\"lazy_load_type\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"allow_android_html5_autoplay\":\"on\",\"show_alternate_image\":\"\",\"ignore_height_changes\":\"off\",\"ignore_height_changes_px\":\"0\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}','{\"version\":5}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"100\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"media-filter-type\":\"none\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_blur_start\":\"0\",\"kb_blur_end\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"815\",\"title\":\"Slide\",\"delay\":\"0\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"state\":\"published\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"\",\"0\":\"Remove\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"transparent\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2.jpg\",\"1\":\"Remove\",\"2\":\"Remove\",\"3\":\"Remove\",\"4\":\"Remove\",\"5\":\"Remove\",\"6\":\"Remove\"}','[{\"text\":\"Create Your Bathroom with <br>\\nChicagoland  Remodeling \\n\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":10,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"use_text_c\":false,\"use_bg_c\":false,\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"time_relative\":10,\"sfx_effect\":\"\"},\"frame_999\":{\"time\":5000,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"use_text_c\":false,\"use_bg_c\":false,\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"time_relative\":4690,\"sfx_effect\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":13,\"notebook\":0,\"mobile\":-1},\"top\":{\"desktop\":0,\"notebook\":0,\"mobile\":0},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"Create Your Bathroom...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"notebook\":\"auto\",\"mobile\":\"121px\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\",\"notebook\":\"auto\",\"mobile\":\"452px\"},\"video_width\":{\"desktop\":\"480px\",\"notebook\":\"480px\",\"mobile\":\"480px\"},\"video_height\":{\"desktop\":\"360px\",\"notebook\":\"360px\",\"mobile\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"notebook\":\"nowrap\",\"mobile\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"notebook\":\"center\",\"mobile\":\"center\"},\"align_vert\":{\"desktop\":\"middle\",\"notebook\":\"middle\",\"mobile\":\"middle\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_follow\":\"follow\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":582,\"height\":112,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"25px\",\"notebook\":\"25px\",\"mobile\":\"19px\"},\"line-height\":{\"desktop\":\"36px\",\"notebook\":\"36px\",\"mobile\":\"29px\"},\"font-weight\":{\"desktop\":\"700\",\"notebook\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#ffffff\",\"notebook\":\"#ffffff\",\"mobile\":\"#ffffff\"},\"letter-spacing\":{\"desktop\":\"0\",\"notebook\":\"0\",\"mobile\":\"0\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"notebook\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"20px\",\"20px\",\"20px\",\"20px\"],\"notebook\":[\"20px\",\"20px\",\"20px\",\"20px\"],\"mobile\":[\"20px\",\"20px\",\"20px\",\"20px\"]},\"text-align\":{\"desktop\":\"inherit\",\"notebook\":\"center\",\"mobile\":\"center\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"brightnessfilter_start\":\"100\",\"brightnessfilter_end\":\"100\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.66)\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"overflow\":\"visible\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"color\":\"#000000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":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,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"pointer_events\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":true,\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"notebook\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"notebook\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":5,\"addedToStage\":true,\"positionLeftReset\":1,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"link_follow\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"action_easing\":[],\"action_speed\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"'),(2,1,2,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"100\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"media-filter-type\":\"none\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"0\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_blur_start\":\"0\",\"kb_blur_end\":\"0\",\"kb_easing\":\"Linear.easeNone\",\"kb_duration\":\"10000\",\"image_id\":\"814\",\"title\":\"Slide\",\"delay\":\"0\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"state\":\"published\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"\",\"0\":\"Remove\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"transparent\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1.jpg\",\"1\":\"Remove\",\"2\":\"Remove\",\"3\":\"Remove\",\"4\":\"Remove\",\"5\":\"Remove\",\"6\":\"Remove\",\"7\":\"Remove\",\"8\":\"Remove\"}','[{\"text\":\"Make Your Kitchen Look Amazing with <br>\\nChicagoland Remodeling \\n\\n\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":10,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"use_text_c\":false,\"use_bg_c\":false,\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"time_relative\":10,\"sfx_effect\":\"\"},\"frame_999\":{\"time\":5000,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"use_text_c\":false,\"use_bg_c\":false,\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"time_relative\":4690,\"sfx_effect\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":1,\"left\":{\"desktop\":13,\"notebook\":0,\"mobile\":-1},\"top\":{\"desktop\":0,\"notebook\":0,\"mobile\":0},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"Create Your Bathroom...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"notebook\":\"auto\",\"mobile\":\"121px\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\",\"notebook\":\"auto\",\"mobile\":\"452px\"},\"video_width\":{\"desktop\":\"480px\",\"notebook\":\"480px\",\"mobile\":\"480px\"},\"video_height\":{\"desktop\":\"360px\",\"notebook\":\"360px\",\"mobile\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"notebook\":\"nowrap\",\"mobile\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"notebook\":\"center\",\"mobile\":\"center\"},\"align_vert\":{\"desktop\":\"middle\",\"notebook\":\"middle\",\"mobile\":\"middle\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_follow\":\"follow\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":582,\"height\":112,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"25px\",\"notebook\":\"25px\",\"mobile\":\"19px\"},\"line-height\":{\"desktop\":\"36px\",\"notebook\":\"36px\",\"mobile\":\"29px\"},\"font-weight\":{\"desktop\":\"700\",\"notebook\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#ffffff\",\"notebook\":\"#ffffff\",\"mobile\":\"#ffffff\"},\"letter-spacing\":{\"desktop\":\"0\",\"notebook\":\"0\",\"mobile\":\"0\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"notebook\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"20px\",\"20px\",\"20px\",\"20px\"],\"notebook\":[\"20px\",\"20px\",\"20px\",\"20px\"],\"mobile\":[\"20px\",\"20px\",\"20px\",\"20px\"]},\"text-align\":{\"desktop\":\"inherit\",\"notebook\":\"center\",\"mobile\":\"center\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"brightnessfilter_start\":\"100\",\"brightnessfilter_end\":\"100\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.66)\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"overflow\":\"visible\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"color\":\"#000000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":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,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"pointer_events\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":true,\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"notebook\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"notebook\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":5,\"addedToStage\":true,\"positionLeftReset\":1,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"link_follow\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"action_easing\":[],\"action_speed\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,1,'{\"staticoverflow\":\"visible\",\"staticlayersposition\":\"front\",\"image_id\":\"\",\"image\":\"\"}','[{\"text\":\"[contact-form-7 id=\\\"8136\\\" title=\\\"Quick Quote Slider\\\"]\",\"type\":\"text\",\"special_type\":\"static\",\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":0,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"use_text_c\":false,\"use_bg_c\":false,\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"time_relative\":0,\"sfx_effect\":\"\"},\"frame_999\":{\"time\":5000,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"split_direction\":\"forward\",\"sfxcolor\":\"#ffffff\",\"use_text_c\":false,\"use_bg_c\":false,\"text_c\":\"transparent\",\"bg_c\":\"transparent\",\"time_relative\":4700,\"sfx_effect\":\"\"}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":0},\"top\":{\"desktop\":0},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"[contact-form-7 id=\\\"8136\\\" title=\\\"Quick Quote Slider\\\"]\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"350px\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"right\"},\"align_vert\":{\"desktop\":\"middle\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_follow\":\"follow\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":false,\"visible-tablet\":false,\"visible-mobile\":false,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":-1,\"height\":-1,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"},\"letter-spacing\":{\"desktop\":\"0\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"brightnessfilter_start\":\"100\",\"brightnessfilter_end\":\"100\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"vertical-align\":\"top\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"overflow\":\"visible\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"brightnessfilter\":\"100\",\"color\":\"#000000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":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,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"pointer_events\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"endWithSlide\":true,\"p_uid\":-1,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"tp-static-layer\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"zIndex\":7,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"link_follow\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"action_easing\":[],\"action_speed\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_smush_dir_images`
--

DROP TABLE IF EXISTS `wp_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `resize` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `lossy` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `error` varchar(55) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text COLLATE utf8mb4_unicode_520_ci,
  `path_hash` char(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smush_dir_images`
--

LOCK TABLES `wp_smush_dir_images` WRITE;
/*!40000 ALTER TABLE `wp_smush_dir_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_smush_dir_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_smuzform_entry`
--

DROP TABLE IF EXISTS `wp_smuzform_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_smuzform_entry` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(9) NOT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user_ip` varchar(100) DEFAULT NULL,
  `user_agent` varchar(200) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smuzform_entry`
--

LOCK TABLES `wp_smuzform_entry` WRITE;
/*!40000 ALTER TABLE `wp_smuzform_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_smuzform_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_smuzform_entry_data`
--

DROP TABLE IF EXISTS `wp_smuzform_entry_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_smuzform_entry_data` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(9) NOT NULL,
  `entry_id` mediumint(9) NOT NULL,
  `field_id` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `value` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_smuzform_entry_data`
--

LOCK TABLES `wp_smuzform_entry_data` WRITE;
/*!40000 ALTER TABLE `wp_smuzform_entry_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_smuzform_entry_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,2,0),(2,2,0),(3,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(1364,3,0),(264,19,0),(48,3,0),(50,3,0),(188,4,0),(52,3,0),(53,3,0),(68,4,0),(186,8,0),(264,17,0),(199,8,0),(599,17,0),(599,16,0),(233,18,0),(252,15,0),(260,18,0),(234,19,0),(243,17,0),(239,16,0),(233,15,0),(254,15,0),(260,19,0),(333,9,0),(336,9,0),(399,9,0),(403,10,0),(412,10,0),(436,10,0),(260,15,0),(439,10,0),(447,10,0),(231,15,0),(514,8,0),(539,3,0),(517,8,0),(264,16,0),(264,15,0),(264,18,0),(241,17,0),(241,19,0),(241,16,0),(241,15,0),(241,18,0),(254,19,0),(254,18,0),(252,19,0),(252,18,0),(250,17,0),(246,17,0),(246,16,0),(243,16,0),(234,15,0),(234,18,0),(231,19,0),(231,18,0),(672,17,0),(819,3,0),(987,3,0),(985,3,0),(820,3,0),(818,3,0),(7954,20,0),(7930,20,0),(7927,1,0),(1132,3,0),(7939,20,0),(956,1,0),(959,1,0),(963,3,0),(962,3,0),(988,3,0),(986,3,0),(7903,22,0),(7902,22,0),(1354,20,0),(1424,20,0),(7904,22,0),(7905,22,0),(7934,20,0),(7945,20,0),(8170,20,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,2),(2,2,'link_category','',0,7),(3,3,'nav_menu','',0,16),(4,4,'secondary_html_features','Show media buttons in the editor, i.e. the media uploader',0,2),(5,5,'secondary_html_features','Show a simplified version of the editor, for more basic editing',0,0),(6,6,'secondary_html_features','For hierarchical post types (e.g. pages), inherit secondary content from ancestors if empty',0,0),(7,7,'secondary_html_features','When inheritance is turned on, treat home page as a top level ancestor for pages',0,0),(8,8,'category','Posts which will be added to the Roofing page require this category.',0,4),(9,9,'category','Posts which will be added to the Kitchen Remodeling page require this category.',0,3),(10,10,'category','Posts which will be added to the Bathroom Remodeling page require this category.',0,5),(11,11,'category','Posts which will be added to the Siding and Windows page require this category.',0,0),(12,12,'category','Posts which will be added to the Decks and Porches page require this category.',0,0),(16,16,'category','Posts with this category will be added to the Kitchen Remodeling page Related Services menu.',0,6),(15,15,'category','Posts with this category will be added to the Roofing page Related Services menu.',0,8),(17,17,'category','Posts with this category will be added to the Bathroom Remodeling page Related Services menu.',0,7),(18,18,'category','Posts with this category will be added to the Siding &amp; Windows page Related Services menu.',0,8),(19,19,'category','Posts with this category will be added to the Decks &amp; Porches page Related Services menu.',0,7),(20,20,'category','',0,7),(21,21,'post_format','',0,0),(22,22,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `name` (`name`(191)),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(3,'secondary','secondary',0),(4,'Media Buttons','media-buttons',0),(5,'Tiny Editor','tiny-editor',0),(6,'Inherit from Ancestors','inherit-from-ancestors',0),(7,'Treat Home as Ancestor','treat-home-as-ancestor',0),(8,'Roofing','roofing',0),(9,'Kitchen','kitchen',0),(10,'Bathroom','bathroom',0),(11,'Siding','siding',0),(12,'Decks','decking',0),(16,'Kitchen Menu','kitchen-menu',0),(15,'Roofing Menu','roofing-menu',0),(17,'Bathroom Menu','bathroom-menu',0),(18,'Siding &amp; Windows Menu','siding-menu',0),(19,'Decks &amp; Porches menu','decks-menu',0),(20,'Blog','blog',0),(21,'post-format-aside','post-format-aside',0),(22,'icons','icons',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=329 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_media_uploader,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp410_dfw,wp390_widgets,wr_pb_settings_pointer_contactform_thank_installing,theme_editor_notice,wp496_privacy'),(17,1,'aim',''),(14,1,'show_welcome_panel','0'),(15,1,'wp_dashboard_quick_press_last_post_id','8215'),(16,1,'wp_user-settings-time','1612378919'),(18,1,'yim',''),(19,1,'jabber',''),(20,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(21,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(22,1,'nav_menu_recently_edited','3'),(23,1,'wp_user-settings','urlbutton=none&libraryContent=browse&hidetb=1&editor=tinymce&wplink=1&advImgDetails=show&posts_list_mode=list&imgsize=full&mfold=o'),(24,1,'closedpostboxes_post','a:0:{}'),(25,1,'metaboxhidden_post','a:4:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(26,1,'meta-box-order_post','a:3:{s:4:\"side\";s:61:\"submitdiv,formatdiv,categorydiv,tagsdiv-post_tag,postimagediv\";s:6:\"normal\";s:123:\"secondary_html_content_188,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,revisionsdiv\";s:8:\"advanced\";s:13:\"page-links-to\";}'),(27,1,'screen_layout_post','2'),(28,1,'wpseo_title',''),(29,1,'wpseo_metadesc',''),(30,1,'wpseo_metakey',''),(31,1,'googleplus',''),(32,1,'twitter',''),(34,1,'_yoast_wpseo_profile_updated','1584732289'),(35,1,'wpseo_ignore_tour','1'),(36,1,'wpseo_seen_about_version','2.3.2'),(37,1,'closedpostboxes_page','a:0:{}'),(38,1,'metaboxhidden_page','a:3:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";i:2;s:9:\"authordiv\";}'),(39,1,'closedpostboxes_slide','a:0:{}'),(40,1,'metaboxhidden_slide','a:0:{}'),(68,1,'closedpostboxes_reviews','a:0:{}'),(69,1,'metaboxhidden_reviews','a:1:{i:0;s:7:\"slugdiv\";}'),(118,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"77.254.44.0\";}'),(95,1,'wpseo_noindex_author',''),(96,1,'wpseo_content_analysis_disable',''),(97,1,'wpseo_keyword_analysis_disable',''),(98,1,'locale',''),(99,1,'facebook',''),(225,1,'wfls-last-login','1593426817'),(223,1,'wfls-last-captcha-score',''),(242,1,'instagram',''),(243,1,'linkedin',''),(244,1,'myspace',''),(328,1,'session_tokens','a:3:{s:64:\"78597826baf0eb3901ba68c3a52eee905c5288505fe63da1c17f1e94dfc26c03\";a:4:{s:10:\"expiration\";i:1612465070;s:2:\"ip\";s:13:\"141.101.77.13\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36\";s:5:\"login\";i:1612292270;}s:64:\"ce08e9b046747a7878b2caa704115691e3a00eb577f7b337d646d0b33ae3db08\";a:4:{s:10:\"expiration\";i:1612546972;s:2:\"ip\";s:14:\"162.158.203.44\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4406.0 Safari/537.36\";s:5:\"login\";i:1612374172;}s:64:\"150b94c1dacc00cb5ea9ae7c2d762d5bea4768d1b1d32dd22629913e17b8d784\";a:4:{s:10:\"expiration\";i:1612637256;s:2:\"ip\";s:15:\"162.158.159.123\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36\";s:5:\"login\";i:1612464456;}}'),(216,1,'show_try_gutenberg_panel','0'),(245,1,'pinterest',''),(246,1,'soundcloud',''),(247,1,'tumblr',''),(248,1,'youtube',''),(249,1,'wikipedia',''),(324,1,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:594:\"<strong>New in Yoast SEO 15.6: </strong>In the latest version of Yoast SEO, you’ll find a number of bug fixes and performance enhancements. And install the free Yoast Duplicate Post plugin to unlock the Rewrite & Republish feature, offering you the possibility to update a post/page without taking it offline or having to take extra steps! <a href=\"https://yoa.st/yoast15-6?php_version=7.4&#038;platform=wordpress&#038;platform_version=5.6.1&#038;software=free&#038;software_version=15.6.2&#038;days_active=30plus&#038;user_language=en_US\" target=\"_blank\">Read all about version 15.6 here</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:20:\"wpseo-plugin-updated\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$BWqa1n3LY6v5zpsyO9rVTXqJrOsJpH1\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:26:\"marketing@infosystrade.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2012-11-28 14:34:24\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";s:1:\"1\";}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:67:{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:15:\"wpseo_bulk_edit\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:13:\"administrator\";s:1:\"1\";}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:1:{s:13:\"dismiss_value\";s:6:\"15.6.2\";}s:13:\"dismissal_key\";s:20:\"wpseo-plugin-updated\";s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(199,1,'syntax_highlighting','true');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BWqa1n3LY6v5zpsyO9rVTXqJrOsJpH1','admin','marketing@infosystrade.com','','2012-11-28 14:34:24','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfblockediplog`
--

DROP TABLE IF EXISTS `wp_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblockediplog`
--

LOCK TABLES `wp_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `wp_wfblockediplog` DISABLE KEYS */;
INSERT INTO `wp_wfblockediplog` VALUES (_binary '\0\0\0\0\0\0\0\0\0\0/KS','HK',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0|','IR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0)\_','GH',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0l','SG',1,18456,'brute'),(_binary ' \r\\0\0x^\F\','CN',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','VN',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Γ','IN',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03v\','FR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0 h\','FR',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0mx','RU',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18459,'brute'),(_binary '&\0\0\0\0\0\\1','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0=','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\i','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','TH',2,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A\0','US',2,18460,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0','SG',4,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-v4','VN',1,18460,'brute'),(_binary '$\0a\0\0\0\\0\0\0\00','SG',3,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ǳ\','SG',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#r\','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\r\/r','SG',3,18460,'brute'),(_binary '*\n\0\0\0\0\0\0\0\0\0\0\0\','RU',1,18460,'brute'),(_binary '&\0\0\\0\0\0\0 ','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>2D','ES',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0G','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0y\','KR',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h','DE',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\R','US',2,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\a','GB',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h춡','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Z','VN',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ν\','IN',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Dj(','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\G','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[\\','FR',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\i','US',1,18460,'brute'),(_binary '&\0\0\\0\0\0\0y ','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\01','GB',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@\t','DE',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\0','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',2,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','GB',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\-','IN',2,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\'','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',2,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\6','RU',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.v{','UA',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\]','KR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0iQ','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\w','',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0pZ','SE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Kw\\','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\r\/r','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"E8y','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0l3','GR',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0*{','GB',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','BR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0k,-','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c\n','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;,','DE',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0vd','CN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\2}','IE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0B','VN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0zxJ','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0mf','TR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\a\','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\/\y','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hd','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18447,'brute'),(_binary '*@\0\00\\0\0\0\0\0d','DE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03SC','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0J\*@','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0pN','VN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ad\','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.\Z0','ES',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0B','IN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0I3','MX',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A\','IN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','DE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\','IN',1,18447,'brute'),(_binary '$\0a\0\0\\0\0\0\0@','IN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A\0','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ǽ	','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','US',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\W','',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0y\','CN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\X/','CN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',2,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'9','PK',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\09','PK',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\^','BR',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06&\','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','KR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0}r','ID',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0b\','MX',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','ZW',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\034T','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P','RU',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\y','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0va\','CN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\'','GB',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y','IL',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\	','FR',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02\','SG',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\07','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','FR',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0aJ\','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Oz','IR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.T','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Q_','IR',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0aJ','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\m4\','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\A\','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02?Ś','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-(','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\>','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\.','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02>z','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02	','SG',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','SG',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\Z','RO',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:\n\O','TH',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>','RU',4,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0} ','IN',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\(','IN',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\Z','RO',2,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c\"','CA',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','TH',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Zw','US',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18451,'brute'),(_binary '$I\0Q\/VIh','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c\"','CA',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0zgR','TH',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0C','CA',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03D\','FR',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;','IN',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%','NL',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\F','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0J\P','FR',3,18451,'brute'),(_binary '*\0ր\00\0P\0\0\0\0\0\0\0g','GB',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06Gs\','US',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@om\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]#','GB',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\H','IN',1,18451,'brute'),(_binary '&S\0\r\0\0\0\0\0\0\0\0','CA',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0O\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c{\"','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0b~','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04P','CN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0zm\Z','PH',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gS','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','NL',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06&','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03[','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P8','US',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>eu','GB',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\̭','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\ə','',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\ [G','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0PWʊ','RU',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\'','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0n','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06%\','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;\','IN',2,18451,'brute'),(_binary ' A\:\0\0\0\0\0\0\0\0','FR',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\B','TH',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gؼ','ID',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0&','FR',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\00','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0py','TH',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0oߪ\','LK',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\Y','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ʻ','FR',1,18451,'brute'),(_binary ' A\\0\\\0\0\0\0\0\0\0\0','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\n1','IN',1,18451,'brute'),(_binary '*\0ր\0 \0P\0\0\0\0\0\0\0B','GB',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\_','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Q','NL',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0G\]','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\j','SG',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Pm','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','NL',2,18451,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0\0\','SG',1,18451,'brute'),(_binary ' A\\0s|\0\0\0\0\0\0\0\0','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\t','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\r','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0e','RU',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ǟ','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.e\\','DE',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U16','BE',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\I','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%\q','FR',1,18451,'brute'),(_binary ' A\^D\0\0\0\0\0\0\0\0','FR',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0BF','CA',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0/r','CN',1,18451,'brute'),(_binary '&\0\0\\0\0\0\0L','US',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ν#','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-\n5=','RU',1,18451,'brute'),(_binary ' A\=J\0\0\0\0\0\0\0\0','FR',1,18451,'brute'),(_binary ' A\\0$\0\0\0\0\0\0\0','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\Y','CN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','US',1,18451,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0ݰ','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@\\0\','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-vM','VN',3,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P]~\','UA',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Y','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0S','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@oy\','US',1,18451,'brute'),(_binary '&\04\0\0\0\0ʥ','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0zxJ','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%','PL',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]~','US',1,18451,'brute'),(_binary ' A\\0\~\0\0\0\0\0\0\0','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\R','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0m\y','IT',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;+K','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\d','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0uﴼ','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0FYv','FR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','JP',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Gv','US',1,18451,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0^','SG',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\\','VN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ah4','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-z\\','VN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0E','NL',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]c8','DE',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0n6','PH',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"N\'{','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0!\','TH',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P3','GY',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vn','TR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0{\m','VN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','VN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\,','CN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#䱇','',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0)','UY',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0/byo','CN',1,18451,'brute'),(_binary '(\0\nX,\RN\','AR',1,18451,'brute'),(_binary '(L򆜂t!F','BR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\a','US',1,18452,'brute'),(_binary ' \Rԕ`lG;d','VN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0S','SG',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'b\\4','CN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0n','IN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03','FR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Zw','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(L','GB',1,18452,'brute'),(_binary '(\0\7\0$\\5tU~','BO',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','NL',1,18452,'brute'),(_binary '$\0\\0\0\0\0\0\0b','CN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]F','BR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\LJ','',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c?','CA',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','VN',1,18452,'brute'),(_binary '&\0\0\0\0\0 U','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\+','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0	','NL',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;Ro','IN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\Z','RO',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\','TN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\u','NL',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0PU7','RU',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0} ','IN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0x\\\','CN',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Go','US',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\Z','',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\\','SG',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(T','US',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04','US',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c$','CA',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]c8','DE',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Q','NL',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03D\','FR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>	z','GB',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\P{','CA',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]','CA',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\!','SG',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',3,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Z4','AT',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\|','',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0xVy','CN',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:\n_','TH',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\033\','FR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',3,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','SG',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gۧI','IN',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','SG',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0V\r\','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\P','VN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Y','FR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(L','GB',1,18437,'brute'),(_binary '$	b#*;\	(=O','CN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0+͙','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Rf','GB',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\o','IN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g5\0\','ID',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\+\','US',1,18437,'brute'),(_binary ' A\\0\r/\0\0\0\0\0\0\0\0','FR',2,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ϔV','AU',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\iL','US',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;k','GB',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\n','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03͠','FR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ų^','DE',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0E&','CA',1,18437,'brute'),(_binary ' \D\0(\0\0\0\0\0\0\0*-','FR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0r\x\','KR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Y','FR',2,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0W','US',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0˯H','PK',1,18438,'brute'),(_binary '$T\ %\\','IN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gK)t','IN',1,18438,'brute'),(_binary '$\0c0yL','VN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',2,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0nhv','CN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\%','',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0nhv','CN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18437,'brute'),(_binary '$H\0aoZd\}\\*','VN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\S\','CA',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-~T','IN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0xO','CN',1,18437,'brute'),(_binary '$I\08\)E9\nk\A','IN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\n1','IN',1,18437,'brute'),(_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','CA',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>!\','GB',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\H9','SG',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0V\r\','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-zܝ','VN',1,18437,'brute'),(_binary '&\0\0\\0\0\0\0N`','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-v4','VN',1,18459,'brute'),(_binary '&\0\0\\0\0\0\0y ','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1De','US',3,18459,'brute'),(_binary '&\0\0\\0\0\0\0 ','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0$','IE',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#̈\','',2,18459,'brute'),(_binary '*Rd\0\0\0\0\0\0Le','NL',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\R','US',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\a','GB',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0G','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\&{','FR',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\Y','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>2D','ES',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\G','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0DG','DE',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-u[','VN',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gZ\\','VN',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0fn','SG',1,18459,'brute'),(_binary ' A\\'E\0\0\0\0\0\0\0\0','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\00','MY',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hXd','NL',3,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0s','VN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','FR',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Z','US',2,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[','US',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',2,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',2,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@\n','US',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0DP\','DE',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#ô','',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ك','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','FR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0|z','PH',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\048+','US',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#䳹','',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0W ~','IN',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\Y','FR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\U;','US',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0V','TR',1,18439,'brute'),(_binary '$I\02LE\\K*\=\','IN',1,18439,'brute'),(_binary '$	@d\0a(\SO','IN',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0+\%','IN',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','SG',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ʉ^','LA',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y֏','TH',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_5!','RU',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ׂ','BR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\6','RU',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\L','KR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\n~','KE',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\','BR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0o}n','PH',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\GQ','',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0s','VN',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ʫIT','NC',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0PDc\','SE',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@Z?','US',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',2,18458,'brute'),(_binary '&\0\0\\0\0\0\0y ','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','TW',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0]z\','US',1,18447,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0\\','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0eN','RU',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-j','VN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\N','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\P','BR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0t>1`','CN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\','VN',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0l','CA',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\ZV\0','PK',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0D\','US',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#','SG',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\=f','NL',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\R','IN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ūB','CA',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04','SG',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06%','FR',1,18438,'brute'),(_binary ' A\^D\0\0\0\0\0\0\0\0','FR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;\','DE',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\tf','RU',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Wf','US',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ŃB','CA',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ڋ','TW',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','MY',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vn','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-z\\','VN',1,18438,'brute'),(_binary '&i\0\0\0\0\0\0N*','US',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','SG',1,18438,'brute'),(_binary '*\0\0\\0\0\0\03p','DE',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0=\f','HK',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','IN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\Q!','FR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_\nL','TR',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\=','GB',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\{e','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0c','CA',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','DE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>+','GB',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\+','SG',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ν~V','GB',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>','RU',31,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Yn-','DE',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\!','SG',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0H\','US',1,18449,'brute'),(_binary '&\0/\0\0\0\0I','US',1,18449,'brute'),(_binary '&\04\0\0\0\0ʥ','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0^\','DE',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hҖn','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0w\','CN',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0/Y','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Pm','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06%\0','FR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\{e','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0<3Bj','MY',1,18449,'brute'),(_binary '&\0\0\\0\0\0\0\0`','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A\','US',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',2,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0u\','IN',1,18449,'brute'),(_binary '$I\0#!\	\2P&','IN',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\8g','PK',1,18449,'brute'),(_binary ' \r\0\D\G\s\`','MY',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hN','SG',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;+K','IN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\01','IN',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[\','PL',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04{','US',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',3,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Eg','CA',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[','US',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0قf','CA',1,18438,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.6','DK',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0{+\','VN',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0|\','HK',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03[','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h','DE',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0&','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\)','US',4,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ν\\','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\r','BR',2,18447,'brute'),(_binary '&E\0\0\n\0\r\0\0\0\0bb','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gU/','IN',1,18447,'brute'),(_binary '&\0\0\0\0\0\0a\','US',1,18447,'brute'),(_binary ' A\\0a\0\0\0\0\0\0\0\0','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\045h','US',3,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0D%','DE',1,18447,'brute'),(_binary '&\\0\0\0\0J\0E\0\0\0','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P\a','IT',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','IN',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#ȴ','',1,18447,'brute'),(_binary '&\0\Z\0\0\0\0\0\0+8','US',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@\n','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-\n','UA',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03D\','FR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Gi)','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@ʽ','US',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\E8','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0D+','GB',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',2,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0zg\0','GB',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-7;s','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','FR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"\\0','US',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%Jm','FR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Y','FR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0w\','CN',3,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','VN',2,18445,'brute'),(_binary '$\0a\0\0\0\\0\0\0\0^','SG',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0˰R','US',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0kGt','US',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18444,'brute'),(_binary '*\0\0\\0\0\0\0\`','DE',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\K>','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.eQ','GB',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\'','CA',1,18444,'brute'),(_binary '*\\PT\08','NL',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02>\','US',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>L','GB',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ˣk','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.e9\','GB',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h|m','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\','IQ',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06)','SG',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\|','',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0q','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0R','NL',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0w\','SG',1,18444,'brute'),(_binary '&S\0\0\0\0\0\0\0\0\0','CA',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0b~','IN',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\!','SG',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_','TR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Bs','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0el\\','TH',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0x\̒','CN',1,18444,'brute'),(_binary ' \T\\U\8GE\\5','VN',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\R','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"ND','US',3,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"U.\','US',1,18456,'brute'),(_binary ' A\\0\~\0\0\0\0\0\0\0','FR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0py','TH',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0sUA\','ID',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;9@','IN',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\a','',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','TN',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P8','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0BX','EE',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#䱇','',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','NL',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0y&`','JP',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\','IN',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\%','',2,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#ô','',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\%','',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0iQ','SG',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0w]s','PH',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0vEl','VN',1,18439,'brute'),(_binary '$b\0\\\\\ݶp','TH',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0F%4','US',1,18439,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\02','SG',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\,','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\X','KE',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\GQ','',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\3','',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\*','CN',19,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','US',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03C','FR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','ID',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',2,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0([oD','US',2,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(\','IN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'','CN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\Z','RO',1,18453,'brute'),(_binary ' \06#5\T1','TH',2,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0 ','DE',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\03M\','FR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0v6D','CN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\Y','CN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\V','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h(\H','NL',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\d*','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','SG',1,18453,'brute'),(_binary ' A\g\0\0\0\0\0\0\0\0','FR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0EDZ','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[','US',1,18452,'brute'),(_binary '&\0[\0\0\0\0\;','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Au?','US',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#䱇','',2,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_\','CA',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\W','',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0sL','MY',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"N\'{','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Au?','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0X\\\','TR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>)','DE',1,18455,'brute'),(_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','CA',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\S\','CA',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0¶K','IT',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','NG',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04ş','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',2,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0} ','IN',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\a','',1,18457,'brute'),(_binary '&\0w\0\0\0\0\','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vn','TR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\\r','GB',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0r\nI','CA',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p\,','CN',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',2,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\','VN',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0C','CA',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','FR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\i','US',2,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\&','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-(','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\Z','TR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\=f','NL',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0v6D','CN',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','JP',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\a','',2,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\i','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@om\','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0=\','CN',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:T','HK',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0nf','ID',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\0','DE',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.X','JO',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\W','MX',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18454,'brute'),(_binary '&\nL\N;','CA',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\W','',2,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"N\'{','US',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0n6','PH',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'0','PK',1,18454,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;\X','SG',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','MY',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"Au?','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\9','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0l','BR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h(','DE',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04S','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\I ','US',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"[C{','US',3,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\}','CA',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0aJ','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0P\','HU',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\','ID',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0kxC','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','FR',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\	','US',2,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',2,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"[C{','US',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ji','CN',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(E[','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',2,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0D9B','US',1,18459,'brute'),(_binary '&S\0\0`\"\0\0\0\0\0\0\0','CA',1,18459,'brute'),(_binary '$\0a\0\0\0\\0\0\0\00','SG',1,18459,'brute'),(_binary '*R\0\0\0\0\0\0\0\0\0','SE',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0^\m','DK',1,18457,'brute'),(_binary '$	@A.Gvd+PT','IN',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\Y','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0)S0','SN',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h춡','US',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:\"','GB',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\5','KE',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0VTu','DE',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gm\0','ID',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0cY','BR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0S	','AR',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0y\','KR',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Aj','IN',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\)','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0O}l:','IE',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#}	','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\v','US',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\3','',3,18461,'brute'),(_binary ' -T\0!j','US',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\','',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"P\','',1,18458,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18457,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','BR',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\07\','US',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','RO',1,18456,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-(','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\+','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@G I','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\\'','US',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0gJ','BD',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0EO','US',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0/dň','CN',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0V','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A\0','US',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Yr','IN',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Z ','RU',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\r\I','AU',3,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0A','DE',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g2','VN',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y\','IN',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0yN','KR',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#r\','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\-','IN',1,18459,'brute'),(_binary '&\0?\0\0\0\09\','US',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'bJ\'','CN',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0@\2`','US',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0NQ^','TR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18446,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hi\r','US',2,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','US',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>','RU',56,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',3,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#g','US',1,18460,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0hi\r','US',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\rZ\','US',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\3','',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(|#b','US',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\I ','US',2,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0=\','CN',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vn','TR',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\GQ','',2,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0!.s','FR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','',2,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\\3','',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','SG',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\','US',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\h=','US',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18461,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0wQ','TR',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04v\','US',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g\n','ID',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','US',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g3\$','IN',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0o\\#','CN',9,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0V','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\','',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"[C{','US',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"[C{','US',1,18462,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%K','FR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0٠[','DE',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',2,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\','FR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vc','TR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18463,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#<-','US',1,18459,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vh','TR',1,18464,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\U;','US',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','UA',1,18437,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0mn','IR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0YԲ','TH',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y\y','TH',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\','RO',2,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>','RU',37,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18465,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','VN',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_iJ','SK',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.[','RU',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\q','TW',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0wQ','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\Y','FR',2,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0u\\l','VN',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\Z','US',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0^','TH',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0H\\','US',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vj','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\6','RU',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\n','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',2,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0p0','CN',1,18436,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18467,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',2,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vk','TR',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"kv\','US',1,18466,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vn','TR',1,18467,'brute'),(_binary '(\0\04H+39-','PE',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04S','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"ND','US',1,18455,'brute'),(_binary '*\0\0\\0\0\0\03p','DE',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\06$\','FR',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"A','US',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0{\m','VN',1,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0v','CN',2,18455,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(T','US',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18445,'brute'),(_binary ' p\0pZ\0\0\0\0\0\0\0','US',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18453,'brute'),(_binary '(\0\04H+39-','PE',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\'','IR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"N\'{','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0([oD','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0-\N','EC',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"ND','US',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\\','VE',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\','SG',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\@;','MA',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\W','MX',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0h\b','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\038\','FR',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0PZRF','AL',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\V','US',2,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0HҌ','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\\\0','ES',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\ry','CL',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0;K','IN',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\]a','',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\UE','SE',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y	','DE',1,18445,'brute'),(_binary '&S\0\0`(\0\0\0\0\0\0\0','CA',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\05','ID',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\"[|8','US',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0U\','TR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0W\\\Z','IR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g','MY',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0kx@','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0E&','CA',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04','US',2,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#ô','',1,18440,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','FR',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd','FR',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0,','CA',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0k','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\G\\'','US',2,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','FR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0iQ','SG',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0[','US',2,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vg','TR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vd','TR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vm','TR',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\w','',1,18442,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0XA','UA',1,18450,'brute'),(_binary '$H\0ao?;}l\iڒD','VN',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:T','HK',2,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vo','TR',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ','FR',1,18450,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Úk','FR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0.eQ','GB',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0rdA\','CN',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0:Z','TH',1,18449,'brute'),(_binary ' p\0pZ\0\0\0\0\0\0\0','US',1,18452,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0uﴼ','IN',1,18449,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\04\','SG',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ve','TR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>\Y','FR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\\=%A','LT',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0g','US',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0,\','US',2,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\WJ','CN',1,18447,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Ѭ\','US',1,18447,'brute'),(_binary '&\0/\0\0\0\0\n','US',1,18451,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','FR',1,18445,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0e\b','CN',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0\ߘ','TN',1,18453,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>','FR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','FR',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0} ','ID',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0ф','IN',1,18444,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0(Yq','FR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Y#\'','RO',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0_&','IR',1,18448,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0%H','FR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vf','TR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0#\w','',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vb','TR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\','FR',1,18443,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0O','JP',1,18441,'brute'),(_binary '\0\0\0\0\0\0\0\0\0\0Vl','TR',1,18441,'brute');
/*!40000 ALTER TABLE `wp_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfblocks7`
--

DROP TABLE IF EXISTS `wp_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `expiration` bigint(20) unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=20107 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblocks7`
--

LOCK TABLES `wp_wfblocks7` WRITE;
/*!40000 ALTER TABLE `wp_wfblocks7` DISABLE KEYS */;
INSERT INTO `wp_wfblocks7` VALUES (20074,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595501870,'Blocked by Wordfence Security Network',1595501870,1,1595502470,NULL),(20075,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595503362,'Blocked by Wordfence Security Network',1595503362,1,1595503962,NULL),(20076,7,_binary '\0\0\0\0\0\0\0\0\0\0٠[',1595503475,'Exceeded the maximum number of login failures which is: 20. The last username they tried to sign in with was: \'elreynoso\'',1595503475,1,1595517875,NULL),(20077,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595504693,'Blocked by Wordfence Security Network',1595504693,1,1595505293,NULL),(20078,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595505977,'Blocked by Wordfence Security Network',1595505977,1,1595506577,NULL),(20079,2,_binary '\0\0\0\0\0\0\0\0\0\0Vo',1595506185,'Blocked by Wordfence Security Network',1595506185,1,1595506785,NULL),(20080,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595507322,'Blocked by Wordfence Security Network',1595507322,1,1595507922,NULL),(20081,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595508648,'Blocked by Wordfence Security Network',1595508648,1,1595509248,NULL),(20082,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595509942,'Blocked by Wordfence Security Network',1595509942,1,1595510542,NULL),(20083,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595511256,'Blocked by Wordfence Security Network',1595511256,1,1595511856,NULL),(20084,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595512607,'Blocked by Wordfence Security Network',1595512607,1,1595513207,NULL),(20085,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595513873,'Blocked by Wordfence Security Network',1595513873,1,1595514473,NULL),(20086,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595515141,'Blocked by Wordfence Security Network',1595515141,1,1595515741,NULL),(20087,2,_binary '\0\0\0\0\0\0\0\0\0\0Vk',1595515595,'Blocked by Wordfence Security Network',1595515595,1,1595516195,NULL),(20088,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595516392,'Blocked by Wordfence Security Network',1595516392,1,1595516992,NULL),(20089,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595517657,'Blocked by Wordfence Security Network',1595517657,1,1595518257,NULL),(20090,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595518982,'Blocked by Wordfence Security Network',1595518982,1,1595519582,NULL),(20091,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595520265,'Blocked by Wordfence Security Network',1595520265,1,1595520865,NULL),(20092,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595521502,'Blocked by Wordfence Security Network',1595521502,1,1595522102,NULL),(20093,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595522801,'Blocked by Wordfence Security Network',1595522801,1,1595523401,NULL),(20094,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595524132,'Blocked by Wordfence Security Network',1595524132,1,1595524732,NULL),(20095,2,_binary '\0\0\0\0\0\0\0\0\0\0Vo',1595524433,'Blocked by Wordfence Security Network',1595524433,1,1595525033,NULL),(20096,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595525419,'Blocked by Wordfence Security Network',1595525419,1,1595526019,NULL),(20097,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595526783,'Blocked by Wordfence Security Network',1595526783,1,1595527383,NULL),(20098,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595528042,'Blocked by Wordfence Security Network',1595528042,1,1595528642,NULL),(20099,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595529344,'Blocked by Wordfence Security Network',1595529344,1,1595529944,NULL),(20100,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595530701,'Blocked by Wordfence Security Network',1595530701,1,1595531301,NULL),(20101,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595531982,'Blocked by Wordfence Security Network',1595531982,1,1595532582,NULL),(20102,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595533326,'Blocked by Wordfence Security Network',1595533326,1,1595533926,NULL),(20103,2,_binary '\0\0\0\0\0\0\0\0\0\0>',1595534617,'Blocked by Wordfence Security Network',1595534617,1,1595535217,NULL),(20104,2,_binary '\0\0\0\0\0\0\0\0\0\0\"kv\',1595539536,'Blocked by Wordfence Security Network',1595539536,1,1595540136,NULL),(20105,2,_binary '\0\0\0\0\0\0\0\0\0\0Vn',1595555634,'Blocked by Wordfence Security Network',1595555634,1,1595556234,NULL),(20106,2,_binary '\0\0\0\0\0\0\0\0\0\0Vm',1595558775,'Blocked by Wordfence Security Network',1595558775,1,1595559375,NULL);
/*!40000 ALTER TABLE `wp_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfconfig`
--

DROP TABLE IF EXISTS `wp_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfconfig`
--

LOCK TABLES `wp_wfconfig` WRITE;
/*!40000 ALTER TABLE `wp_wfconfig` DISABLE KEYS */;
INSERT INTO `wp_wfconfig` VALUES ('actUpdateInterval','','yes'),('addCacheComment',_binary '0','yes'),('adminNoticeQueue',_binary 'a:1:{s:36:\"157f58fe-137e-4569-8fe1-6e8dd54ac979\";a:3:{s:8:\"severity\";s:8:\"critical\";s:11:\"messageHTML\";s:472:\"The last rules update for the Wordfence Web Application Firewall was unsuccessful. The last successful update check was October 8, 2019 9:29 am, so this site may be missing new rules added since then. You may wait for the next automatic attempt or try to <a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceWAF&#038;subpage=waf_options#waf-rules-next-update\">Manually Update</a> by clicking the \"Manually Refresh Rules\" button below the Rules list.\";s:8:\"category\";s:16:\"waf-rules-failed\";}}','yes'),('adminUserList',_binary 'a:1:{i:1;i:1;}','yes'),('advancedCommentScanning',_binary '0','yes'),('ajaxWatcherDisabled_admin',_binary '0','yes'),('ajaxWatcherDisabled_front',_binary '0','yes'),('alertEmails','','yes'),('alertOn_adminLogin',_binary '1','yes'),('alertOn_block',_binary '1','yes'),('alertOn_breachLogin',_binary '1','yes'),('alertOn_critical',_binary '1','yes'),('alertOn_firstAdminLoginOnly',_binary '0','yes'),('alertOn_firstNonAdminLoginOnly',_binary '0','yes'),('alertOn_loginLockout',_binary '1','yes'),('alertOn_lostPasswdForm',_binary '1','yes'),('alertOn_nonAdminLogin',_binary '0','yes'),('alertOn_scanIssues',_binary '1','yes'),('alertOn_severityLevel',_binary '25','yes'),('alertOn_throttle',_binary '0','yes'),('alertOn_update',_binary '0','yes'),('alertOn_wafDeactivated',_binary '1','yes'),('alertOn_warnings',_binary '1','yes'),('alertOn_wordfenceDeactivated',_binary '1','yes'),('alert_maxHourly',_binary '0','yes'),('allowed404s',_binary '/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration',_binary '1','yes'),('allowHTTPSCaching',_binary '0','yes'),('allowLegacy2FA',_binary '0','yes'),('allowMySQLi',_binary '1','yes'),('allScansScheduled',_binary 'a:2:{i:0;a:2:{s:9:\"timestamp\";i:1595804400;s:4:\"args\";a:1:{i:0;i:1595804400;}}i:1;a:2:{s:9:\"timestamp\";i:1596063600;s:4:\"args\";a:1:{i:0;i:1596063600;}}}','yes'),('apiKey',_binary '35c7e3e29b8b532a60456bdd5e7137f059a16ba0799052a306def47124b1530649851be12f4a77b7766326093a6ddea471407639cbab3f26ec516bfb4c4459c9e1bf82aded6927f8685706b16e13f10f','yes'),('autoBlockScanners',_binary '1','yes'),('autoUpdate',_binary '0','yes'),('autoUpdateAttempts',_binary '0','yes'),('autoUpdateChoice',_binary '1','yes'),('bannedURLs','','yes'),('betaThreatDefenseFeed',_binary '0','yes'),('blockCustomText','','yes'),('blockedTime',_binary '300','yes'),('blockFakeBots',_binary '0','yes'),('blocks701Migration',_binary '1','yes'),('blocks702Migration',_binary '1','yes'),('cacheType',_binary 'disabled','yes'),('cbl_action',_binary 'block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal',_binary '585a758ae8287','yes'),('cbl_countries','','yes'),('cbl_loggedInBlocked',_binary '0','yes'),('cbl_loginFormBlocked',_binary '0','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked',_binary '1','yes'),('checkSpamIP',_binary '0','yes'),('config701Migration',_binary '1','yes'),('config720Migration',_binary '1','yes'),('currentCronKey','','yes'),('dashboardData',_binary 'a:4:{s:9:\"generated\";i:1595500840;s:3:\"tdf\";a:3:{s:9:\"community\";i:5710;s:7:\"premium\";i:5711;s:9:\"blacklist\";i:25711;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1595412000;s:1:\"c\";i:4941848;}i:1;a:2:{s:1:\"t\";i:1595415600;s:1:\"c\";i:5345449;}i:2;a:2:{s:1:\"t\";i:1595419200;s:1:\"c\";i:5520832;}i:3;a:2:{s:1:\"t\";i:1595422800;s:1:\"c\";i:5495159;}i:4;a:2:{s:1:\"t\";i:1595426400;s:1:\"c\";i:5602657;}i:5;a:2:{s:1:\"t\";i:1595430000;s:1:\"c\";i:5601572;}i:6;a:2:{s:1:\"t\";i:1595433600;s:1:\"c\";i:5585629;}i:7;a:2:{s:1:\"t\";i:1595437200;s:1:\"c\";i:5531408;}i:8;a:2:{s:1:\"t\";i:1595440800;s:1:\"c\";i:5704391;}i:9;a:2:{s:1:\"t\";i:1595444400;s:1:\"c\";i:5716700;}i:10;a:2:{s:1:\"t\";i:1595448000;s:1:\"c\";i:5546303;}i:11;a:2:{s:1:\"t\";i:1595451600;s:1:\"c\";i:5709589;}i:12;a:2:{s:1:\"t\";i:1595455200;s:1:\"c\";i:5374725;}i:13;a:2:{s:1:\"t\";i:1595458800;s:1:\"c\";i:5463661;}i:14;a:2:{s:1:\"t\";i:1595462400;s:1:\"c\";i:5396690;}i:15;a:2:{s:1:\"t\";i:1595466000;s:1:\"c\";i:5317912;}i:16;a:2:{s:1:\"t\";i:1595469600;s:1:\"c\";i:5138273;}i:17;a:2:{s:1:\"t\";i:1595473200;s:1:\"c\";i:4977272;}i:18;a:2:{s:1:\"t\";i:1595476800;s:1:\"c\";i:6477144;}i:19;a:2:{s:1:\"t\";i:1595480400;s:1:\"c\";i:6420191;}i:20;a:2:{s:1:\"t\";i:1595484000;s:1:\"c\";i:7979005;}i:21;a:2:{s:1:\"t\";i:1595487600;s:1:\"c\";i:5795479;}i:22;a:2:{s:1:\"t\";i:1595491200;s:1:\"c\";i:5512948;}i:23;a:2:{s:1:\"t\";i:1595494800;s:1:\"c\";i:5532001;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1594857600;s:1:\"c\";i:130767059;}i:1;a:2:{s:1:\"t\";i:1594944000;s:1:\"c\";i:142953407;}i:2;a:2:{s:1:\"t\";i:1595030400;s:1:\"c\";i:140842469;}i:3;a:2:{s:1:\"t\";i:1595116800;s:1:\"c\";i:135977839;}i:4;a:2:{s:1:\"t\";i:1595203200;s:1:\"c\";i:134794024;}i:5;a:2:{s:1:\"t\";i:1595289600;s:1:\"c\";i:140718668;}i:6;a:2:{s:1:\"t\";i:1595376000;s:1:\"c\";i:125394083;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1592870400;s:1:\"c\";i:115290996;}i:1;a:2:{s:1:\"t\";i:1592956800;s:1:\"c\";i:127742507;}i:2;a:2:{s:1:\"t\";i:1593043200;s:1:\"c\";i:119321501;}i:3;a:2:{s:1:\"t\";i:1593129600;s:1:\"c\";i:120366032;}i:4;a:2:{s:1:\"t\";i:1593216000;s:1:\"c\";i:109565492;}i:5;a:2:{s:1:\"t\";i:1593302400;s:1:\"c\";i:104570336;}i:6;a:2:{s:1:\"t\";i:1593388800;s:1:\"c\";i:101239231;}i:7;a:2:{s:1:\"t\";i:1593475200;s:1:\"c\";i:113103288;}i:8;a:2:{s:1:\"t\";i:1593561600;s:1:\"c\";i:127248503;}i:9;a:2:{s:1:\"t\";i:1593648000;s:1:\"c\";i:120881920;}i:10;a:2:{s:1:\"t\";i:1593734400;s:1:\"c\";i:127825440;}i:11;a:2:{s:1:\"t\";i:1593820800;s:1:\"c\";i:142280789;}i:12;a:2:{s:1:\"t\";i:1593907200;s:1:\"c\";i:136420312;}i:13;a:2:{s:1:\"t\";i:1593993600;s:1:\"c\";i:142851840;}i:14;a:2:{s:1:\"t\";i:1594080000;s:1:\"c\";i:125875369;}i:15;a:2:{s:1:\"t\";i:1594166400;s:1:\"c\";i:145810787;}i:16;a:2:{s:1:\"t\";i:1594252800;s:1:\"c\";i:136124660;}i:17;a:2:{s:1:\"t\";i:1594339200;s:1:\"c\";i:122933508;}i:18;a:2:{s:1:\"t\";i:1594425600;s:1:\"c\";i:125767936;}i:19;a:2:{s:1:\"t\";i:1594512000;s:1:\"c\";i:123083333;}i:20;a:2:{s:1:\"t\";i:1594598400;s:1:\"c\";i:135697123;}i:21;a:2:{s:1:\"t\";i:1594684800;s:1:\"c\";i:136959117;}i:22;a:2:{s:1:\"t\";i:1594771200;s:1:\"c\";i:138529092;}i:23;a:2:{s:1:\"t\";i:1594857600;s:1:\"c\";i:130767059;}i:24;a:2:{s:1:\"t\";i:1594944000;s:1:\"c\";i:142953407;}i:25;a:2:{s:1:\"t\";i:1595030400;s:1:\"c\";i:140842469;}i:26;a:2:{s:1:\"t\";i:1595116800;s:1:\"c\";i:135977839;}i:27;a:2:{s:1:\"t\";i:1595203200;s:1:\"c\";i:134794024;}i:28;a:2:{s:1:\"t\";i:1595289600;s:1:\"c\";i:140718668;}i:29;a:2:{s:1:\"t\";i:1595376000;s:1:\"c\";i:125394083;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:455367864;}i:1;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:178284932;}i:2;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:135493174;}i:3;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:134169345;}i:4;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:84084967;}i:5;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:79706646;}i:6;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:71587916;}i:7;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:71312329;}i:8;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:67877232;}i:9;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:61861583;}}}}','yes'),('dbTest',_binary 'a:1:{s:5:\"nonce\";s:64:\"f67c9f6eec5102d2f450d691168f1e816778532b878502ef482c55e7ff872ca8\";}','no'),('dbVersion',_binary '5.7.29-log','yes'),('debugOn',_binary '0','yes'),('deleteTablesOnDeact',_binary '0','yes'),('detectProxyNextCheck',_binary '1596150499','no'),('detectProxyNonce','','no'),('detectProxyRecommendation',_binary 'HTTP_CF_CONNECTING_IP','no'),('diagnosticsWflogsRemovalHistory',_binary '[[1542758030,[\"wafRules.rules\"]]]','yes'),('disableCodeExecutionUploads',_binary '0','yes'),('disableConfigCaching',_binary '0','yes'),('disableCookies',_binary '0','yes'),('disableWAFIPBlocking',_binary '0','yes'),('dismissAutoPrependNotice',_binary '1','yes'),('displayAutomaticBlocks',_binary '1','yes'),('displayTopLevelBlocking',_binary '0','yes'),('displayTopLevelLiveTraffic',_binary '0','yes'),('displayTopLevelOptions',_binary '1','yes'),('emailedIssuesList',_binary 'a:0:{}','yes'),('email_summary_dashboard_widget_enabled',_binary '1','yes'),('email_summary_enabled',_binary '1','yes'),('email_summary_excluded_directories',_binary 'wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval',_binary 'weekly','yes'),('encKey',_binary '88e445b06554cc89','yes'),('fileContentsGSB6315Migration',_binary '1','yes'),('firewallEnabled',_binary '1','yes'),('geoIPVersionHash',_binary '8a7dba97f41311dda2bfa98f60b77d6c930d3150560909850a22b80a732ecb36','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType',_binary 'free','yes'),('lastAdminLogin',_binary 'a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:5:\"admin\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:26:\"Mon 29th June @ 10:33:37AM\";s:2:\"IP\";s:12:\"5.173.12.210\";}','yes'),('lastAttackDataSendTime',_binary '1570974449.833827','yes'),('lastBlockAggregation',_binary '1595501207','yes'),('lastBruteForceDataSendTime',_binary '0','yes'),('lastDailyCron',_binary '1595501207','yes'),('lastDashboardCheck',_binary '1595501207','yes'),('lastError_prev_geoip',_binary '[1556038489,\"Undefined offset: 47\"]','yes'),('lastError_rate_geoip',_binary '1556038489','yes'),('lastFalsePositiveSendTime',_binary '1528219647','yes'),('lastNotificationID',_binary '4420','no'),('lastPermissionsTemplateCheck',_binary '1595545465','yes'),('lastScanCompleted',_binary 'Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.','yes'),('lastScanFailureType',_binary 'general','yes'),('lastScheduledScanStart',_binary '1595545695','yes'),('liveActivityPauseEnabled',_binary '1','yes'),('liveTrafficEnabled',_binary '1','yes'),('liveTraf_displayExpandedRecords',_binary '0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers',_binary '1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge',_binary '30','yes'),('liveTraf_maxRows',_binary '2000','yes'),('loginSecurityEnabled',_binary '1','yes'),('loginSec_blockAdminReg',_binary '1','yes'),('loginSec_breachPasswds',_binary 'admins','yes'),('loginSec_breachPasswds_enabled',_binary '1','yes'),('loginSec_countFailMins',_binary '240','yes'),('loginSec_disableAuthorScan',_binary '1','yes'),('loginSec_disableOEmbedAuthor',_binary '0','yes'),('loginSec_enableSeparateTwoFactor',_binary '0','yes'),('loginSec_lockInvalidUsers',_binary '0','yes'),('loginSec_lockoutMins',_binary '240','yes'),('loginSec_maskLoginErrors',_binary '1','yes'),('loginSec_maxFailures',_binary '20','yes'),('loginSec_maxForgotPasswd',_binary '20','yes'),('loginSec_requireAdminTwoFactor',_binary '0','yes'),('loginSec_strongPasswds',_binary 'pubs','yes'),('loginSec_strongPasswds_enabled',_binary '1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey',_binary 'd31f0c5e546ec1ff7453b9a90ee51665c0989e7dc540aaddb33e7e6b64b29ffb','yes'),('lowResourceScansEnabled',_binary '0','yes'),('lowResourceScanWaitStep','','yes'),('manualScanType',_binary 'onceDaily','yes'),('max404Crawlers',_binary 'DISABLED','yes'),('max404Crawlers_action',_binary 'throttle','yes'),('max404Humans',_binary 'DISABLED','yes'),('max404Humans_action',_binary 'throttle','yes'),('maxExecutionTime','','yes'),('maxGlobalRequests',_binary 'DISABLED','yes'),('maxGlobalRequests_action',_binary 'throttle','yes'),('maxMem',_binary '256','yes'),('maxRequestsCrawlers',_binary 'DISABLED','yes'),('maxRequestsCrawlers_action',_binary 'throttle','yes'),('maxRequestsHumans',_binary 'DISABLED','yes'),('maxRequestsHumans_action',_binary 'throttle','yes'),('maxScanHits',_binary 'DISABLED','yes'),('maxScanHits_action',_binary 'throttle','yes'),('migration636_email_summary_excluded_directories',_binary '1','no'),('needsNewTour_blocking',_binary '1','yes'),('needsNewTour_dashboard',_binary '1','yes'),('needsNewTour_firewall',_binary '1','yes'),('needsNewTour_livetraffic',_binary '1','yes'),('needsNewTour_loginsecurity',_binary '1','yes'),('needsNewTour_scan',_binary '1','yes'),('needsUpgradeTour_blocking',_binary '0','yes'),('needsUpgradeTour_dashboard',_binary '0','yes'),('needsUpgradeTour_firewall',_binary '0','yes'),('needsUpgradeTour_livetraffic',_binary '0','yes'),('needsUpgradeTour_loginsecurity',_binary '0','yes'),('needsUpgradeTour_scan',_binary '0','yes'),('neverBlockBG',_binary 'neverBlockVerified','yes'),('noc1ScanSchedule',_binary 'a:3:{i:0;i:1595545200;i:1;i:1595804400;i:2;i:1596063600;}','yes'),('notification_blogHighlights',_binary '1','yes'),('notification_productUpdates',_binary '1','yes'),('notification_promotions',_binary '1','yes'),('notification_scanStatus',_binary '1','yes'),('notification_securityAlerts',_binary '1','yes'),('notification_updatesNeeded',_binary '1','yes'),('onboardingAttempt1',_binary 'skipped','yes'),('onboardingAttempt2',_binary 'skipped','yes'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial',_binary '0','yes'),('originalScheduledScanStart',_binary '1595545200','yes'),('other_blockBadPOST',_binary '0','yes'),('other_bypassLitespeedNoabort',_binary '0','yes'),('other_hideWPVersion',_binary '0','yes'),('other_noAnonMemberComments',_binary '1','yes'),('other_pwStrengthOnUpdate',_binary '1','yes'),('other_scanComments',_binary '1','yes'),('other_scanOutside',_binary '0','yes'),('other_WFNet',_binary '1','yes'),('previousWflogsFileList',_binary '[\".htaccess\",\"attack-data.php\",\"config-livewaf.php\",\"config-synced.php\",\"config-transient.php\",\"config.php\",\"GeoLite2-Country.mmdb\",\"ips.php\",\"rules.php\",\"template.php\"]','yes'),('scanFileProcessing','','yes'),('scansEnabled_checkGSB',_binary '1','yes'),('scansEnabled_checkHowGetIPs',_binary '1','yes'),('scansEnabled_checkReadableConfig',_binary '1','yes'),('scansEnabled_comments',_binary '1','yes'),('scansEnabled_core',_binary '1','yes'),('scansEnabled_coreUnknown',_binary '1','yes'),('scansEnabled_diskSpace',_binary '1','yes'),('scansEnabled_dns',_binary '1','yes'),('scansEnabled_fileContents',_binary '1','yes'),('scansEnabled_fileContentsGSB',_binary '1','yes'),('scansEnabled_heartbleed',_binary '1','yes'),('scansEnabled_highSense',_binary '0','yes'),('scansEnabled_malware',_binary '1','yes'),('scansEnabled_oldVersions',_binary '1','yes'),('scansEnabled_options',_binary '1','yes'),('scansEnabled_passwds',_binary '1','yes'),('scansEnabled_plugins',_binary '0','yes'),('scansEnabled_posts',_binary '1','yes'),('scansEnabled_public',_binary '0','yes'),('scansEnabled_scanImages',_binary '0','yes'),('scansEnabled_suspectedFiles',_binary '1','yes'),('scansEnabled_suspiciousAdminUsers',_binary '1','yes'),('scansEnabled_suspiciousOptions',_binary '1','yes'),('scansEnabled_themes',_binary '0','yes'),('scansEnabled_wafStatus',_binary '1','yes'),('scansEnabled_wpscan_directoryListingEnabled',_binary '1','yes'),('scansEnabled_wpscan_fullPathDisclosure',_binary '1','yes'),('scanStageStatuses',_binary 'a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:5;s:8:\"finished\";i:4;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}}','no'),('scanTime',_binary '1595501211.5828','yes'),('scanType',_binary 'custom','yes'),('scan_exclude','','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues',_binary '1000','yes'),('schedMode',_binary 'auto','yes'),('schedStartHour',_binary '4','yes'),('scheduledScansEnabled',_binary '1','yes'),('serverDNS',_binary '1595568184;299;104.24.116.173','yes'),('serverIP',_binary '1595545700;216.86.144.6','yes'),('showAdminBarMenu',_binary '1','yes'),('showWfCentralUI',_binary '1','yes'),('signatureUpdateTime',_binary '1480348135','yes'),('spamvertizeCheck',_binary '0','yes'),('ssl_verify',_binary '1','yes'),('startScansRemotely',_binary '0','yes'),('supportContent',_binary '{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":0},{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":1},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":2},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":3},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":4},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":5},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":6}],\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":0},{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":1},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":6}],\"order\":5},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":6},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6}],\"order\":7},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blacklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"Account\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/account\\/\",\"order\":0},{\"title\":\"Pricing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/pricing\\/\",\"order\":1},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":2}],\"order\":8},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available a data processing agreement to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services. We also provide a data processing agreement if you qualify as a data controller under the GDPR.\",\"order\":9},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":10},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":11}]}','yes'),('supportHash',_binary 'cd4586d45a3b5b64878637ae274e90636206e42f776f8d456a6203a6bf9eed63','yes'),('timeoffset_wf',_binary '-1','yes'),('timeoffset_wf_updated',_binary '1595545697','yes'),('tldlist',_binary '|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceb|ceo|cfa|cfd|cpa|crs|csc|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jcp|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|off|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|qvc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|adac|aero|akdn|ally|amex|arab|amica|army|amazon|amfam|asia|archi|arpa|arte|asda|auction|audi|apple|auto|audible|attorney|audio|auspost|autos|azure|author|athleta|baby|band|bank|aramco|baidu|alsace|alstom|anquan|android|avianca|banamex|bananarepublic|bbva|beer|best|call|camp|care|cars|casa|case|cash|cbre|cern|chase|chat|citi|city|dell|desi|diet|dish|docs|land|lego|lgbt|lidl|life|like|limo|link|live|meet|meme|adult|aetna|bible|cheap|cisco|delta|moto|movie|africa|linde|agakhan|citic|lipsy|lixil|name|lilly|navy|actor|nico|nexus|abarth|canon|lamer|news|next|beats|abbott|abbvie|cards|lexus|nike|nowtv|pccw|abogado|pink|play|plus|build|abudhabi|drive|ping|ninja|nokia|phone|pics|academy|lease|legal|nikon|party|agency|bond|airtel|bike|bing|book|bingo|black|bofa|bosch|alibaba|alipay|barclays|barclaycard|blog|boats|barcelona|bauhaus|allstate|blue|bayern|basketball|buzz|cafe|airbus|barefoot|cloud|club|cool|coach|coop|cyou|loft|cymru|maif|codes|mini|mint|moda|ollo|click|mobi|open|crown|dabur|dance|data|date|dclk|deal|deals|loan|love|ltda|luxe|menu|loans|locus|lotte|lotto|lupin|macys|mango|media|miami|money|nissan|nissay|norton|nowruz|okinawa|oldnavy|omega|office|olayan|online|oracle|orange|pars|baseball|paris|airforce|philips|bargains|organic|pfizer|origins|osaka|page|otsuka|parts|download|duck|dvag|erni|fage|fans|farm|fast|fiat|fido|film|fish|alfaromeo|fail|fire|flir|allfinanz|food|ford|free|forex|forum|fund|game|games|gbiz|gent|ggee|gives|glass|globo|gmail|gmbh|gallo|gift|glade|golf|goog|gifts|gold|green|gripe|kred|accountants|americanexpress|dubai|earth|edeka|email|epson|accenture|accountant|sarl|faith|team|afamilycompany|star|surf|talk|taxi|fedex|final|tech|teva|tiaa|tips|town|toys|tube|vana|visa|viva|vivo|vote|voto|wang|weir|wien|wiki|wine|work|xbox|yoga|zara|zero|zone|group|guge|guru|hair|haus|hdfc|help|here|host|hsbc|icbc|associates|hgtv|ieee|imdb|immo|info|itau|java|jeep|jobs|jprs|kddi|kiwi|kpmg|pohl|porn|post|prod|prof|qpon|raid|read|reit|rent|rest|jetzt|pharmacy|rich|rmit|save|koeln|room|rsvp|ruhr|safe|sale|saxo|scot|seat|seek|sexy|shaw|shia|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|spot|guide|house|intel|irish|americanfamily|gucci|homes|honda|horse|hyatt|ikano|amsterdam|iveco|analytics|panasonic|apartments|observer|partners|aquarelle|kyoto|passagens|olayangroup|onyourside|northwesternmutual|photo|total|berlin|boston|stada|beauty|bharti|bostik|sport|broker|brother|smile|solar|study|bugatti|skype|sling|smart|store|camera|caseih|casino|center|chrome|church|claims|coffee|capital|swiss|condos|style|caravan|career|chanel|circle|sucks|clinic|careers|comcast|company|commbank|compare|computer|comsec|community|construction|consulting|contact|contractors|google|booking|hiphop|imamat|safety|sakura|salon|gratis|hughes|sanofi|school|schule|bestbuy|stream|studio|supply|suzuki|swatch|bentley|sydney|channel|search|clinique|health|hockey|shoes|shouji|charity|shell|cipriani|sharp|chintai|citadel|clubmed|soccer|social|cityeats|cleaning|hotels|sener|seven|select|clothing|secure|college|cologne|hermes|cooking|volvo|wales|watch|coupon|credit|cruise|dating|datsun|dealer|degree|dental|design|direct|doctor|dunlop|dupont|durban|emerck|vodka|energy|estate|expert|family|video|events|vegas|weber|flickr|weibo|futbol|gallup|works|world|xerox|george|yahoo|garden|giving|global|insure|space|taipei|tatar|tennis|tienda|tires|corsica|cookingchannel|target|tattoo|tirol|tjmaxx|tkmaxx|tmall|today|tokyo|tools|taobao|toray|tours|trade|trust|travel|tunes|ubank|toyota|tushu|unicom|viajes|viking|villas|virgin|vision|voting|voyage|vuelos|walter|webcam|xihuan|yachts|yandex|zappos|country|farmers|fitness|living|forsale|bradesco|lefrak|boutique|flights|flowers|lawyer|florist|broadway|dentist|delivery|latino|diamonds|fashion|democrat|engineer|express|feedback|equipment|ericsson|exposed|ferrari|deloitte|ferrero|fidelity|finance|etisalat|firmdale|fishing|football|bloomberg|exchange|locker|london|frogans|brussels|cricket|madrid|cruises|digital|maison|makeup|pictet|budapest|tiffany|builders|business|discount|discover|domains|market|genting|pictures|saarland|tickets|ventures|verisign|directory|education|ryukyu|fujitsu|gallery|frontier|latrobe|leclerc|luxury|lundbeck|photos|toshiba|lighting|physio|limited|lincoln|trading|training|vanguard|fairwinds|markets|blackfriday|fresenius|marriott|metlife|frontdoor|mattel|fujixerox|furniture|lifestyle|mobile|monash|mormon|museum|mutual|nagoya|natura|monster|netbank|netflix|network|neustar|theater|mortgage|moscow|theatre|winners|memorial|melbourne|walmart|watches|financial|weather|windows|yamaxun|youtube|bnpparibas|maserati|mckinsey|merckmsd|firestone|marketing|marshalls|travelers|wanggou|website|wedding|xn--90ae|yokohama|microsoft|xfinity|vacations|whoswho|zuerich|woodside|xn--90ais|xn--qxam|xn--j1amh|blockbuster|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|xn--j1aef|xn--l1acc|xn--ngbrx|xn--node|xn--p1acf|xn--p1ai|xn--nqv7f|xn--qxa6a|xn--tckwe|xn--vhquv|yodobashi|boehringer|grocery|hangout|hitachi|catholic|guardian|guitars|kinder|catering|graphics|hamburg|enterprises|grainger|holiday|capitalone|engineering|hdfcbank|hotmail|creditcard|homedepot|rehab|holdings|hoteles|jewelry|helsinki|kindle|hisamitsu|lasalle|homegoods|hosting|hospital|homesense|kaufen|hyundai|eurovision|juegos|juniper|jpmorgan|extraspace|healthcare|joburg|foundation|management|mitsubishi|reise|coupons|courses|ismaili|kitchen|shiksha|capetown|lacaixa|christmas|godaddy|sandvik|goldpoint|cuisinella|lancia|rentals|rugby|intuit|reisen|lanxess|rogers|samsung|shriram|goodyear|immobilien|review|reliance|report|reviews|istanbul|repair|insurance|investments|international|jaguar|lancaster|landrover|newholland|ricoh|komatsu|kosher|rexroth|rocher|rodeo|industries|infiniti|kuokgroup|nationwide|rocks|richardli|schmidt|ipiranga|samsclub|schwarz|science|scjohnson|services|shangrila|shopping|institute|showtime|motorcycles|security|nextdirect|pizza|praxi|pramerica|promo|politie|systems|cancerresearch|place|pioneer|prime|lifeinsurance|press|plumbing|poker|calvinklein|properties|schaeffler|support|surgery|property|supplies|restaurant|swiftcover|tatamotors|university|xn--30rr7y|xn--3pxu8k|xn--45q11c|creditunion|photography|xn--4gbrim|bridgestone|foodnetwork|lamborghini|playstation|lplfinancial|productions|quest|radio|quebec|racing|progressive|realty|realtor|recipes|softbank|realestate|storage|redstone|rightathome|singles|scholarships|staples|temasek|prudential|statebank|protection|republican|stcgroup|statefarm|stockholm|redumbrella|software|solutions|technology|travelersinsurance|vlaanderen|volkswagen|travelchannel|weatherchannel|sandvikcoromant|xn--55qx5d|xn--80aswg|xn--90a3ac|xn--mxtq1m|xn--1ck2e1b|xn--5tzm5g|xn--o3cw4h|xn--pssy2u|xn--q7ce6a|xn--unup4y|xn--1qqw23a|xn--2scrj9c|xn--9dbq2a|xn--9et52u|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|kerryhotels|kerryproperties|williamhill|xn--11b4c3d|xn--3bst00m|spreadbetting|xn--3hcrj9c|xn--45brj9c|xn--cg4bki|xn--45br5cyl|xn--80ao21a|xn--czr694b|xn--czrs0t|xn--czru2d|xn--42c2d9a|xn--6frz82g|wolterskluwer|xn--3ds443g|xn--c2br7g|xn--d1acj3b|versicherung|xn--3e0b707e|kerrylogistics|xn--80adxhks|xn--80asehdb|xn--8y0a063a|xn--efvy88h|xn--fct429k|xn--54b7fta0cc|xn--55qw42g|xn--5su34j936bgsg|xn--6qq986b3xl|xn--80aqecdr1a|xn--fiq64b|xn--fiqs8s|xn--9krt00a|xn--cckwcxetd|xn--hxt814e|xn--3oq18vl8pn36a|xn--fiqz9s|xn--cck2b3b|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--imr513n|xn--io0a7i|xn--j6w193g|xn--kput3i|xn--kprw13d|xn--kpry57d|xn--gckr3f0f|xn--jvr189m|xn--mgb9awbf|xn--jlq61u9w7b|xn--mgba3a3ejt|xn--kcrx77d1x4a|xn--lgbbat1ad8j|xn--mgba3a4f16a|xn--mgba7c0bbn0a|xn--mgbbh1a|xn--jlq480n2rg|xn--mgbpl2fh|xn--eckvdtc9d|xn--fpcrj9c3d|xn--fzc2c9e2c|xn--h2brj9c8c|xn--b4w605ferd|xn--fiq228c5hs|xn--h2breg3eve|xn--i1b6b1a6a2e|xn--mgbaakc7dvf|xn--fzys8d69uvgm|xn--bck1b9a5dre4c|xn--clchc0ea0b2g2a9gcd|xn--mgbtx2b|xn--mgbt3dhd|xn--mix891f|xn--mgbaam7a8h|xn--nyqy26a|xn--mgbab2bd|xn--mgbayh7gpa|xn--pgbs0dh|xn--mgbbh1a71e|xn--otu796d|xn--ogbpf8fl|xn--mgbc0a9azcg|xn--mgbca7dzdo|xn--q9jyb4c|xn--nqv7fs00ema|xn--mgbcpq6gpa1a|xn--mgberp4a5d4ar|xn--mgbgu82a|xn--mk1bu44c|xn--ngbc5azd|xn--ngbe9e0a|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--mgbai9azgqp6j|xn--qcka1pmc|xn--rhqv96g|xn--rovu88b|xn--rvc1e0am3e|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--vuq861b|xn--w4rs40l|xn--tiq49xqyj|xn--mgbah1a3hjkrd|xn--xhq521b|xn--xkc2al3hye2a|xn--w4r85el8fhu5dnra|xn--xkc2dl3a5ee0h|xn--yfro4i67o|xn--ygbi2ammx|xn--vermgensberater-ctb|xn--zfr164b|xn--vermgensberatung-pwb|','yes'),('tldlistHash',_binary '7175016e648c24445b9b06f370f73a01d278af202949c74203850a86e0222b06','yes'),('total503s',_binary '327226','yes'),('totalAlertsSent',_binary '572','yes'),('totalIPsBlocked',_binary '43174','yes'),('totalIPsLocked',_binary '259','yes'),('totalLoginHits',_binary '223493','yes'),('totalLogins',_binary '300','yes'),('totalScansRun',_binary '1858','yes'),('touppBypassNextCheck',_binary '0','yes'),('touppPromptNeeded',_binary '1','yes'),('tourClosed',_binary '1','yes'),('useNoc3Secure',_binary '1','yes'),('vulnerabilities_plugin',_binary 'a:31:{i:0;a:5:{s:4:\"slug\";s:14:\"contact-form-7\";s:9:\"toVersion\";s:3:\"5.2\";s:11:\"fromVersion\";s:5:\"5.1.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:13:\"header-footer\";s:9:\"toVersion\";s:5:\"3.2.1\";s:11:\"fromVersion\";s:5:\"3.1.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:5:{s:4:\"slug\";s:13:\"page-links-to\";s:9:\"toVersion\";s:5:\"3.3.4\";s:11:\"fromVersion\";s:5:\"3.3.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:5:{s:4:\"slug\";s:13:\"photo-gallery\";s:9:\"toVersion\";s:6:\"1.5.59\";s:11:\"fromVersion\";s:6:\"1.5.58\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:5:{s:4:\"slug\";s:19:\"shortcodes-ultimate\";s:9:\"toVersion\";s:5:\"5.9.2\";s:11:\"fromVersion\";s:5:\"5.9.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:5:{s:4:\"slug\";s:10:\"simple-css\";s:9:\"toVersion\";s:5:\"1.1.1\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:5:{s:4:\"slug\";s:9:\"wordfence\";s:9:\"toVersion\";s:5:\"7.4.9\";s:11:\"fromVersion\";s:5:\"7.4.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:5:{s:4:\"slug\";s:13:\"wordpress-seo\";s:9:\"toVersion\";s:6:\"14.6.1\";s:11:\"fromVersion\";s:6:\"14.4.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:5:{s:4:\"slug\";s:22:\"wpmudev_install-912164\";s:9:\"toVersion\";s:5:\"3.6.3\";s:11:\"fromVersion\";s:5:\"3.2.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:13:\"301-redirects\";s:11:\"fromVersion\";s:3:\"0.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:19:\"better-font-awesome\";s:11:\"fromVersion\";s:5:\"1.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:14:\"classic-editor\";s:11:\"fromVersion\";s:3:\"1.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:19:\"cosmick-star-rating\";s:11:\"fromVersion\";s:5:\"1.1.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:24:\"templatic-singletemplate\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:16:\"disable-comments\";s:11:\"fromVersion\";s:6:\"1.10.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:4:{s:4:\"slug\";s:14:\"duplicate-page\";s:11:\"fromVersion\";s:3:\"4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:16;a:4:{s:4:\"slug\";s:12:\"easy-wp-smtp\";s:11:\"fromVersion\";s:7:\"1.3.9.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:4:{s:4:\"slug\";s:13:\"exclude-pages\";s:11:\"fromVersion\";s:4:\"1.92\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:4:{s:4:\"slug\";s:23:\"hummingbird-performance\";s:11:\"fromVersion\";s:5:\"2.4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:19;a:4:{s:4:\"slug\";s:13:\"meteor-slides\";s:11:\"fromVersion\";s:5:\"1.5.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:20;a:4:{s:4:\"slug\";s:20:\"post-template-select\";s:11:\"fromVersion\";s:3:\"1.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:21;a:4:{s:4:\"slug\";s:11:\"redirection\";s:11:\"fromVersion\";s:3:\"4.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:22;a:4:{s:4:\"slug\";s:10:\"wp-smushit\";s:11:\"fromVersion\";s:5:\"3.6.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:23;a:4:{s:4:\"slug\";s:16:\"tinymce-advanced\";s:11:\"fromVersion\";s:5:\"5.4.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:24;a:4:{s:4:\"slug\";s:17:\"underconstruction\";s:11:\"fromVersion\";s:4:\"1.18\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:25;a:4:{s:4:\"slug\";s:12:\"wp-force-ssl\";s:11:\"fromVersion\";s:4:\"1.55\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:26;a:4:{s:4:\"slug\";s:14:\"wp-super-cache\";s:11:\"fromVersion\";s:5:\"1.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:27;a:4:{s:4:\"slug\";s:22:\"secondary-html-content\";s:11:\"fromVersion\";s:5:\"3.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:28;a:4:{s:4:\"slug\";s:9:\"revslider\";s:11:\"fromVersion\";s:7:\"5.4.8.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:29;a:4:{s:4:\"slug\";s:15:\"wpmudev-updates\";s:11:\"fromVersion\";s:5:\"4.9.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:30;a:4:{s:4:\"slug\";s:14:\"wr-contactform\";s:11:\"fromVersion\";s:6:\"1.1.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('vulnerabilities_theme',_binary 'a:5:{i:0;a:4:{s:4:\"slug\";s:12:\"twentyeleven\";s:9:\"toVersion\";s:3:\"3.4\";s:11:\"fromVersion\";s:3:\"2.6\";s:10:\"vulnerable\";b:0;}i:1;a:4:{s:4:\"slug\";s:14:\"twentynineteen\";s:9:\"toVersion\";s:3:\"1.6\";s:11:\"fromVersion\";s:3:\"1.2\";s:10:\"vulnerable\";b:0;}i:2;a:4:{s:4:\"slug\";s:9:\"twentyten\";s:9:\"toVersion\";s:3:\"3.0\";s:11:\"fromVersion\";s:3:\"2.3\";s:10:\"vulnerable\";b:0;}i:3;a:4:{s:4:\"slug\";s:12:\"twentytwelve\";s:9:\"toVersion\";s:3:\"3.1\";s:11:\"fromVersion\";s:3:\"2.3\";s:10:\"vulnerable\";b:0;}i:4;a:4:{s:4:\"slug\";s:12:\"twentytwenty\";s:9:\"toVersion\";s:3:\"1.4\";s:11:\"fromVersion\";s:3:\"1.0\";s:10:\"vulnerable\";b:0;}}','yes'),('vulnRegex',_binary '/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i','yes'),('wafAlertInterval',_binary '600','yes'),('wafAlertLastSendTime',_binary '1570970016','yes'),('wafAlertOnAttacks',_binary '1','yes'),('wafAlertThreshold',_binary '100','yes'),('wafAlertWhitelist','','yes'),('waf_status',_binary 'enabled','yes'),('welcomeClosed',_binary '1','yes'),('wfKillRequested',_binary '0','no'),('wfPeakMemory',_binary '31457280','no'),('wfScanStartVersion',_binary '5.4.2','yes'),('wfStatusStartMsgs',_binary 'a:5:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:47:\"Checking for paths skipped due to scan settings\";}','yes'),('wf_dnsA',_binary 'chicagolandremodeling.com points to 104.24.116.173, chicagolandremodeling.com points to 104.24.117.173','yes'),('wf_dnsCNAME','','yes'),('wf_dnsLogged',_binary '1','yes'),('wf_dnsMX',_binary 'dc-f71c82538576.chicagolandremodeling.com','yes'),('wf_scanLastStatusTime',_binary '0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems',_binary 'a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1595545697;}','yes'),('whitelisted','','yes'),('whitelistedServices',_binary '{}','yes'),('whitelistHash',_binary 'bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets',_binary '{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wp_home_url',_binary 'https://chicagolandremodeling.com','yes'),('wp_site_url',_binary 'https://chicagolandremodeling.com','yes');
/*!40000 ALTER TABLE `wp_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfcrawlers`
--

DROP TABLE IF EXISTS `wp_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfcrawlers` (
  `IP` binary(16) NOT NULL,
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfcrawlers`
--

LOCK TABLES `wp_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `wp_wfcrawlers` DISABLE KEYS */;
INSERT INTO `wp_wfcrawlers` VALUES (_binary '\0\0\0\0\0\0\0\0\0\0ߎG',_binary 'i| OoD!\','verified',1595397193,''),(_binary '\0\0\0\0\0\0\0\0\0\0ߎG',_binary '>b0oQ1','badPTR',1595397193,'ec2-18-223-142-71.us-east-2.compute.amazonaws.com'),(_binary '\0\0\0\0\0\0\0\0\0\0%\M',_binary 'i| OoD!\','verified',1595155225,''),(_binary '\0\0\0\0\0\0\0\0\0\0%\M',_binary '>b0oQ1','badPTR',1595155224,'37.252.231.77'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595025627,'crawl-66-249-66-12.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594986977,'crawl-66-249-66-28.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594962356,'crawl-66-249-66-128.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595037459,'crawl-66-249-66-129.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594999010,'crawl-66-249-66-130.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595005068,'crawl-66-249-66-137.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595066473,'crawl-66-249-66-139.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595070100,'crawl-66-249-66-141.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594969449,'crawl-66-249-66-142.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594994795,'crawl-66-249-66-143.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1595014701,'crawl-66-249-66-144.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594994578,'crawl-66-249-66-155.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BB',_binary '>b0oQ1','verified',1594987770,'crawl-66-249-66-159.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BE5',_binary '>b0oQ1','verified',1594923957,'crawl-66-249-69-53.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BE:',_binary '>b0oQ1','verified',1594897378,'crawl-66-249-69-58.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BE;',_binary '>b0oQ1','verified',1594949393,'crawl-66-249-69-59.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BEZ',_binary '>b0oQ1','verified',1594918513,'crawl-66-249-69-90.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BIJ',_binary '>b0oQ1','verified',1595135445,'crawl-66-249-73-74.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BIP',_binary '>b0oQ1','verified',1595216334,'crawl-66-249-73-80.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BIZ',_binary '>b0oQ1','verified',1595176486,'crawl-66-249-73-90.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\\',_binary '>b0oQ1','verified',1595099641,'crawl-66-249-73-92.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595112232,'crawl-66-249-73-224.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595377706,'crawl-66-249-73-227.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595145123,'crawl-66-249-73-231.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595143910,'crawl-66-249-73-235.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595153731,'crawl-66-249-73-237.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI\',_binary '>b0oQ1','verified',1595180105,'crawl-66-249-73-238.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595114098,'crawl-66-249-73-240.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595122571,'crawl-66-249-73-242.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595127037,'crawl-66-249-73-244.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595226590,'crawl-66-249-73-246.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595180933,'crawl-66-249-73-250.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595336578,'crawl-66-249-73-252.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BI',_binary '>b0oQ1','verified',1595213309,'crawl-66-249-73-254.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BO%',_binary '>b0oQ1','verified',1595383911,'crawl-66-249-79-37.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BO*',_binary '>b0oQ1','verified',1595383745,'crawl-66-249-79-42.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BO-',_binary '>b0oQ1','verified',1595384699,'crawl-66-249-79-45.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0BO9',_binary '>b0oQ1','verified',1595383744,'crawl-66-249-79-57.googlebot.com'),(_binary '\0\0\0\0\0\0\0\0\0\0B\\F',_binary '>b0oQ1','verified',1595019481,'rate-limited-proxy-66-249-92-70.google.com'),(_binary '\0\0\0\0\0\0\0\0\0\0\1\',_binary 'i| OoD!\','verified',1595093840,''),(_binary '\0\0\0\0\0\0\0\0\0\0\1\',_binary '>b0oQ1','badPTR',1595093840,'188.213.49.210'),(_binary '\0\0\0\0\0\0\0\0\0\0\U\',_binary '>b0oQ1','verified',1595327003,'rate-limited-proxy-209-85-238-176.google.com'),(_binary '\0\0\0\0\0\0\0\0\0\0\U\',_binary '>b0oQ1','verified',1595328773,'rate-limited-proxy-209-85-238-180.google.com'),(_binary '\0\0\0\0\0\0\0\0\0\0\U\',_binary '>b0oQ1','verified',1595328777,'rate-limited-proxy-209-85-238-182.google.com');
/*!40000 ALTER TABLE `wp_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wffilechanges`
--

DROP TABLE IF EXISTS `wp_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilechanges`
--

LOCK TABLES `wp_wffilechanges` WRITE;
/*!40000 ALTER TABLE `wp_wffilechanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wffilechanges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wffilemods`
--

DROP TABLE IF EXISTS `wp_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilemods`
--

LOCK TABLES `wp_wffilemods` WRITE;
/*!40000 ALTER TABLE `wp_wffilemods` DISABLE KEYS */;
INSERT INTO `wp_wffilemods` VALUES (_binary '\0I\J-$','wp-content/plugins/wordfence/images/flags/be.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\٣\Z%\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\00#9Z4\j$','wp-admin/network/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1s̶>\Ѕc\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\05g\\꫔c0\"D','wp-includes/css/media-views-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X2q_\95VLT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0C_\n\\jD\@k','wp-admin/network/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V1\r/\\\.\\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0`YϭrG','wp-includes/SimplePie/Restriction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*qhds;\y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0u9>\5\\JJ','wp-content/plugins/page-links-to/languages/page-links-to-he_IL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\yWF(-sBT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0^9Nt\"tu\','wp-content/plugins/wordfence/lib/menu_diagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\5\N_~DCh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\;fQ\=*Ǖ\','wp-includes/js/wp-emoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K{GBʚW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\%ΥJ-p\','wp-content/plugins/wordpress-seo/inc/class-rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\JF\\\RiM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\|9\\ue\\@','wp-admin/includes/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3q\\.\\\О',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\D`8R\ɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L;\,C\\p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nƥuo\\efan','wp-content/plugins/wordfence/images/flags/a2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4.M:\<K0ܟή',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J%|}\W©\\','wp-content/plugins/page-links-to/languages/page-links-to.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\{奃oJ,^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'NQ\"*hzr\w|\Z','wp-admin/images/media-button-other.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƴk\|\\,O\\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\`?>\','wp-content/themes/chimod/header.php',0,_binary 'lf#m\2QЕ',_binary 'lf#m\2QЕ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!v4','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{F\\s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T\h\\\zPr\','wp-admin/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˂ב\_/\Zh\n:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0,wS\\p\"','wp-content/plugins/header-footer/codemirror/mode/javascript/json-ld.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kU#\\&<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't]ٟu\\u\\j','wp-admin/images/menu-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qL,_;1/\E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':IkC\*]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=q\rljA+','wp-admin/user/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*zucm	J\e\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<)8T*.SuS\ĺ','wp-includes/SimplePie/Cache/MySQL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\B\C\ZH\xV',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\A\rD\0\x\7\','wp-content/plugins/wordfence/images/flags/eu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2#ϫhks',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HC\\!\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\͕\\0A\ItdH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\\sy6\'v,\=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\Bf\Z\n`\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\.\/\Oݶ','wp-content/themes/twentyeleven/sidebar-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$9Pc\$*\\B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\7&Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oS\pZ5\\Ǜ4S\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(љ\\\0H<_','wp-admin/includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J물@Y\OSp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iPÙld\0','wp-includes/css/jquery-ui-dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\d\\6\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\dΥ\','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/.hg_archival.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\8\[\0\\\?[L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ˡ*\\\ЈB~\Z','wp-content/themes/twentyeleven/inc/images/content-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rؓ9h\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9䷳\n6','wp-content/plugins/wordpress-seo/admin/pages/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZQ\rraEȑ\QQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M\a\nA\','wp-content/plugins/wordpress-seo/vendor/composer/installers/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\nCl3bBJ\W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\癗\@<','wp-content/plugins/wordfence/images/flags/ps.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bHV\z\k1\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\@|4n','wp-includes/class-http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qc.FB\6\l\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'ڞ\0;?\+VҪ\','wp-admin/network/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\^Y\&;^\\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E&\VN\"N','wp-admin/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FY\0\g\H0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\$,\JD&\\'','wp-content/themes/twentyeleven/images/wordpress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\"t	TEU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's/x@ލ\UOn','wp-content/themes/twentyeleven/images/headers/lanterns-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XF브\}\2\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\0\'\0lv\#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6^\<DEl',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ȅ\\xy\\','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\N\y~\n\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ϴ 3P`#8^\\Z','wp-admin/css/colors/coffee/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\\\#6\`τ}L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\"sV\~3s','wp-content/plugins/tinymce-advanced/mce/nonbreaking/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\^\^:E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!z4','wp-content/plugins/wordfence/images/flags/va.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r)\p؂\\Zt3\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Pƈv$\','wp-content/plugins/wordfence/images/flags/gt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\v\q\#\\0@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"N߬jj)\0N','wp-admin/images/menu-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jG\{>^;$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H\c\IJ%H','wp-content/plugins/wordfence/views/reports/activity-report-email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\he\:s\ұxk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N-#\Z3k8T','wp-content/plugins/wordfence/images/flags/sprite-des-16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3JEE4\\M`kf\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tZQYz0\跫','wp-admin/images/wordpress-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ưy\o\8\8S`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ʑQ\"D#\\j','wp-content/plugins/header-footer/languages/header-footer-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!E<\"\\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k5SH\\\Ы','wp-includes/SimplePie/Author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4q\_A%Nw1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\e\bWA0\d','wp-admin/images/comment-grey-bubble.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y*\'tF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\ċ6\Z\0>','wp-content/plugins/wordpress-seo/js/jquery.qtip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V4&@\ѵnh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'OX\\07\\','wp-content/plugins/wordpress-seo/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G<vM=rv\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm\qPoD0\*\\L','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FEW\"*7\GJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+6`Zħ\\H','wp-content/plugins/meteor-slides/meteor-slides-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\'$B\ج?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q \(;ؠ|~R8b','wp-admin/includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_\zd\\BO\V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%bQbM<\x','wp-includes/js/imgareaselect/border-anim-h.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\\,\ntZ^6{Lp4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ŋ\`7T\a','wp-content/plugins/wordfence/lib/menu_whois.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4	7R]hE@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ѧ_4a!F','wp-admin/css/ie.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IBT\\'ni)P\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '֫BCd\Ll%\\','wp-content/themes/twentyten/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\C_<m\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\E\,\\ZxA\\','wp-content/plugins/wordpress-seo/images/Premium_130x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vl:I1\\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i)33ܥ\\s\*','wp-admin/includes/class-wp-ms-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd&LD\KҟI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\o+s\7\8','wp-content/plugins/wordfence/css/iptraf.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+	\\\<dq7^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '51y}E\`','wp-content/plugins/wordpress-seo/languages/wordpress-seo-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_O\6Pׅ_\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TV\3X\\\.\\^o&','wp-content/plugins/meteor-slides/languages/meteor-slides-ro_RO.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L:\\L\AkM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\\m\LWyݓH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ޞQ,\n','wp-content/plugins/wordfence/images/flags/bt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KiK\u<_պv%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C\T3A&5ɕD','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_neutral.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NzQ\\n#b\7\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\b\gS','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\`{WﺾUi\'w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\\0cgn\\','wp-content/plugins/header-footer/images/social/square/google.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z==\#\nG\˳Vp\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\g~\w\Z\hh','wp-admin/css/themes-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\wE\i\O!\r}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\:\\0\7:','wp-content/plugins/underconstruction/languages/underconstruction-default.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\WE$6RJA\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\v|мDFZU\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u̎#!?5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	QW\~-\\0d\','wp-includes/class-phpass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\FDP\0\Z\fG\Ƨ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	?\\\\quM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ؗx\\\[}\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	,/Օ!\gyd','wp-includes/js/media-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$m+\:xܔ\D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	P=N>b\"j:~[Q{\','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[ߢ9\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	X\t\\4vNI5\j\\','wp-admin/async-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Br?dT\'Z0X',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	#{ӰۼۊE','wp-content/plugins/tinymce-advanced/mce/visualblocks/css/visualblocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\g\\G#X\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	\9fވUf\','wp-includes/js/tinymce/tinymce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/ZV9\N.{Ћ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	\\\09-bͩW','wp-admin/network/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zv\\\\ǝ{g2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\no\s\{8oY\?','wp-content/plugins/wordfence/images/flags/kz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z߀9\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nfY4&L','wp-admin/images/se.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ȔB\`\.}\'7:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ns\JVJ717','wp-content/themes/twentyeleven/images/headers/hanoi-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jo7!q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n~\7>tU!	\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';1cH\$G$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ny\\2 ;\','wp-content/themes/twentyten/languages/twentyten.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȯ\e2μL',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nb-\V:|m','wp-admin/edit-link-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7d\GG\0G%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n\NNM\ۑ4;p\4','wp-includes/js/customize-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OK.q;t\N\\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n\Y^$\Rd\\/\','wp-content/themes/twentyeleven/inc/theme-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';P!*$j` (',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n\rB\p̭','wp-admin/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jH\wY\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"w%\_K\\\u\','wp-admin/images/wpspin_light.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Nm\h\\;\Z@\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&cYD\#\P{+','wp-includes/js/jquery/ui/effect-blind.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<O\mA_;OL',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\	^d7[xC','wp-content/plugins/wordfence/images/flags/sg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ӳjXfƚ i\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\5.;l','wp-content/plugins/wordfence/images/flags/gi.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rVe\\OK*a\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',H(b\_FO','wp-admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4G𿤂XΗN\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HVեd\p\Vp','wp-includes/images/media/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\\\0T\̇?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ɨ^y&ߛ','wp-content/plugins/header-footer/codemirror/mode/css/css.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l*x 4X\\sA8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N%d\\g\\\p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\O\lH\> ','wp-content/plugins/secondary-html-content/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wޚ/\KFs\w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g}\v\iTש\','wp-content/themes/twentyeleven/colors/dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qfeOJV\ۛq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\Mii2n\6\','wp-includes/js/jquery/ui/effect-highlight.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\*\øN!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F͍_\vc','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_AssertionCredentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4u	s\\2@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\4KIxL3','wp-content/plugins/wordpress-seo/admin/views/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<|\@2\\Կ/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Zb\\We`','wp-content/plugins/wordfence/images/flags/sprite-des-32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#5Pa\f\'\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r:\Uˣ','wp-content/plugins/wordfence/images/flags/a1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4.M:\<K0ܟή',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rP\*ֻ󴮲@/\~','wp-content/plugins/header-footer/images/social/square/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\>\n\2+\(s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rxݍ^\Z<;','wp-admin/my-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W_H3\\8	j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r~hlv\*߶\'a','wp-content/plugins/wordpress-seo/languages/wordpress-seo-zh_TW.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U4&\${\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\n\v<\y\r\OF\','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A}\0\vp<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\\\W%\{kˈ\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_REST.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\z\>4\`f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rҧxOz\\zh','wp-includes/class-wp-customize-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vx~;)]l\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r::\HH:d','wp-admin/css/edit.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\~\1Y*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\%\\\\%yS`','wp-includes/js/crop/cropper.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H.s\o\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rѪ1s1=`(y','wp-admin/options-head.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֕`^mN@\nTof~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r՜#C(ֈ&Q\\F','wp-content/plugins/header-footer/codemirror/mode/sass/sass.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1p\W\x+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\%E\\[\~Ty','wp-content/themes/twentyten/images/wordpress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\}\np\\%mC-;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rG$PkW\?','wp-content/plugins/wordpress-seo/css/jquery.qtip.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\\'\bM\!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#疭ۭv\"M','wp-content/plugins/wordfence/lib/wfAction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\\_\\>js',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H	P\'gc.UN\','wp-content/plugins/meteor-slides/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1l{k\\J7=\y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\H奥(:\Z\','wp-admin/admin-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\:em\\r-XL$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'gosV\;\\\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\\-\\\\eU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nZ&\YwLV<','wp-content/plugins/wordfence/images/flags/sn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '컯\uIڍt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\0.޷\Z`\\-','wp-content/plugins/wordfence/images/flags/na.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1=X\u4\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~\\OU\\\\\\\','wp-content/plugins/wordfence/images/flags/xk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\G\l\\}$5I\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\m\0mM7Ge','wp-content/themes/chimod/author.php',0,_binary '$sJ\M\Z\\",\',_binary '$sJ\M\Z\\",\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ \CY','wp-includes/pomo/entry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\LǼƢ\v\.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\>M\8 ٵ\|','wp-includes/images/crystal/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\\I0An\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\T\0\C8ˬCu}P','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-pl_PL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\zו|\!7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\"\rJ\04\'i','wp-admin/js/password-strength-meter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M(FVp\\#*\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';&nb\i\ٷ','wp-includes/js/mediaelement/silverlightmediaelement.xap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '::=C\".K|n\0t',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\\AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}	1l4\&\QW\L\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^[確X#','wp-content/plugins/wordfence/images/flags/england.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\\[\\W,\\'o\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\	\jS\\nP','wp-content/plugins/header-footer/languages/header-footer-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bBa\	\Z\$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ݡ=NxK\`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$sA[屜\p\zw',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'խ\\b\\J#\Z\\','wp-content/plugins/page-links-to/languages/page-links-to-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\8(ҫ\	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\뷎wh\\Xs\l','wp-content/plugins/wordpress-seo/admin/pages/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\Xu\a\\QGPr',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0]avCY','wp-includes/class-wp-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W#\'\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'NVԱ\z\Z','wp-includes/js/jquery/ui/effect-shake.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'JgV\̯\0@p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\.\\HwdХ','wp-content/themes/twentyten/onecolumn-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';&:P\uPmڲ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#9\rPuLk0kU\','wp-content/plugins/wordfence/images/rr_sitecleaning.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\r\0\\\)5\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#ۅ\0EֿN','wp-content/plugins/wordpress-seo/admin/class-import-aioseo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7A(\T\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')_\J\\','wp-includes/js/media-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.xd\\#cn3{\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'WuRPbIH\','wp-content/plugins/wordfence/images/flags/sk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x3\i\2fV.V]G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Yh\smyD\','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_twisted.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\-\\iI\N\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`&锥~K3/d','wp-admin/css/login.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-nh\&Yk\ncB',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ґ-\\\r{,\','wp-content/plugins/wordfence/lib/wfCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(1b\\"3:!\`kt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~\L\\*\,\<:','wp-admin/includes/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\at{V\\Qƅ\*քU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\*,','wp-content/plugins/page-links-to/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*cBM,C\?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Sx\\4@ow\N','wp-admin/js/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nLyuf6o1\LfjM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\:m[ݢ:#','wp-includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\YdIq?8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\I\\\j\x\\\g','wp-admin/images/date-button-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')R,$k)6Cc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\j7r[,\Z\\','wp-admin/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-&6ۉ<gk6s\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-M2\0\\%Aۉ','wp-content/plugins/wordpress-seo/languages/wordpress-seo-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\oa[\\+\\R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\%\pm\\','wp-content/plugins/wordfence/images/flags/pm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\nKFN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D8hFޛBViR\','wp-admin/css/colors/blue/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\n`trk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HuQ\{y\	W$ \','wp-content/plugins/wordfence/images/flags/ng.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A3[\EN\"рY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j׻q.*;\2','wp-admin/css/colors/sunrise/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yN^&R\"\6a\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&K,h\_\R','wp-content/plugins/wordfence/images/flags/kr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 're\`\1j?;f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rW\3\᥾V','wp-admin/css/color-picker-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z4wle$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' VØ\\','wp-content/plugins/wordpress-seo/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\KX.FPN$}\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ʱ1wB_/','wp-content/plugins/wordfence/images/flags/ve.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Utv9Hu\Z*a\\P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ƺ\"0\1\Zc','wp-content/plugins/wordpress-seo/admin/class-opengraph-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"-2oS',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':X\2\M\\~\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G6	=\\<%#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\\8\\\\ݼ+','wp-admin/images/imgedit-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\\'6U\\\t',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j+=dKCM\Z\"','wp-content/themes/twentytwelve/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G/\f˄\Z,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\\XJ#@','wp-content/plugins/header-footer/languages/header-footer-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\zWޖF\E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p۞\2N<:Z7r','wp-includes/js/tw-sack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9>\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u)8FG9C(','wp-includes/js/wp-ajax-response.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bC;s{K\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Clo\\','wp-admin/nav-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\Z͉\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\@g+Y','wp-content/plugins/tinymce-advanced/mce/importcss/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\r2\]h\'}\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-i>bs1\','wp-includes/js/jquery/ui/resizable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?*\\Wi\X㝶տ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4J\-<OiDf.','wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RXpOۊ)vM\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L \r+q|h|','wp-content/plugins/wordfence/images/flags/hu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\";d>]pG@!d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M\0M\\AA','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-count.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\3\/Z:N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u!\>)<','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F[|.\1\\x\	&XfN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4r\%\\\\j','wp-includes/SimplePie/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kU6\\n+\)%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\KS+e׎A@','wp-admin/css/colors/light/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' V{)\\_~\\q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Fe	57[\','wp-content/plugins/wordfence/lib/email_newIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\\\F)_9\W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\e:̳\ \','wp-content/plugins/wordfence/images/flags/so.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wc@y;\W&\KH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\A\o\!\V\\ų`v','wp-content/wflogs/ips.php',0,_binary 'lCdb\.˴\v',_binary 'lCdb\.˴\v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\\5\mk\\','wp-includes/js/wp-a11y.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\Lu\Jg\k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\\'c9k','wp-content/themes/twentytwelve/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'àm܇\-\n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\\|\0r	u','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F=!UǟjR\1L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.B9\9&i\','wp-content/plugins/wordfence/images/flags/az.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?\\"7^\`}]\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2\%},\\3|\','wp-content/plugins/wordpress-seo/languages/wordpress-seo-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_\V\$Gz\C\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z\%na?\\Z/','wp-content/plugins/wordfence/images/flags/cn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\F[MZ\\N8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '΢S˪\\nB\V\"','wp-includes/fonts/dashicons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~)x䌉[\w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\G8e@=','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\=u\]R9\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\*\NE#ډ˅','wp-content/plugins/meteor-slides/images/buttons.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/TAƵq\\P|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\{tvOz׳','wp-content/plugins/wordfence/images/flags/dj.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\-6~\$ݑ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ܡ9\u_\\\n\9\'','wp-admin/css/color-picker.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}UF\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\KUg0MU/ʇ','wp-admin/admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ga\\c3aq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(\?\\\n','wp-content/themes/twentyten/images/headers/forestfloor.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&6kMS)\nn\J6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4;V\\'/\f','wp-includes/js/jquery/ui/effect-scale.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}0e,)\\\+mT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L`\A\4\\','wp-content/plugins/page-links-to/languages/page-links-to-hu_HU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a;k,M,o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R@%U)pq*','wp-content/plugins/wordpress-seo/css/taxonomy-meta.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bG\\'R^M:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'qU6JΣUI>','wp-content/plugins/wordfence/images/flags/tl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\\\X[;O\0w9 4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}flu\_\Z','wp-content/plugins/wordpress-seo/languages/wordpress-seo-es_MX.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a%F\\	+(h\2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\'\<f\^z','conflg.php',0,_binary '0O\1\\Dbeó\n\',_binary '0O\1\\Dbeó\n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\C\n\U','wp-admin/js/custom-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\0X\`o\uf',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\s\\r\`	\','wp-content/plugins/meteor-slides/languages/meteor-slides-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\n2\\;gy[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0l\j\0+%','wp-includes/SimplePie/Source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S{*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\.#|$,\9y','wp-content/plugins/underconstruction/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y`|\\JbQf',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\窒u\rZJW+','wp-content/plugins/wordfence/images/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$N\;\'M\\ Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')t\r\,Jڼ','wp-admin/options-permalink.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kj\rU54Z\R$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ր(\\\\\@','wp-admin/js/press-this.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h.[t\y\Z	\1J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\FoVdY','wp-content/themes/twentytwelve/page-templates/front-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^\\\&\[Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9A\rm\rX','wp-content/plugins/wordfence/images/flags/lu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5ڡyn\7x\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Wl\y:\\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ -\Xg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',4#(\#','wp-signup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\*\I\ngFt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')Ċ\\\\','wp-content/plugins/wordpress-seo/images/banner-news-seo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\,7w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'w\A\/	ĉ\\q','wp-content/plugins/wordfence/js/jquery.colorbox-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4?JǃG`\n\N\xl',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/jh`]6\\','wp-content/plugins/exclude-pages/locale/exclude-pages-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@7<g\\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':8\Iaøl\m','wp-admin/includes/class-ftp-pure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\.B\\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'KqM\\{','wp-admin/css/dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\p0\ۃ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\TBO>\v2\\}Ea','wp-includes/SimplePie/Locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\;uvf^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^\ù)C\M%\	','wp-content/themes/twentyeleven/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|r+\L\\0\\+)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&J]z8.걤K*','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-?Bd\1o4E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"o\\"\Z&\JB\','wp-content/themes/chimod/comments.php',0,_binary '\n\\0C?[\e',_binary '\n\\0C?[\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+Q?af5L','wp-content/plugins/wordpress-seo/inc/class-sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\yd=<k<5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\e\}\(\','wp-includes/js/jquery/ui/dialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$aV{Ԅ,0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's♼{DR\[k\1I','wp-content/plugins/wordfence/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'9%(wdh\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\X/\\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Hs=F᭝\nnH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0{f^X\r\bV-','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':x\+x[\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\2,\I\E\d{<','wp-content/plugins/wordfence/images/flags/it.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!\%Xb̣',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o\<I}\n{`s','wp-content/plugins/wordfence/images/flags/kg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '򸥬\rͧ5\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Җ#S-\'(\\0x','wp-content/plugins/meteor-slides/languages/meteor-slides-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xC\\8=S\\-lG\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\U*vB\\G','wp-content/plugins/header-footer/codemirror/mode/clike/clike.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\'z\\n\}D\/s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.,Qn	\\r>','wp-content/plugins/exclude-pages/readme.txt',0,_binary '1\txE\',_binary '1\txE\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\/ᡇ_\\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4 \\Z\\BiM銋',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&UX\r\L4{\\\','wp-includes/js/utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A9\\\!;\	x\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ZO*\o\"r\_','wp-content/plugins/page-links-to/languages/page-links-to-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rMp!R\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Zgo\\\\lRK','wp-content/plugins/tinymce-advanced/mce/emoticons/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '</ڜe\\覕!xp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z|`n	\ۀ','wp-content/themes/chimod/page.php',0,_binary '&CDޝ*\h\\\	d',_binary '&CDޝ*\h\\\	d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ze\r\\j!^	\','wp-includes/js/mediaelement/bigplay.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qd6=Ҟk7\b\Rgj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\\\)qtsCI9','wp-includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\Q\oNw\}\r\\$7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\y8R#Oy\\','wp-admin/css/nav-menus-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@2\\Ҏb4V_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ZUE\s(\#Ep','wp-includes/images/smilies/icon_mrgreen.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\JRww\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'AZ\哖̅L(','wp-includes/js/mediaelement/skipback.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m\0\EkoHF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\E\\b\\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ Ќ~^F',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`r\A','wp-content/plugins/wordfence/images/flags/li.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~[k\"\4\\{\;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y\\!\0pZ\[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jlmuh	5\\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ֻE\n<B[\,','wp-includes/class-wp-ajax-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r6`0}dmĂQ\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm\n9\F6','wp-admin/css/admin-menu-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\0WiQκ~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')M\\^ûoz','wp-admin/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-[t\P\d\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4%IH\Oʰ\L','wp-includes/css/media-views.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zw0**\b6\Џ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8\ǀ)ƨj:\r','wp-content/plugins/wordpress-seo/css/metabox-fresh.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1q\}nI\ܺ\D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=\\\Gٗ\0C','wp-content/plugins/wordfence/images/flags/kh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C&}r@sHLO\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C/;)ّ\o','wp-admin/js/comment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I4\D\O#]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T\gslF\\ʞ\Ly','wp-admin/js/set-post-thumbnail.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\8կ!1z[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ut+N<Sy`.\','wp-content/themes/twentyten/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\nk\qG\2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vs%\z\F\','wp-admin/css/ie-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fܣ\sȶ\\?\\0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'z|*6S\\5\3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(,XP]\C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n$z\X`\1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\w\g\\\\cH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=b6\hs\t','wp-admin/ms-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RK\$IZ1\i%\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\r\5]xVI\\'i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\-=QCw\tnL\#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q?SXl4Z>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\TšH̕	','wp-content/themes/twentyten/loop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%>T\0ۦK#\\n\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n\O_;]/^\','wp-includes/images/down_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\]:uWv\\\"\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G_bc.,]&\\','wp-admin/js/image-edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\\l2\\z^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.v\2zX\䩵\|\','wp-content/plugins/wordpress-seo/admin/class-taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\I@\\0i*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fMx	\+9U','wp-admin/js/customize-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\0\$A쟠',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%\\\\MA\\\','wp-admin/images/wordpress-logo-white.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c=Yܵs\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J\}F\E\0\9','wp-content/themes/index.php',0,_binary 't:s\nY.29N',_binary 't:s\nY.29N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5\}p)\$Z\'H\','wp-content/plugins/header-footer/codemirror/mode/meta.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6+\_\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"jǧ`\\1','wp-admin/css/press-this-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?V\\\"\\'ŝ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=\}C\\i\HT','wp-admin/network/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i&Q\\Ӣ綨',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\gI!٭\\\_\','wp-includes/ms-blogs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',	\-U{%	 ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\]/~\qXŎE','wp-includes/js/jquery/ui/button.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~B\hF\Vml',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\+\"R.fa','wp-content/plugins/header-footer/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ëW<)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MS\k쥘\\n','wp-content/plugins/wordfence/images/flags/aw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3uy\ju\3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o?!ψ\Λp\<\','wp-content/plugins/wordpress-seo/frontend/class-opengraph.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bXjyUyL_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'zD>\A)a','wp-content/plugins/wordpress-seo/inc/wpseo-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Js\u\\Z0;z6pb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|\&;rLs5','wp-admin/includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\'3)ާQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ye.0s','wp-admin/includes/class-wp-comments-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\NGA\R<\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\'-p\-\f','wp-admin/css/l10n-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':8σH57cMG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nH/+&ҭZ5:\','wp-content/plugins/meteor-slides/languages/meteor-slides-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nH\MG\\\\^A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E\evG\\\','wp-content/plugins/wordpress-seo/js/wp-seo-admin-media.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\B\nU<\\e\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\\bP\-I׭1f','wp-includes/theme-compat/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xvY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\h\ \\\m4\܂\rF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't\!\\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\,}vĨ3G\)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\Y\\\z錿}c','wp-includes/images/smilies/rolleyes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' O2\Ofݣi',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' *@ADғ=pu\E','wp-admin/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\P\>.M^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' .գME|\\}','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N]^g\rxJ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' Qi*L$҄~\','wp-content/themes/twentytwelve/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BE&\B$\\eU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' g\s͌\I}$0xH','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't&\r@;\\f\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' S\ \\\hnUd\x','wp-content/plugins/wordfence/images/flags/vu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \u%k{m͢(u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' >eH\b\0','wp-content/plugins/wordfence/images/flags/mk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\n\-o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' 7=4#N','wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '##iΫϝ7M\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' \c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\7ִF3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' \p(?Qn\\a\Z','wp-includes/js/plupload/plupload.silverlight.xap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<RGPTmᳪo',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!o\r\Av7\\e','wp-admin/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\$B3FOl`8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!1b݅9*\\\\\','wp-admin/admin-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bKtvoC\\NwjvA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!Ty^8{``\','wp-content/plugins/wordpress-seo/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B,\\\\Z몓Ķ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!_輵p3pn\\L','wp-includes/images/smilies/icon_eek.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_s\jN_z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!gۇ\C\;F\ZT\','wp-content/plugins/wordfence/images/flags/py.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\\n\\E\)\Z\M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\\A;H\W','wp-content/plugins/wordfence/images/flags/tv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\eKgМl\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\ɀ\j\D','wp-content/themes/twentyeleven/images/search.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\~\cz3\t',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\R\pnL\w\m7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4,~I\i%E\\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!ֻ\N\\}','wp-content/plugins/wordpress-seo/vendor/composer/installers/phpunit.xml.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fT4\v+q ~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!O4\bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\B\WiN*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!xsC	ph^:&','wp-content/plugins/wordfence/images/flags/zw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	MQ\>qQ\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\Y0-z1\dm>','wp-admin/js/plugin-install.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zb\\nd&of\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!7(EAةsxt&','wp-content/plugins/wordpress-seo/js/wp-seo-bulk-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vq,:\[o.۸',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\nk\"cj\iV(','wp-content/plugins/wordfence/images/flags/tw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l7}aEY\3Q\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"(}G\\r\	0V(','wp-admin/ms-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\0\}\:\ㆯ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"0\rN1M\\#\','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EӤ㭇\\Mg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"IFn@a\}9','wp-admin/includes/class-wp-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@̔m\`b\TyTH5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"ox\1\n٪','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/cacerts.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ro܁\\\܆\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"b9e\|_\','wp-includes/feed-atom-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cD1;)-B?6s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\\\u>1\7','wp-includes/class-pop3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\S\|\/}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\\c\9\&','wp-includes/js/plupload/plupload.full.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I6\G\\n!:D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\\6\r+K{\\Z!a','wp-admin/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\҅yEF\r@$D9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\\j9SSK\Xj','wp-includes/js/tinymce/plugins/colorpicker/stats.php.suspected',0,_binary '۹Nܑ\\r=L`W',_binary '۹Nܑ\\r=L`W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"q%2߳]^s\','wp-content/themes/twentyeleven/inc/images/light.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tbZ\"\dHN=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\n/\PZ~h\','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Iavg\NטL\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\#\rĪx\\qq','wp-content/plugins/page-links-to/languages/page-links-to-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zy\#0A~&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#dc\Ae.','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_eek.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\7C\g\҈Eʌ}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\\Nww\%\|?\','wp-content/plugins/wordpress-seo/css/metabox-classic.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sa樛]X*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\:\қ~}G\\ɾ','wp-content/plugins/wordpress-seo/css/jquery.qtip.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\"%Tv=~G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$Z<0aeNT\','wp-content/plugins/wordfence/images/flags/ls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'txE&ʮm\rn\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$<E\\׊:R>\F\','wp-content/plugins/meteor-slides/languages/meteor-slides-da_DK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\"@\Z/0E\C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$0S\rr','wp-includes/images/smilies/icon_redface.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mAR!4a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$C/9','wp-includes/class-wp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\iG!\Ql3nI%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\P\\Xu\\\','wp-content/plugins/wordpress-seo/inc/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\߰R\\r\ab8!','wp-content/plugins/wordpress-seo/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\͞hD\0SQ<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%\7\\娳\','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f9E3\\Zr\\1<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%\Z 5$PUf:t\','wp-content/plugins/wordpress-seo/js/jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*(\w\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%J!Ӧ[\,\}VǕ','wp-content/plugins/wordfence/images/flags/ml.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V1~e\\x\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%V\Ћ]\=w','wp-content/plugins/wordpress-seo/admin/class-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\o\0\5\\\X\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%S\|\O\@su','wp-content/plugins/wordfence/images/flags/gg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '**\Ot3̇h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%\\\8^V<\t\','wp-admin/edit-tag-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F?E\\/)w%\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%\J\\'L\ٸ','wp-content/plugins/wordfence/images/flags/ht.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!!\w\\ղH\T?\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&YMR\z0vAo2','wp-content/plugins/wordfence/images/flags/sprite-des-128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Lm\F\\Q\\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '& 6Ӿ\1S','wp-content/plugins/wordfence/images/flags/si.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rϕ5`}\䋅\%{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&*\\dĆָ	\H5','wp-admin/images/align-center.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\\Zݶ4y\dY1\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&=\Z+t\\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Às\\EVM\-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&ee\\n3K\\\vZ','wp-admin/ms-delete-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\;t\?OaQvQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&t!0^g\bJc,>3','wp-admin/upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\'w%MǼ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&65l\0\L','wp-content/plugins/wordpress-seo/admin/class-import-woothemes-seo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s\_׼\)\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&iN$JoFr-','wp-content/plugins/wordfence/images/flags/gl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(kt5\*\ri\l\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\n5P\\\B\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&/\\:X\\ikT','wp-content/plugins/page-links-to/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\\S}z7Oq!o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&]0W\\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\W%<:oJ9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&\g\Hi(','wp-content/plugins/wordfence/images/flags/dm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\r&.S%V[\Z5YR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&\`\O\Q5Q\43','wp-admin/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NGQn\]/A\E_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&\\\	PshcusS','wp-content/wflogs/attack-data.php',0,_binary '#ح\n\\yIb\r\\r',_binary '#ح\n\\yIb\r\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'yƘ\\ni','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rd\\/@jp?~ǐ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'C\\\\*A\&hs@','wp-content/themes/twentytwelve/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܶ\Qx\X\\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\' o\\S','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mw\ߴtꍓ\'\n\s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\1k@(SuJ\l\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/cache/Google_Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#IlkWE~\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\͠6\\\','wp-content/plugins/page-links-to/tests/test-redirection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\{k>0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\?h\	}Y\0IG','wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*GsWcȐ\3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\)qZz\s1<L','wp-content/plugins/wordfence/images/flags/nu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(\m\ß,G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\%\@\ab\\','wp-content/plugins/wordpress-seo/css/dashboard.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\lSgiKx\"\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(,$<\jAN\','wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' HyI㍛˴!\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(\g%\0\\4\\l>','wp-includes/js/jquery/jquery.schedule.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Tk\f؞\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(?\\\>SN揚&','wp-includes/images/media/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\I\Bh\@\\\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '([d\\BQ','wp-admin/js/updates.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '鎖b\\\\AYMTw',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(o\m\\\m','wp-content/plugins/page-links-to/languages/page-links-to-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'In\T,%C1\_\P\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(wZ\BN\ڸ]NSS5','wp-content/plugins/wordfence/images/flags/mw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;R\1ߴQJv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(x*J,LÛn\<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kw``|}$G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(~6vqV\0{\"','wp-includes/ID3/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ƜVLN[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(\v|T— ¥\','wp-admin/includes/screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B<YN\\&ȼ\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(\^3N3','wp-includes/wp-diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z{\&\\Q\\\\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')\\\x36D\','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/aside.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MҰ3\\ᯂ\Z-&l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '){jW-_Q=?\GlҢ','wp-includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\eF=X\Oل',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')|x\\2@r\','wp-content/themes/twentytwelve/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lv\Y\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')Oz=u\\˷','wp-includes/rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j˨D~^T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')\\Xd`\\X','wp-content/plugins/header-footer/codemirror/mode/css/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't+\س\r]%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')\p\(a)$(','wp-content/plugins/page-links-to/languages/page-links-to-ca.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ъC\9T\N\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '* a\F\4u\vU','wp-admin/images/menu-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JZY<i\Yb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*_\LfV}xfN','wp-content/plugins/wordfence/images/flags/mq.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\\H\n \rp;IE',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*t$ߋv\\n\\s','wp-includes/js/swfupload/swfupload.swf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z%5e,r\\HO',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*\-3uE\[\O#','wp-includes/images/down_arrow-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\$6(\@a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*\L\m&&2\\nb','wp-includes/js/tinymce/utils/form_utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-D{}\\wkk|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*\we7T6H׶','wp-content/themes/chimod/page_roofing.php',0,_binary '4U\\ͯ\\]t\',_binary '4U\\ͯ\\]t\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*\\Z07ѥ1O\\َ8','wp-includes/js/json2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\\\uD+\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+9[BUEe','wp-admin/js/updates.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%q\I\\^M?ڲJ=,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+n\\yKGj8X]','wp-content/plugins/meteor-slides/languages/meteor-slides-he_IL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4A˛v\l\H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+G*#\f','wp-admin/network/site-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\P\|N\F\nΎm6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+\P\x3\\L','wp-content/plugins/wordpress-seo/css/xml-sitemap-xsl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\A\+\\j!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+\\t%R?\\\','wp-admin/network/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8,\4,\\Xu',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\\N4G\8\','wp-content/plugins/tinymce-advanced/mce/link/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1D4|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',< \?C]\0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(oT\R\\a\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',B\c\\\ԛZ4Y','wp-includes/js/swfupload/plugins/swfupload.speed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AZ7k\\E`,*s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',ad\-\\\hi\\\','wp-content/plugins/wordpress-seo/languages/wordpress-seo.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\4\^e\U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',x\\Z	l\ź&','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U-07\\\n}m\\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\\@hj\qrޒ','wp-includes/ID3/module.tag.id3v2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U[,j}jAؚc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',hɃs?4B[\^՝','wp-includes/SimplePie/Cache/DB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YOU.\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',7m=i0`\@*\\','wp-content/plugins/wordfence/images/flags/ye.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\07CK{DY)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\\\\\M9[Iv\-Q','wp-content/plugins/wordfence/images/flags/gh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\K\zxn\\\\Fn',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',\܎<9Tj`','wp-content/plugins/wordfence/images/flags/ca.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\J+/<\\6(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\"Q[\$','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mĎ妁\r\"Bx\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-m[D\\I','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-mapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\CB\\81\\"k*\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-T\a\P?\0et','wp-content/plugins/wordpress-seo/admin/class-admin-init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4}&_\lL\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-9Ϻjo\Sz\\'e','wp-content/themes/twentyeleven/images/headers/shore.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DFk8\r\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '->\]\\2j\','wp-content/plugins/wordfence/lib/menu_rangeBlocking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\R\@*؄\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-BCI}~\\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r9gr\\0!3C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-kdϯX\w\\7','wp-includes/admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.A\~E\L+,H[d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\\\Ǹ%w=\','wp-admin/css/colors/ocean/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z|[l\|ٱf%h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-)75y8c\\Wv\','wp-admin/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S%\\'dpv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-_\+\\Yn\S','wp-includes/js/jquery/ui/tooltip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']G҃\\\@EQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-f\\4]\#\"ul','wp-admin/css/colors/light/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R[ƳOI\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\쵃AK\R,','wp-content/plugins/tinymce-advanced/mce/insertdatetime/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|	7ѿ\\\&f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\藂Y{]ns','wp-includes/css/wp-pointer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȡNmH˟,3g\"b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-r\Zpb\"W%\$','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-internallinks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\R8!tQF\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\\.ze8\','wp-content/plugins/wordfence/images/flags/km.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\2\j\ZI@	N\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\\P\\U\r[E\','wp-content/plugins/wordfence/images/flags/gr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\rC\u-{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.Lۡgށ\\^L','wp-content/plugins/wordpress-seo/admin/pages/metas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@._.K#\p1s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '. \\0_oE]A_\0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\0XcO@p\\%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.8{\'O\2\ixCQ','wp-content/plugins/wordfence/images/flags/ug.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r+YkSI\-@^7n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.IhU\3+B\Z','wp-includes/images/admin-bar-sprite-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q\\8o\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.Z{=UuߩAJ*','wp-admin/css/press-this.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\1GX,ٝQG_k\QB=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.E\[J\lx\\','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M_\\Z?\N)Ҋ\:\5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/1H.UfA4','wp-content/plugins/wordpress-seo/js/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/<ا^ɼf}\"\$','wp-includes/images/media/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\48Αy6\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/h\\cF\','wp-content/themes/chimod/sidebar.php',0,_binary '\\jkP\\\',_binary '\\jkP\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/k\n啗\ˁ8+','wp-content/plugins/wordfence/images/flags/ir.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'knoT\'\\\\{K[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/t;/b\4!\\"&','wp-content/plugins/wordfence/images/flags/cl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h1\ܮ\8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/ށppbwV^','wp-content/plugins/wordpress-seo/js/.jshintrc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~n\f\Ӏj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/sC4\\','wp-admin/network/setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Bm>n9z]њ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/鹠\\\ΰ1\iw','wp-includes/images/uploader-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&-\OÕ\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0<\\\lڿJ\','wp-includes/js/wp-backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\H.\^V!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0]qK\'fx\\','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0ay\r`r^\Z	T','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nuv}µ>\\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0l9\qVNM5%','wp-content/plugins/tinymce-advanced/tadv_admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ܱ\HJ\\@I:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0\\E\00X\H','wp-includes/js/colorpicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\nw-g\:OH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1Rs\{Wɯ','wp-content/plugins/meteor-slides/includes/meteor-slides-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X;ؐ\3fi\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '13eT|ν9\kX=z','wp-content/plugins/wordpress-seo/languages/wordpress-seo-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8LsÒ㰲Ɂ-PQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1s)6ӶCΗ','wp-admin/user/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'$UmxZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1vHㅱb?T','wp-content/plugins/wordpress-seo/admin/class-yoast-textstatistics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\޿J?\(@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1\\d\"+h\rF','wp-content/themes/twentyeleven/content-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rGs\we\\؉X',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1yXZZ\SSf\','wp-content/themes/twentyeleven/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\C96\a6W\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1c(I3\r}u\E\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-google-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v|dDhPJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1\EfQv#)\n\0EkQ','wp-admin/images/media-button-image.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\WÎ\@\b\rճ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1\X/t60^Ҁ!\7','wp-includes/js/comment-reply.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Z~i_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2@\j\j\0kӲӘ','wp-admin/includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\*\4\dV\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2f~uK\\#\','wp-content/themes/chimod/sidebar-footer.php',0,_binary 'O KT	H\',_binary 'O KT	H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2jL,\\\W\rW$\','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2$\n`\5H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2+\/\psD2 \','wp-content/plugins/wordpress-seo/languages/wordpress-seo-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mfS\4\PheX\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '29G:g\oi\\','wp-content/themes/twentytwelve/content-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\\Pչ\Vz9-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2\j4yY|/\̫\,','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LĜ\\LȐr4r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2\^(ʭ\-^x','wp-includes/SimplePie/Enclosure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.B\n΍Ks]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\nV>\O9Ǫ	 N','wp-content/plugins/wordfence/images/flags/id.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\t3\\\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3koW5	k[mq','wp-admin/includes/continents-cities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KWٛ3\\ǝ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\l\\V9Np','wp-content/plugins/wordpress-seo/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3\\\F',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\\\\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G\7(tt\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\g\	V<΁5','wp-content/plugins/wordpress-seo/admin/class-snippet-preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wl$7`\(\\B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\\fQ3\h5[W<','wp-includes/Text/Diff/Renderer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\菨)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\\\\\!@#ʬ+qD','wp-content/plugins/page-links-to/languages/page-links-to-nb_NO.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\\ۖ9X\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '48Vt\+^X','wp-includes/pomo/mo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\h\^2.\t\\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4AIn097c`','wp-includes/js/tinymce/utils/validate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hf\\n[ٺ\\V\}4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4a\[I}\\\Hm)','wp-admin/css/deprecated-media.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bR\'\5\Yt\S6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4ڂ\L$,K[u\\','xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zuwnƻ1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '50\J@(\0`M','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\",ϗ`\ri\rnr',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5\?y\<\2\','wp-admin/css/dashboard-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a\l*li&j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '58\d\`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\n`C\9\Ĉ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5C)\nWu꽝/F\cK','wp-includes/js/plupload/wp-plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e;2\@_e\R|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5LyZ\Ҁ\M2\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/.gitigore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_)[`F\\r\+\/2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5Z\\\Sμ\v\`69','wp-includes/version.php',0,_binary '0AHC7rg',_binary '0AHC7rg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5\\h>\w	N\','wp-includes/registration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qύH^ܲI\i\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5`\]\\ͭi\0\\\ZJT','wp-includes/class-wp-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Z#\=\\&-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5?C\\xyDDz','wp-content/plugins/meteor-slides/languages/meteor-slides-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\+&[,\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5xc)\7\','wp-content/plugins/meteor-slides/languages/meteor-slides-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u	Iw&H\\S ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5`L\oAh*6A\'A\;-','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/ul.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'?\ò\2(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5$\\\)\&o','wp-content/plugins/meteor-slides/languages/meteor-slides-zh_CN.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M^\0ǎI\Ir>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5ݵC\t4A','wp-content/plugins/wordfence/images/flags/sz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':9Y/X9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\\\X/HL','wp-includes/js/mediaelement/wp-playlist.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɘY8@v\\'ٿ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6;I(\Hm\%\f','wp-admin/css/farbtastic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\@!!Ek\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6[f9? _\','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J&\\Ɍ\\ԔQ<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6]j\v\Wk\r3-\','wp-admin/load-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>7\q\0}\0[0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\K\V\\\u\N\05','wp-content/plugins/wordfence/images/flags/ec.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A$͊z	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\j41]o\','wp-content/plugins/wordfence/images/flags/cy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȕ2csry\8<\%\Z,R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6̠,_\q\u','wp-admin/includes/class-wp-filesystem-ftpext.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\P?~$\r\e4~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6٨	\:{^D\','wp-includes/js/jquery/ui/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'asy\6\=(\w\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\a*U2Jxū','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LQ\09mM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\\TeȸH\ƨ\{','wp-content/plugins/meteor-slides/screenshot-3.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DIm\\b`\\Z6\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7j\n\\ԋbR\','wp-content/themes/twentyten/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\w\L\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\/9L.O17K','wp-content/plugins/meteor-slides/images/next.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_o\\ُ]\0t',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '74cR-E9U^\k','wp-content/themes/chimod/functions.php',0,_binary '\@\J$\.\@\T0i',_binary '\@\J$\.\@\T0i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7<LU39TU3Əs','wp-content/plugins/wordfence/js/admin.ajaxWatcher.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4B;0\f\=Si\6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7eި$ч0','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\͍\Z\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7rU\Ą\([\\\','wp-content/plugins/tinymce-advanced/mce/textpattern/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\9@\ZR5v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7|oOUz\0Ef\','wp-admin/network/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"?}R2{8\\?R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\3Uy)|7','wp-content/plugins/wordpress-seo/js/wp-seo-dismissible.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\~\)#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\+\8dc@$','wp-content/plugins/wordfence/images/flags/sl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\B`u\,&$\1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7%Wy~׹P?x\','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lzV6`wmZBs\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\O+ǋ\'n','wp-includes/js/mediaelement/bigplay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	\rqm\^@$ȍ\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7c\¢)\\Seb','wp-includes/js/jquery/ui/menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Y\\\-9|l\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7c.$P!\\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\j_ˊR2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\!~ړD','wp-content/themes/twentytwelve/page-templates/full-width.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\}ϮN~\"\Pat',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8=I\a%k\~','wp-admin/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3#h\Z3;qFq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8\+G\a攷v','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\ޑU\@^L]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8R6\DHq-{:`','wp-admin/includes/translation-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\n]r6\o\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8@)6yg[y\sQR','wp-admin/css/deprecated-media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\R\ڹy\rC',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8ÛZEQ$}UPT\','wp-content/plugins/wordfence/lib/wfCrawl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\\U/\m`A\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9\r5\'X\>?','wp-includes/js/customize-preview-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z{\Y}q\yڴ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9ψ[1d{\\@','wp-includes/class.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\ \?\M\nIt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9O$R)\\','wp-content/plugins/header-footer/codemirror/mode/css/gss_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o٫\n\+)\!&\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9:do\np`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ftSuc.k7a7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9=4@qKLQ\r','wp-content/themes/twentyeleven/inc/images/content.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+};3e\K.ڭvQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9YQLYJf\Y\\\','wp-content/plugins/page-links-to/languages/page-links-to-ja.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rh\|3(\0,2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9} B^?	\\"\','wp-includes/script-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<_[ԝ0ؚБ9\[L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9 `q\r5\0\o','wp-content/plugins/meteor-slides/languages/meteor-slides-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\"$b\x0>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9ՍҢ\\9\d\r\Y','wp-includes/ID3/license.commercial.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\GD \.}cH3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9\\s3\SZ,p\8g','wp-includes/images/media/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zs\\0ȝQK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':{\\\{7\9','wp-admin/link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\Na\b\\\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':|LH6(\\cg\','wp-includes/ID3/module.audio.ogg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\vN5O۬\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':\"̏%^\@\j<','wp-content/plugins/wordfence/images/flags/ga.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ed\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':<$\0,w\"&e({','wp-includes/class-feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Byْ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':Cc*\\-|a4','wp-content/plugins/wordfence/images/flags/uk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(1\l\\\fB',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':Y\j\nE\','wp-content/themes/twentyeleven/images/comment-arrow-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4૩(_\\0\\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':ZW\_\*if\','wp-content/plugins/wordfence/images/flags/pn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's;\;N\n䩘',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':mwvK\rZ~','wp-content/plugins/wordfence/images/wordfence-logo-16x16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\~F,N8z\\O2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':\%H`!\\r\Z','wp-admin/js/media-gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\ Ғn',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':\XqݝJ\\5P4','wp-includes/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1c~\'dv\vHq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':6M$\΢]pm\','wp-content/plugins/wordfence/images/flags/im.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':K,}\0Rs',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':n̣RM\ti#=','wp-includes/images/media/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'taCA\.\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';	\\\\rhjz\r ','wp-content/plugins/header-footer/codemirror/mode/htmlembedded/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Z:%is\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';\bfȖ0x','wp-admin/css/colors/midnight/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x(\V?OD{\\`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';1ы#Y_Nt','wp-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' r(l2}+\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';R\yh\\RxK\r','wp-admin/js/farbtastic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':T2Aq]\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';\\q	\\\\\','wp-content/plugins/wordpress-seo/css/featured-image.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\"G>\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';ՃK0!\\\g','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-google.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7s9ITn_M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';\-#n\9\|?=\\','wp-content/plugins/wordfence/images/flags/an.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ڇ\0sw1Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';Wct\\\*+Br\','wp-includes/images/smilies/icon_surprised.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')r\\\i\r\^@8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';\\\*1\Zn\4\','wp-includes/js/wp-emoji-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\i׽-}\_{)l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<\WHq\.r-?','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h1.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r,ER\2swY%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<\n~L\Mr\','wp-content/plugins/wordpress-seo/admin/class-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Z,\{\G\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<Ѿ\Iȫ','wp-content/plugins/wordpress-seo/languages/wordpress-seo-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\jE\\'<XA\L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<\	|n\\','wp-content/plugins/page-links-to/languages/page-links-to-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ob\q\jA4\\,\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<*\\)\1Yg\\','wp-content/plugins/wordfence/images/flags/tz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']#D\\ft>>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<C\\\ICעap*','wp-content/themes/chimod/archive.php',0,_binary '&?[\Jw\2ҲAx',_binary '&?[\Jw\2ҲAx',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<F\\\Pz\22~','wp-includes/js/imgareaselect/imgareaselect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}(\\()\3󵕯',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<)2\>M\\'b','wp-content/themes/twentyten/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\EOf\\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<9uj!$','wp-admin/css/install.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\$\0D9j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<^\^\i6Ե5','wp-content/plugins/wordfence/images/flags/me.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZsL5\\U\ʢ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<\hj\	44a\2','wp-includes/js/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\o,Ê',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<\\u꿖\Zܜ\Y\^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c<{!\o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=v>1fpE','wp-content/themes/twentytwelve/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j@\l\?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=9))\\\\','wp-content/plugins/wordfence/lib/wfGeoIP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3(*\"\m\`>k\\\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=5\@N%md','wp-content/plugins/wordfence/images/flags/il.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\UP\\O\nFz\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=<ǟs\=;r\z\\nZ','wp-content/themes/twentytwelve/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8*˸^a}6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=S6\aXo,2','wp-content/plugins/wordfence/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\\o\\	\\jk_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=T\.\T֕\i\','wp-content/themes/twentyeleven/images/headers/pine-cone-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\'W\MZ\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=_\0xl\\We=','wp-content/themes/twentyeleven/inc/theme-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pܳؐ\˒',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=f\uA><Th\\@','wp-includes/js/jquery/ui/progressbar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C{˚q\t	\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=k[4 =\','wp-includes/comment-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	p\\\\\3@֝:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=\	Ώ5>i(.\','wp-content/plugins/page-links-to/languages/page-links-to-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ V\qgkMQ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>hЩ\XX*v1','wp-includes/theme-compat/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\oQK?G}1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>ql\+m\\05Ħ\"^','wp-includes/js/customize-preview.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%Hh\\rT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\nT\2ql\\\\','wp-content/themes/twentyten/images/headers/cherryblossoms.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O:Ȋ*sfU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\X\rb\ڟ$W','wp-includes/class-wp-image-editor-gd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\3\\0P\0C6o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>30 ֎\C\U\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_HttpRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O`\C\GR&\ns',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>\7\\n=e','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&[`\\n\I\\=<@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?Yvq_\ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%\BQxSV.D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?]P.1\2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޔ\r\\]|z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?dѩ|ǖn\?','wp-content/themes/twentyeleven/images/headers/hanoi.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H(	\\\Y\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?bU\,I\\','wp-content/plugins/wordfence/images/flags/scotland.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y5bG&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?$ O\;\>ե\','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')e\f\#`P~7\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\\mf\\\\\-\h8T','wp-content/plugins/wordfence/images/flags/rs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nP\e\Z\S<_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\{.-lo\\\','wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$l]\\oSk\u\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\zO{9&\~=v\','wp-content/plugins/wordfence/images/flags/ma.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~ɢ̓PxU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@`uf\'','wp-content/plugins/wordfence/images/flags/tg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\to\^\\h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@$\"\rf(7U&','wp-content/plugins/wordfence/images/flags/mr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%{\m\\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@V$K\\<\1*\','wp-includes/css/jquery-ui-dialog.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(}\eB{xS	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@^B\\?\C̫߶','wp-content/plugins/page-links-to/languages/page-links-to-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G~8L\{\F\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@b\HfQ\\"$S','wp-admin/js/press-this.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':q\⭊%sR~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@j\n\"G\r҆9)\luQ','wp-content/themes/twentyeleven/content-aside.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Cߌ?kR\c\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@k/\I?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'INu\QA\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@̘9#L\y(\\','wp-includes/images/arrow-pointer-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wb\·*L\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@\\\Z\0=W{Jq','wp-content/themes/twentyten/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \dܲP\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@XD\n\\nRNt\\\','wp-admin/images/menu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r9#dY`	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@¿ǲd4<ߡ ','wp-content/plugins/wordpress-seo/css/edit-page.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܐ$Uz1\lyɖ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@\;5XVO\Z','wp-admin/images/mask.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g~\"\\J䩎',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@\m\\O\\W','wp-admin/admin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\:s,Ί\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@sZ^\\qv','wp-admin/images/media-button-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\WI\\\\?\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@+\T΄\'٤','wp-includes/ID3/module.audio.flac.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',g\\0.i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'AE[`','wp-includes/js/thickbox/thickbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\eR\\wS\%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'A\"~ی5)N\W\n','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qŞM`i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'A#F\Y\\_\OW','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/TestCase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\W=qULm^*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Aa@J\\Ł','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\{\\'sVnш\ӹ|\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Aex#I#U\ӇLL','wp-content/plugins/wordpress-seo/admin/pages/advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2}!>D<0]&\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'A{&\ V>\Νs','wp-admin/css/login-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5?\(6\zү\sz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Aw?[/','wp-content/plugins/page-links-to/lib/wp-stack-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ț7+}\\Auw',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Aػ#\"\\j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zoo>\\\Uw\(\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'A<\?\׎c\Q\','wp-content/plugins/wordfence/images/flags/je.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\;O0]4\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'BJO\zD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZTַ\?*=቎v%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Bm#-\dۋ\B|','wp-content/themes/twentyeleven/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̴|y\7kf\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'BmcsM\f\ ӊJ','wp-content/themes/twentyeleven/images/headers/chessboard.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r$hF.,9mw',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Bj)\\qDS','wp-admin/install-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TR\~\\\R3Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B\#\\!K$Dl\\\','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-ar.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Fa\ގ?T=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'BC=\\\\V\(','wp-content/themes/chimod/page_kitchen.php',0,_binary 'Qv\nW!\Y\',_binary 'Qv\nW!\Y\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'CG\ě\ɾN\','wp-content/plugins/underconstruction/languages/underconstruction-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\K|^M4+\P]r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Cxp\+\Wn~\','wp-content/themes/chimod/tag.php',0,_binary 'W\"ZB}}n½\)\',_binary 'W\"ZB}}n½\)\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'CǍ*\q\I\ϳ\\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6L\2Ӳk1:B\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C\\"@\7\t','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$fzsR\'sWy',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C\\yN\f`\\`]0','wp-content/plugins/wordpress-seo/js/wp-seo-featured-image.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KV\0\ېT:0:H]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C\\f\ٚ(;w\\\'','wp-content/plugins/wordpress-seo/languages/wordpress-seo-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>#\ \fQV-P\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Dm\nzH\S\\','wp-includes/images/crystal/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'^cs\D3T\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D.\:\0S\R8','wp-includes/ID3/module.audio-video.asf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AH\!\0\\ sW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D6m\er{pK\O','wp-includes/locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N~h]:\T1\Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'DQhu\\"\Z+@ơOpf','wp-content/plugins/meteor-slides/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rp\!\D%[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D^\ChyRO\y','wp-content/plugins/meteor-slides/screenshot-4.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\7\*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\\)ba\k\\{\\','wp-admin/includes/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\"AR\hyۺCQ)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\Z\JSP','wp-content/plugins/meteor-slides/languages/meteor-slides-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#!\;\Ў',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\#\\v\W','wp-content/themes/twentyeleven/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j0gk\2s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Dչ\\\\$Oa\','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oqjGY|\rUI\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\\5\n\'\\\\~W','wp-includes/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'*ˀ\j5 e\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Eug%4ma]','wp-content/themes/twentyeleven/images/comment-bubble-dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(JZ<\0OA֭,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E#\\\-v37\6\Ť','wp-content/plugins/wordfence/wordfence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e\|6!JSgD',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E4\\fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\OByMK\/\l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Eh\\\\@aq','wp-includes/session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')|o\.;eX+}N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ez\LFy\D\su/','wp-content/plugins/meteor-slides/js/jquery.metadata.v2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ree֋a{*\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E(zRA1;eN\qD3','wp-content/plugins/wordfence/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\e\\ª\\\\og',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E\iѿ\!\','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_mrgreen.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\PR\'\X<UJ:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'EV\,\%\,SM=','wp-admin/ms-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/Ħý:E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E0fۿoi\\r\\"&','wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ō\o8\%\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'EKn/凖([\"p','wp-content/plugins/wordpress-seo/frontend/class-googleplus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p#\11\->\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FHȝl\e\#\','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l,\r\%^x%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\\Oۣ\\\g','wp-content/plugins/wordfence/images/wordfence-logo-32x32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@ۯI\\\\uU\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F/\uu\0.bHCN','wp-content/plugins/wordpress-seo/admin/class-sitemaps-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\b|\i\`\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FFvV;v8/\r','wp-includes/SimplePie/Misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\y\-\\\^\\ZK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xR\	YX\\ݤ\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FY$\\8^X','wp-content/plugins/wordfence/images/flags/gu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\Xãy\̆@\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FsT&\'\\|','wp-content/plugins/wordfence/images/flags/ru.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q?p\2\^\%\k\Z#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FB\m\7{G!','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\٢j@\nN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'FÃ\\O\fg\','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1\\vR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\\'B/\4{J\{w','wp-admin/js/edit-comments.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\\u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\\?\C;$\H\r\r','wp-admin/css/color-picker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\rM\_hlf/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'GCGBQ!a','wp-content/plugins/page-links-to/bin/install-wp-tests.sh',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\--g\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G6U\2\01R\J','wp-admin/js/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\qS\\\$b\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\0!e\f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Gq\@\\gm屪','wp-includes/js/mediaelement/controls.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@oZsm\\ۊR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Gu^/1\\ՁS7','wp-includes/atomlib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e.\[\\0\nfA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G9q\=ʥ[3?a\','wp-admin/images/bubble_bg-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R=[\\\;\c\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G7\Z\I&:\x','wp-admin/edit-form-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\8Hp\?H2\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'GX_\0pivy\U2p','wp-content/plugins/secondary-html-content/secondary-html-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\\if7\"pC\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G<	^+ڱC','wp-content/plugins/tinymce-advanced/mce/anchor/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|]xn,\\'6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G\T!A\\','wp-content/plugins/wordfence/images/flags/ax.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fu\wb̅\(w\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H+E~}1Q\\','wp-includes/js/wp-util.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\f1bQ\n\ʭ&2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HAl\Kq\y\','wp-content/themes/chimod/loop.php',0,_binary '>\[(+%t\0j\\',_binary '>\[(+%t\0j\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HL\"\ѩjF','wp-content/themes/twentyeleven/images/headers/wheel.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dJ\#3\0\34',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'He0|\F0$ؕ','wp-content/plugins/wordfence/js/knockout-3.3.0.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_B8lc^\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H~\He\ZĆ','wp-content/plugins/page-links-to/languages/page-links-to-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u\Bd\r₞\F<S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H`HǛ\O.\ViC','wp-content/plugins/wordfence/lib/menu_countryBlocking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|2®\ZKI\h`!j|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H\\\\ك','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%WއDWe',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H@O]X+G\\B`P','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-bulk-action.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nSg\oI,eP',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HZ?n\'DKhEC','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z \"I\\/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'H\\&=b','wp-content/plugins/wordfence/images/flags/sprite-des-256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U5!B<R\2\|B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Hý\i\ZU,HL','wp-admin/includes/meta-boxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w>+%+%\_ڟ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\n:\\','wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	J\\|7[\ށz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\B\׹7\1T,\','wp-content/plugins/wordfence/images/flags/eh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\[e\\AuK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'If@n\\\;c>8','wp-includes/js/tinymce/wp-mce-help.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\G;e\Eq\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'II\Or\H\2V','wp-includes/js/jcrop/global.php.suspected',0,_binary '1|\'W7\R\\\\7',_binary '1|\'W7\R\\\\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Igbm\,asYp)A9','wp-content/plugins/wordfence/images/flags/tn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3eez\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Io96c33$-','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm&\\6:I\6\f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\:Bs\#\\\@\','wp-blog-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\n:\\\5\S5\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'IV/6s\\','wp-admin/js/editor-expand.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x]p1( bΎP',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Jf3?_r\C','wp-admin/images/w-logo-white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\,K\\il\<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'JE[7U\\\Z\~','wp-includes/js/plupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\WPIʿ\FUg)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J\awҿ\":	z,\','wp-content/plugins/wordpress-seo/css/wpseo-dismissible.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qu\\\ҏ\\5\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J{ֹZi^ùxI','wp-admin/media-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\"\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J\\LykIn=','wp-content/plugins/wordpress-seo/languages/wordpress-seo-sk_SK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '珀3&rkAg\\\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J򾁬\Oh\\sDؾ','wp-includes/js/zxcvbn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\;\\uc<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J	4\\/\\|	\','wp-content/plugins/wordfence/css/select2.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XN|7Z(C\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J\>纬MLp\','wp-content/themes/twentyeleven/images/comment-bubble.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WP?C\xv0C8\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'K\ߺ\b','wp-content/plugins/wordfence/lib/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?H\Y/2?T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'K\-\nM-U2\|\~h','wp-content/plugins/tinymce-advanced/mce/code/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y4]mn喩\rU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'KYG5d\vTC6','wp-content/plugins/header-footer/codemirror/lib/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=0y`+w\\n`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'K\W&\0\0K\06G','wp-admin/js/set-post-thumbnail.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+QSWm\@~\\Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L<#\Z\\\\}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9K\\M:\Tf9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L \'V\N{\S~b','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-plugin-update-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7e]4#W\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L#\/۰*\3\\\r','wp-admin/includes/class-wp-terms-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^<&y\!A\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L(\n9[2C6\','wp-includes/js/zxcvbn-async.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\p9	\9\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LR7Q\ToG|\{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/{g/C)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LW]\\=\\\0;:','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\ZKȚ-\"\\a{*0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L[L\A\$8\);','wp-content/plugins/wordfence/images/flags/pa.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\nrg\@<n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Lf\)\sw=','wp-content/plugins/wordpress-seo/css/metabox-tabs.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\=C\X4k-x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LpNb\`B\r\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_PemVerifier.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԁ\\/$7L\8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LsЇś\nc}>K','wp-includes/css/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JE0I	,l\95y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L}GJ\e\\,`/Y','wp-content/plugins/underconstruction/ucOptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l>qR\wG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\et\"pc(	e\','wp-includes/wp-db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\oc\@ȁ\n!\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L>tN\','wp-admin/css/colors/blue/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5Iהg,)ZYM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\[\\Zwv','wp-content/plugins/wordpress-seo/vendor/composer/installers/.editorconfig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\h&/Ӈ\\\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L)\\a$D-\ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\"C\\b>\\K\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M?,5\*\\\K*\f','wp-admin/js/post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}\NCR\\\Yp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MVl:wޞ旷\'','wp-content/themes/twentyeleven/showcase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\4	\C\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MW	\:\\ي','wp-admin/images/align-none.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eqd2\u\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Mp\\.bOɧ\{V1@','wp-content/plugins/wordpress-seo/languages/wordpress-seo-cs_CZ.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\D7\4I\ny35',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MI/v3\0c\Z\.','wp-content/themes/twentyeleven/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\\Z\O\B~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MV\\;IpO','wp-content/plugins/secondary-html-content/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o/$) \\I\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M\/?~ť-\' W\','wp-content/plugins/wordpress-seo/codeclimate.yml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\h	\\C\l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MР\0A9Q\+\','wp-includes/js/admin-bar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\Oas{-v\'\&#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M\;C\\\\\8Yyﲏ','wp-includes/js/twemoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|A\0^ֆl\,·MF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M:OG\dy\ ;','wp-content/plugins/wordfence/images/flags/fam.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P	a7\Z\<\h#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MIM\\rD-','wp-includes/post-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.TB\\r\1\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'NPx7\\\Zz','wp-content/plugins/tinymce-advanced/mce/table/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\1V\qEn?\'=\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Nu.N3XT','wp-content/plugins/wordfence/images/flags/lk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FqO.aA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N|Jвzn\sw','wp-includes/pluggable-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '۠\\v!l\"Ȥ-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N3\j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\nm\0;˫\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'NB;-}B\','wp-content/themes/twentyten/loop-attachment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$]-\\0PEr֕\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N\E\\\|JS','wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D>j[\\sRv*v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N\HV\}4G','wp-admin/css/customize-widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zAʹ]\j9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O	\S\#\Yiv','wp-admin/includes/class-wp-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>[L\shB',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'OlqCcێ\\\\\\\\\','wp-admin/css/forms-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bޡ\I\Zjey',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\\P5\\{R','wp-admin/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\d\@;p\^͇\','wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\FU\g#x61',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\\\\a\+\','wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x$\\\\|L6:¤',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\&\r蓏\ ','wp-admin/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\SvLXy¸',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ORr\D?','wp-admin/js/postbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\$-!i>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\\ϊp\','wp-content/themes/chimod/footer.php',0,_binary '\zѕ8M\\w',_binary '\zѕ8M\\w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\:23F`\,(2','wp-content/plugins/wordfence/images/flags/re.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ph,\,i-\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O\ɧt\nf0`\','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_surprised.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's[]\Y\K;$\\y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'OhuG\&\0\L','wp-includes/Text/Diff/Engine/native.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'*\\\*\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P5;\>/\$','wp-content/plugins/meteor-slides/screenshot-6.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\\l|\Jk>S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'PE۫7r|oI6>','wp-includes/js/backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\z\)b\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\'(\?+z$','wp-admin/js/postbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o%\zb|䨎\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P4\\'e\4Q\','wp-content/plugins/meteor-slides/includes/meteor-slideshow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';3\7W\"*Ȥ7H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P73o\	\\0\=\\','wp-admin/js/word-count.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f%i@Q1N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'POww\\Hx7\','wp-content/plugins/wordpress-seo/frontend/class-json-ld.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^Ea\\\/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\izt\a\}\a','wp-admin/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ep<\'ݖ\?5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P(^ցŊ;܇','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	m_d&Ժ0w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P⩣-ƅ\i','wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm8O@d8<Qž',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\M\\Z\I̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OVFaDV\44ܪ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\1$\\*\C','wp-admin/images/stars-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A#\SMe.^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\0aR\z= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'|hּk8ʙ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P귃qzJ.5\\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	iO2\t\\h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q	1ޕb PSWr','wp-content/plugins/wordfence/images/flags/cr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"q\\컔m\.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q	גZG[','wp-content/themes/chimod/attachment.php',0,_binary '\-C_;v>_?',_binary '\-C_;v>_?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q;\꼡ʿ\\','wp-content/plugins/wordfence/images/flags/cm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Th\WFC\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q2\'-O\9\\\4','wp-content/plugins/wordfence/images/flags/au.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r/Cs\Y\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'QT*f\P\.','wp-admin/includes/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\|#_x5Y\Wh\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'QY\1TlVr<','wp-includes/js/customize-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';z	YM#y\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'QuoPX\\\0Sڞ','wp-admin/images/bubble_bg.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=,(\\\Z2cV\ 8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q~,LI>1i','wp-content/plugins/tinymce-advanced/mce/importcss/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uk^\\\\W 4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\6K4\\H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\뱝R|$\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q`\8M8','wp-admin/press-this.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:U\/vřc\KJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q4\%\z>*I','wp-content/plugins/wordpress-seo/inc/class-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\\\G+W;\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\\l\g-\','wp-admin/js/comment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8i/y\}*C\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ra\s\\|\|eW','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h2.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z	ިAწ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R3Us\3\\}T\\','wp-includes/js/autosave.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ci|}f\\CS\/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R:hπ6\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/script.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DVOG\\p<3k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'RQb7f\ |~ۓ(','wp-admin/js/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\0x$i%\Of$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'RbA@Cmͥ','wp-content/plugins/wp-force-ssl/php-backwards-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')&I\\ǿ\5\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R1?Y\VDt','wp-content/plugins/wordfence/lib/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iz~\i,L\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Nm\h\\;\Z@\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R|Rx/\bzn9\0*\J','wp-admin/includes/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>8aK\M\ZP\O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'RQ\r\\\\0\s_','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'urXĈ2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R\\SC|ju\9A','wp-includes/js/media-grid.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<fl\  \~\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Rp5\\Si','wp-content/plugins/wordfence/images/flags/iq.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\n\s7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R¥\\Leq	&\','wp-admin/js/user-suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3)()ݰ4}\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R\B\^/','lndex2.php',0,_binary '!M\\#.\r\\ri',_binary '!M\\#.\r\\ri',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S.FȫAj\(:','wp-includes/js/hoverIntent.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P\nޅL1AWb\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S0־\\K/17u\','wp-includes/js/jquery/ui/selectmenu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}˪29Zhxi\"6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S5P\yL\V\ЛQ5','wp-content/plugins/tinymce-advanced/mce/table/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'na\"P\`Va\^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'SX+7\1?\\\-','wp-includes/js/jcrop/Jcrop.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z7e\Q%K',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Su,\;\\Z\\\','wp-content/plugins/meteor-slides/languages/meteor-slides-vi.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;\߳\9d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\p\>\\WrYE','wp-comments-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Хl%f\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S94\Z\'\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\U3GJ$#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ST+)Μ<C\e2\r','wp-content/plugins/wordfence/images/flags/kn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hp\(\"\I\\[\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Sd:jr-I\\\F','wp-content/plugins/wordfence/images/flags/co.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\"}ˀ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\\\0|	;\','wp-content/themes/twentytwelve/js/theme-customizer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\K-MdƩ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\\&\az8Jض9','wp-includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z6\\\̒\$2p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T??:q׮P\ah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8NE\\e\\ޮ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TWݯ(W\قF\B~Q','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\ !)\O_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T^Ih\\Ύ\(','wp-includes/js/tinymce/plugins/wpfullscreen/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\W`?\I_\\=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T.o@Ψ2wvX','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/aLru\4\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Tvm?,a\\\T4\','wp-includes/ID3/module.audio-video.quicktime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U`\\f\.0F˼',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Tٮ\eMk\͵=v','wp-content/plugins/meteor-slides/languages/meteor-slides-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ůf\`\_\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T\.\\d8\y','wp-content/plugins/wordfence/images/flags/ae.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\4%E\\'M}l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'U\\p{JO\Q\&','wp-includes/SimplePie/Cache/Base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\2]]#|j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'U/\LK\}x\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^q{3\\\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'U}5&`J[u:','wp-content/plugins/wordfence/images/flags/br.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mH%WQ[\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'U\\\$i\"u\\&\9','wp-includes/images/crystal/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lڤ;=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'U\`\nlC\gupr\','wp-content/plugins/wordpress-seo/css/edit-page.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lf.G{R~\\m\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V\n\\U`_58','wp-includes/js/customize-base.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.ҖX\`5A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V33\rTC@U~\\n\n','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't~2B`ԙ[	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'VL6\7G^l%D5z3\\','wp-includes/default-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XQ\eT\\\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'VVh\v\NCcǨq','wp-content/plugins/header-footer/images/social/round/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U_\\B\?W\\G\ ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Vne!\z0u1?','wp-includes/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\i_	[\\È\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'VrmKEpj\\6','wp-admin/images/w-logo-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[NW_p\w0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Vš\+\Pyv','wp-content/plugins/header-footer/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\g@C\'W@Q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Vri@k1\.+\','wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ơ45T\P^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V\댏$\x','wp-admin/js/post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Kg{=q\rbI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V69\sC!?','wp-content/plugins/wordfence/images/flags/tc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G/\\\	\\\QJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V\{/\:2\','wp-content/plugins/wordpress-seo/images/banner-premium-seo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\0\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V\~0YAy	m','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/phpunit.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\r6)x\ޤ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'WuQ\no<,	@','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȹ	\Z^\\+}i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'W17\/\7M<\{','wp-content/plugins/underconstruction/defaultMessage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\0r0\\ݬ,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'WN\	b%\9pY&\\\','wp-content/plugins/wordfence/css/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N3(\-M\\r\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Wq S\~S!w`\"oA','wp-content/plugins/wordpress-seo/languages/wordpress-seo-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\~0S*\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'W{g- X\\'=n8','wp-admin/moderation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TBYR\\"4o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'W})Ӗ7\e\}5\9,','wp-admin/load-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E0VO\r\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'XǷ\Za#\)','wp-content/plugins/header-footer/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\oT\(o\\ǵ󇞔\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Xͮ\\xⷙ\#\','wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\;f9k\%\Zgz*)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X<l>vq\Zf\','wp-content/themes/chimod/loop-single.php',0,_binary '\\u&tf_}5w	',_binary '\\u&tf_}5w	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X,\ECj$_8I0','wp-includes/images/smilies/icon_cool.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F~ߢ.>t8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X08E\\MIɾ','wp-content/themes/twentyeleven/images/comment-bubble-dark-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\"\\"|B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Xe\\m\F\(`','wp-content/plugins/wp-force-ssl/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*CEx\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X:8+˓2>V]\8\','wp-admin/images/sort-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nQ&\] 0\-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X1m\ZvD<j\\\2','wp-content/themes/twentyten/images/headers/sunset.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\nM\'\A[igP_oJ5\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\-V\r$)`\_','wp-content/themes/twentytwelve/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӷ\\rvIB\Zv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\\\G\zX','wp-admin/includes/class-wp-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fK\Z\\\(4l\H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\\Bf_\ZDTeiRR','wp-content/themes/twentyten/images/headers/inkwell.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rģ]mmo\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\<	_\nGИ5\n','wp-content/plugins/meteor-slides/languages/meteor-slides-ja.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@58\\\a/)_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ym>\h\\ȯe(','wp-content/plugins/wordpress-seo/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nm\t\/):\Ύ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'YLa\h\(','wp-admin/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ၢ8\\Zq\}u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y,e\Aw`\\','wp-includes/images/media/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\\\h\0\\ìu',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y=0̈́\-`*/\2','wp-content/plugins/tinymce-advanced/mce/link/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L+\3s$\s{\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y68\H;%,_c\n','wp-includes/css/wp-auth-check.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`4j@9\Y\\\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y\\\\]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#G_MVژ\y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Yօ4:+X[Z\Z','wp-content/plugins/wordfence/images/flags/fr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%}\2\K\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y֝U\\}\r/','wp-includes/SimplePie/Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y:oMhvL4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y*M\$\\','wp-content/plugins/wordfence/images/flags/cc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\TÒ;+R\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Zv8~`֬\_','wp-content/plugins/wordfence/images/flags/mx.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?\aҫ\K/ҋ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z4<n?e','wp-content/plugins/wordfence/lib/wfConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\D\ZO\\*=`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ZҌ[\nv\\\	F','wp-includes/SimplePie/gzdecode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\a\al4\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Zʪܱiq\"%','wp-content/plugins/meteor-slides/languages/meteor-slides-id_ID.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Mcc\?\Z8\\'D\!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z\\\ %/Zz9\','wp-admin/includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E6\\|JᲵ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\09R\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[@|°\]>)','wp-content/themes/twentytwelve/inc/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.+Uj\sMU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[<7S\3\d\','wp-content/plugins/wordpress-seo/admin/views/tab-permalinks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'or\bm┐\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[D<f\'\dKZU1g','wp-content/plugins/meteor-slides/images/prev.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y_YO :=\\'2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[Q\"ABb.Q\\\\:','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\#kz\I]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[Z`[v\~#','wp-includes/SimplePie/Content/Type/sql.php.suspected',0,_binary '\\\#\rȂضj',_binary '\\\#\rȂضj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[hi&.\\E\r5S\','wp-content/plugins/wordfence/images/flags/cv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5`	xJ\BW\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[~6\Mp\'q','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\r_5\"\A<\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӒJ׺\\SbH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[k\Xt\\9Nt','wp-content/plugins/wordfence/images/flags/za.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pCh\"ڟ.\\3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[>x;wn/tH','wp-includes/js/wp-emoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jǿd\$\\Kg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\1YAdk,','wp-includes/SimplePie/Sanitize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bظ\Fإ\Hu',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\ئm\Np\h','wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\y7\	B\nE%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[ꠏ\|Ko\یb7','wp-admin/user/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-xNb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\vvڡwx^4C1','wp-content/plugins/wordfence/images/flags/jo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӎ\1\\W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\w%u%}69\\','wp-content/themes/twentyeleven/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­½YD',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\?+VQa@\\l','wp-content/plugins/wordfence/images/flags/st.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RK\{\\< ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\9\\','wp-admin/ms-upgrade-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|&\"\Sm8hm',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\&Ĩ\fo݈g\W','wp-content/plugins/wordfence/images/flags/gm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1{\Y0]\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\/\\W\"-Τ1q\','wp-content/plugins/wordfence/images/flags/uy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rC\ӳ\AL)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\[\\i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\͆\\Zj_LJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\т?$̈́8\','wp-admin/includes/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z[P\FX-R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\I:\\ڲEXWO','wp-content/plugins/wordfence/images/flags/fk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TI\]\Q\n1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\0>+Fb\\','wp-admin/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o\s\f\n\e?`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']혏dT\\'J\','wp-content/plugins/wordfence/images/flags/ua.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@s\J\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '](R&!\\1;3\','wp-includes/js/wp-ajax-response.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#\#Pv\\\\p\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']A6p\}\\0\v3L','wp-content/plugins/wordfence/images/flags/tf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')v=^\4sʉ<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']B#\2\z\\bU\/','wp-includes/Text/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%gkj@b%\\\\0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\\\.D;PښAf\Q','wp-content/themes/twentyeleven/content-intro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ãZ\\\n\\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\g> ӡ','wp-content/plugins/wordfence/images/flags/ki.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\[#0+A\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']c1O\','wp-content/plugins/wordpress-seo/wp-seo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FIJV^Ԃ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']P\Tkvt8A','wp-admin/network/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\=S[fx\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\*J','wp-content/plugins/wordfence/images/icons/email_go.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\EH).\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']uFa\\\>','wp-content/plugins/wordfence/images/flags/td.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\l0#\8;6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\\"}[Y\R\','wp-admin/css/edit-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q&d\@$\=WČ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\*I\	;\,\\\Z','wp-content/plugins/tinymce-advanced/mce/visualchars/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5osD\F\gMe',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^m,Z\޹7\p','wp-content/themes/chimod/loop-attachment.php',0,_binary '3Q+\.2.\,\sm',_binary '3Q+\.2.\,\sm',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^ /^^\N\','wp-content/plugins/wordpress-seo/js/wp-seo-metabox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wL~,20\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^9(-(Ų\y \0q*','wp-admin/user/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0ڍKN \N-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^@ղ{\'_\\92','wp-admin/upgrade-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\\\uP\qX\\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^dTMR\">vRſ','wp-content/plugins/wp-force-ssl/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wu\1\/|@\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\RC\\Ty\?\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^\Ð+y|\','wp-includes/images/crystal/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '59Т1T\\n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^w\*A\,\\\f','wp-content/themes/twentytwelve/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p>\%\/N\\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^,ǲ\\V\','wp-content/plugins/header-footer/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/UY*\%HG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^\\\3','wp-content/plugins/meteor-slides/languages/meteor-slides-pt_PT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2ֳ\ \0A\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^Qjj2|I','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[W\\FgԴ\	\2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^\l=5%o','wp-content/plugins/meteor-slides/languages/meteor-slides-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$t\'%+r\RV+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^TF`h\1H5)','wp-content/plugins/page-links-to/languages/import.rb',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KW\dWd\\!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\0\\d MP~\\D','wp-includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{)8\'\'\\8u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_k4\!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>B\\aX\\\wa;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_ui]4\A\A','wp-content/themes/twentyeleven/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1m@\ދ\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_*\⽞L0\>\r','wp-includes/feed-rss2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A`\'r}b QG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_3ayYe\y$y:','wp-content/plugins/wordpress-seo/admin/views/tab-breadcrumbs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\B\\F\I\'ʪ6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_j_/\\\yӱ','wp-includes/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TfuJ\0\GG0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_n\2o\0xl','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K8Idpo?E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_sʼ\U|cU\dk\K','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/div.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\ueb!\2\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_q\I\bSN3	<','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_cry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Z\F\At^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\ 92pb0L\\\\hx','wp-content/plugins/wordpress-seo/languages/wordpress-seo-hr.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\$\}\\\nΣp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\\n_\n\ۅ9D\r\','wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ə \Tl-J5HH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\|TM^\\J','wp-includes/css/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m-o>q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\\4\3\\=','wp-includes/images/uploader-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\M\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\(\C\M69\','wp-admin/includes/class-wp-links-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pP\\{4WEW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_\\8}\\?\','wp-includes/css/media-views-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't[kni\+\/jI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`\յ\~\,\4','wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%籢\na\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`*A@d\V\','wp-content/plugins/wordpress-seo/css/featured-image.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\nnzϵ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`\\S`NI^G\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a5Dn\\r-m@5P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`%ֽ\j\'\P','wp-admin/js/edit-comments.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{(Æ\c|љģ*3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`O(G7`	M@','wp-content/plugins/wordfence/images/flags/ws.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\0N\\=HOsT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`X[r\횎E','wp-content/plugins/wordfence/images/flags/cg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UXB\'#T\w{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`\n4 \tidx[\,W','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/external/URITemplateParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '܂\BH\K;^i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`m\[鴡ƿj','wp-content/plugins/wordfence/images/flags/vi.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\~)N\SϢԡ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`c0\\\\\3\','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\\"%éODZ\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`ڮ/ZE\0]\܋3P','wp-content/plugins/wordfence/images/flags/pk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p,\\\k\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`;\"-\+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\"\ʧZ\¥v\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\Z\cr2\','wp-content/plugins/wordfence/js/jquery.tmpl.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}\\"7ڷDZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a%D\\r}d','wp-content/plugins/meteor-slides/images/buttons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\x\ɚ!\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a(\\0\\'~u\W','wp-content/plugins/wordpress-seo/images/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a)TMW\OoQ|\','wp-admin/images/media-button.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6@p\z^ye\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a+\Y>e\1O','wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\xn`\"uǯ\0ZI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\\c,I\"5T\#̋','wp-admin/images/media-button-music.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]2\\Z/\\ޕ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a#\n\2fl\\\	','wp-content/plugins/wordfence/images/flags/gp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\©ըm g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a?_\ˢ\6j\X','readme.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\\\2C\\\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'aSM\\b\\E','wp-content/plugins/exclude-pages/locale/exclude-pages.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LfSd\\\\^]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\\\(m\EBl\','wp-includes/media-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\KY?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\cCH\r=l@ĸ','wp-admin/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r~\`3\Z\}@[VP',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\|\n|@X\nfM\r','wp-content/plugins/wordfence/css/dt_table.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[f\\Z}I+o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a?X@','wp-content/plugins/wordfence/images/flags/lc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fF\n\mU\%\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'bn\\\:Z\Y','wp-content/plugins/wordpress-seo/languages/wordpress-seo-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\ZJ\\45\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b32N?R\VMCR\'','wp-content/plugins/wordfence/images/flags/bj.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N,X\nlY%_\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'bY\,ϥYr۝\;','wp-includes/js/crop/cropper.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ky5ni*M(\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'bu/~Iք9','wp-content/plugins/wordfence/images/flags/ge.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h!4:R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b5\0ɵHx\f7','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h6.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%+,̉߳ /V8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'bN̫O\:Y\ȅ\','wp-content/plugins/wordpress-seo/css/taxonomy-meta.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IxNN\K~`	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\[@\EL;~/\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ɲ\n%\0\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\HzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\0>\=l;qlw',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\M]\D\\00EP!D','wp-content/plugins/meteor-slides/languages/meteor-slides.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3d\@@0?\m1\\W\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\`\Ҥ-17@','wp-content/plugins/wordfence/images/flags/ag.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$, ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\Ҍ &\?{','wp-includes/js/customize-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ܽL-Im',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c,[xޫ3\n@','wp-includes/js/jquery/jquery.masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\R(\e^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c0\?u\>v\','wp-content/plugins/wordpress-seo/admin/views/dashboard-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\q4`\!0\0j,(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'cZ\\+rS','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_sad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZPSZ\\vw.^#[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c>qD1	_h\0b','wp-content/themes/twentytwelve/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0(Z葏6(\B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c[b]\ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q:6\\ȅ[z\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\:w\\O\І','wp-includes/ID3/getid3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\nQ\Q.\bo\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\\1\쵓-;O','wp-admin/js/custom-background.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j)N\ˈ¨iv#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd4\\\.m4עV)','wp-content/plugins/wordfence/images/flags/ni.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ԏ,\\fT\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\(\\%J\\@G','wp-admin/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\o\sn\\\]T\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\hħ{q42K\"\','wp-includes/SimplePie/Rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=pm	\K\دat',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\4j\2U\V$P','wp-admin/css/wp-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\S\RF\)\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd,\myKO$ģ','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Cc=W*\Dg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'eG=U\\l','wp-content/plugins/wordfence/images/flags/bz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ߠe^ze\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e.PȴNBSx[\&','wp-admin/includes/class-wp-plugin-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i1*\\\rE`r\\\C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e>Y9\S&','wp-content/plugins/wordfence/images/flags/ci.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h\zP\\F+d\y&\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'eÑ5[qR\"57\X','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-theme-update-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\O\DB\'q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'eщG7\X?\0B','wp-content/plugins/wordpress-seo/admin/pages/social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9v\\;\\\\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\?Rz;\\"#?c','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9KyP\*c\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\__%\x\','wp-includes/class-snoopy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xxܧ\[w\\" \',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ֹ\btX8GX',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\V0-\!9Aɐ','wp-content/plugins/header-footer/codemirror/mode/css/less_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\lU_&\\i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\>`\\ts?}#g','wp-content/plugins/header-footer/codemirror/mode/xml/xml.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JjM/2&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'f\'\"Y\\\˱\V\','wp-content/plugins/wordfence/images/flags/uz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^zlvY\i6)6|c4;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fS\\q\\\(E','wp-content/plugins/tinymce-advanced/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\0}Z\\©',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fu3\nM\\}6*0\','wp-includes/class-wp-customize-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=t$Q\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'f\\+\WKZ\"','wp-content/plugins/wordfence/images/flags/bv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҒTǯWF5~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'f霰f؟|hUL','wp-admin/includes/ms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\*H[\s@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'f\\\\eR)\','wp-includes/SimplePie/Item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\!Cz\\0c<ܧ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fЭ\J6\-u]','wp-content/plugins/wordfence/images/flags/nl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Kɞ\l\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ftצX	s]','wp-content/plugins/wordpress-seo/css/wpseo-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R}6\Ibs',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g#L\ͬK\A]ea\2','wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\(+K\\H&G	\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g#\,vM\:\','wp-includes/js/jquery/jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N*ht(#Y(JC',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g+yr\\qD/','wp-includes/vars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\8uƵ8;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'gM\BM\}\ޭ!\\\','wp-content/plugins/wordfence/images/flags/bo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\7_ |>)\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-5\^\J\j\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g$G\\\;r\\\1X','wp-includes/images/wpicons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dSuqV_\\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g\x8PM\\\o','wp-content/plugins/wordfence/images/flags/vc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jF\"{\\\\|0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g˺\3\C,','wp-content/plugins/wordfence/images/flags/bw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E\.\g\;\\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g\]bR% Z\E','wp-includes/js/shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X2\0`y\L8\*\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'gEd\\1\D}\\','wp-includes/js/jquery/ui/autocomplete.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PصC\Z8zj\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'hMx\h\'','wp-content/plugins/wordfence/images/flags/ly.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C̲ۨb#~<Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h\ZOhl\_\Lm/\','wp-includes/class-wp-customize-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G.\\F\ά(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h d\껅2\_r','wp-includes/functions.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|{\Dv	:B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h0X-\i\\^\G`8','wp-includes/pluggable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ,\n45\n\,\\&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h4#3\`-݈\"','wp-admin/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\?\>z\ͩ\\z&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h@Z\%R\F\;ti\\m','wp-admin/css/login-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ed}\np\\?\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'hCj\/Z}%9n','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_ServiceResource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\M++\r\0Vq»N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h|hEf:Ʊ2~','wp-admin/network/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&շ\1Up\%\1=$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'hW(g\_\,r\Gk','wp-content/plugins/wordfence/images/flags/tm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}k\Զϯ1t\6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h~\\x`h~?','wp-content/plugins/wordfence/js/jquery.qrcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ԹXp`me<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h<]\OpNCƴ\','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\KHgI!^उ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i8LO尞\sL<\','wp-content/plugins/wordfence/images/flags/nr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\\Z\Զ|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iAh{\\M(|J,\\','wp-admin/js/wp-fullscreen.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fAo\\0)`o\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'io\\\L]','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/section.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\98\3\Wͣ\C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iTgW\P','wp-content/plugins/wordpress-seo/admin/class-import-external.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Xk\\\Dx\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i-\X8V[~E','wp-admin/css/install-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\5n\\J\ ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i\\=X\h$','wp-admin/js/language-chooser.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\P\V0\tJJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i\k\C\T,\','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ia|\0\n\5\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j&V164\\','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r9 #\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jQe;\e','wp-includes/css/wp-pointer-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l>SR1iY7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jmE\AX\uw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XѲ\\E\ϡuI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j䱋\%\\]','wp-includes/class-wp-xmlrpc-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W;S]:%C+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\)nQ8ޮ\D','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NI\\f\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\5F+\o','wp-includes/images/crystal/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\m`\`9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jj\&ɓ','wp-content/plugins/meteor-slides/images/next.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#&\aϩ`\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jͱf})%`/~','wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yfO\1\p\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jڿt\1u}','wp-content/plugins/wordfence/images/wordfence-logo-64x64.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v^I\N/\g@\\u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\\kQ\\\\0\'','wp-content/plugins/wordfence/images/flags/dz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h9\X\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kF3\\lt','wp-content/plugins/wordfence/images/flags/ms.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ޛy\ǨxW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k$6O\-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\ni?K%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kHew+^Jog4','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<TW<l0ӵ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kM\\̙Ysp','wp-admin/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm`$\\Y\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\Q\\cd','wp-content/plugins/wordfence/images/flags/by.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_6\r\\Av\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kB˞\b=y\','wp-includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q*\;\'ep',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l\ng\\\L','wp-content/plugins/tinymce-advanced/mce/code/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\_0\M@\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l\rVLb\c(','wp-content/plugins/wordpress-seo/inc/class-sitemap-timezone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GMgm\Vj{,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l9\=h\,>\\\&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n1jh(Hks\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'lY=!{~\(0U\0','wp-content/plugins/wordpress-seo/js/wp-seo-admin-media.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\u&9.!\yC',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l^<D֖P%*&\ᲁ','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ճw#\\R\mR)\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'lt\%\L\\\Մp','wp-content/plugins/wordpress-seo/images/question-mark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\3\XXJ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'lpp\ybUx','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\,S=\\\T8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l\=\g9=\0','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\!\\Hh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'mD\TmsA}','wp-includes/certificates/ca-bundle.crt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vǻ!o\nf\o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'mA\Y\\Rb|\S','wp-includes/ms-default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NM\9b%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'mE\\\)\\o\','wp-includes/js/jquery/ui/spinner.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ש\/k&HQ;j\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'mY}ɽ\?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\m\Q4փ\]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm-\Zm1\w\\','wp-includes/js/jquery/ui/sortable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Xwk^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'mM3\\r\~Ai','wp-content/themes/twentyeleven/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\\\q\Z1V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n]j7<3ISsQ\','wp-admin/images/post-formats32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't.E\5GN\Zv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n#t=\'\b]{','wp-includes/js/tinymce/themes/modern/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VL]\\Tg2%\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nIA	\R6\	}\Z\n','wp-content/plugins/wordfence/images/flags/mc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\	FV\yǱ.\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nZ/1T:{&^/n','wp-admin/js/media-gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|f8}+&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nefA@R?','wp-includes/js/jquery/ui/position.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\{:pKvht',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n\\\@AF','wp-admin/network/sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\bdY.|\K',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n\\Q)Ej\0Q','wp-content/plugins/header-footer/codemirror/mode/htmlmixed/htmlmixed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ivg\?/17',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n٢\\7\燥\x','wp-content/plugins/wordpress-seo/admin/class-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3̫C\gҝ\]q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n\\\O\vW\#H+','wp-content/plugins/wordpress-seo/languages/wordpress-seo-da_DK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Uz4~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n\09jv8\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/g\ȅ%nW!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'oPc\o.\r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rdP\E}u\n/MA\\ ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'oZ0\\\<c\0','wp-includes/SimplePie/IRI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n \憒\;a{_6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'opUf\1TeR\','wp-content/plugins/wordfence/images/flags/fm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tm\'J\t\?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o\\a\\w5h\@+w\r','wp-content/plugins/wordfence/css/main.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӻ\>D~w\K',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o㮚-\;?X:pҡ','wp-trackback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\.d\#kl',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o\[\n3u\ʹP5','wp-admin/options-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\q7֔\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o\*1#\\\\>\','wp-content/plugins/page-links-to/languages/page-links-to-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\X\QԤ\\\P\0\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p7u\L\_{2Û','wp-includes/js/jquery/ui/draggable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PVd@\\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pZV_	\]l{','wp-content/plugins/wordfence/images/flags/ke.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oE5JUI\W>\sZ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pUya	\b\va;8','wp-includes/js/comment-reply.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\(e=N(ZMV{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pb$n/u\','wp-content/plugins/page-links-to/tests/test-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1%Q\4\}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p\\\#:~CF\Q','wp-content/themes/twentytwelve/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	pJZ\r,~]V\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p\\\+:Zo)e\\'','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}=\%7\\\8V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p.а[ÍD','wp-includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v\\_\S^Yv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pe0}o','wp-content/plugins/meteor-slides/languages/meteor-slides-be_BY.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&]5&Llՠ? ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p\\\2+\"&Ҭ?','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R#tX\Ƀt}7FI7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p\_uNJp#B36\Ce','wp-content/plugins/wordpress-seo/languages/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H.d\\\\0%U>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p\ahH^뿜\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_CacheParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\\L<<Š{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\"co\\>2Rh\]','wp-admin/includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\\y\\:8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q4]0Kvl\\E~B','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ṕxǐ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'qh665y|=\?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\)J\l<\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'qq՗\->{\;c','wp-content/plugins/secondary-html-content/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&;\W(\\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\Zp?ǋ78gt','wp-content/themes/twentytwelve/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\g0\\raZk\2+\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q)kD]\\\\P','wp-content/plugins/header-footer/images/social/square/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\˺\nd<\<c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q5@*=&\\\X\','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\!ȍ\\4Q\\X#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\{\.Pn!>\)','wp-content/themes/chimod/404.php',0,_binary 'vnܾ{-Lc-sU9|',_binary 'vnܾ{-Lc-sU9|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\_\ZB6S(Q\3','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#S\]r\Z\H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'rh\v\Lk/','wp-admin/network/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#9091N\\dH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r+zk; 4\WI','wp-includes/js/tinymce/themes/modern/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ڎ\'\,s\bP;S\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'rG)u򶕢~\+~Ue','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\՝\Vo5\ڐ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'riv\4,!$\\\ڱ','wp-content/themes/twentytwelve/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\r;ho1B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'rti. :v\V&\','wp-content/plugins/wordfence/css/jquery-ui.theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{_\\\#\\S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r(n՞j\\b\"','wp-admin/js/media.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'υ\^p0LBuSŅ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\D\EQ:ɰ\','wp-content/themes/twentyeleven/inc/theme-options.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\?i>Ӄ\\n@觨J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\_\/\HG=\%<','wp-includes/images/arrow-pointer-blue-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%m\rތ]49c\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\r(Jg(yt','wp-includes/js/mce-view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'պ\\\wdj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\Y\Z\\5&yc','wp-content/themes/twentyten/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kqi0%``3F',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\\n\b#\','wp-admin/css/media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?ً./+#SG_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's8P\\Z%?zݜG\\z','wp-content/themes/twentytwelve/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\G;G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's?\"\{=\\\\"4','wp-content/plugins/header-footer/codemirror/mode/javascript/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dcX\\n#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's\ߡk\б\','wp-content/plugins/wordfence/images/flags/hn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\E\\P\+v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'sF\\~\','wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-&\26+*\-pG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's\0ylꃋD\\\"','wp-content/plugins/wordpress-seo/wp-seo-main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\B0\Z\mG\.@h,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's\ŏU\'\e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\y_1u݇bo\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 's\\˱Y*u\O','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\0\>\\\}LQ\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'sC4M**B)','wp-includes/css/wp-pointer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=|tr`\֖}|?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't\w*>','wp-content/plugins/wordfence/images/flags/do.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\:E\GaXz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't\L\#]	\TV\\','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-platform-tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\\PX\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't6\O\raȆ\f','wp-admin/js/plugin-install.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XR751:]S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't8\\p̋\z{jDp','wp-includes/css/buttons-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1>\\\:z^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't;Q<e\\r','wp-content/plugins/wordfence/images/flags/gd.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?B~̚WV\r.9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tU\/DsIڤ\st\','wp-includes/js/wp-auth-check.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E	8\\_oDdJy\s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-Ke\:8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tp\\o\"\|:U%','wp-content/plugins/wordfence/images/flags/cf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*t)\M؋F)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't\\\O$ҥh\r\Z','wp-content/plugins/wordfence/images/flags/sh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>G\	{nդ\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'umr1\\\\{\n','wp-content/themes/twentyten/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\r)\w\Z\0=uY\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'uapF[t#(q[','wp-content/plugins/wordpress-seo/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ue,\"\n	\hg.','wp-admin/css/colors/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\_\\\|\'4.o\'6\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'urm\\\4~','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{\hȡR2˪퀨6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\3!pAf)RM\','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\#j\d&\S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\kUI.m\WYGqE','wp-content/plugins/wordpress-seo/js/wp-seo-admin-gsc.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'\nwv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\\r\<\7	C.\','wp-content/plugins/wordpress-seo/languages/wordpress-seo-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\<v\=\$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\qg\Z\08hԭ\0','wp-admin/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\.08#\\Zz&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\\r\\a\"\r\W','wp-content/plugins/wordfence/images/flags/aq.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\w \釚d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v%Q*\\\[Gw','wp-content/plugins/wordfence/images/flags/no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ҒTǯWF5~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\\\ðMv\:i','wp-content/plugins/wordfence/images/flags/cz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0yS(18\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vڴ\\\V\KP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\6_¸\f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v@2߭^qƠWW','wp-content/themes/twentytwelve/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\`Ԗ6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vK;@\saU1;	^','wp-config.php',0,_binary '}_\X\\`0yQCxN',_binary '}_\X\\`0yQCxN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vX%WkJ?-#','wp-content/plugins/wordpress-seo/js/wp-seo-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\N\\3^X\4d]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'voFXc\%\m/\','wp-content/plugins/wordfence/images/flags/gf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$-\[S\D]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vw\\@H\\zF','wp-admin/ms-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\ͯEb6\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v]z\\\3tB','wp-admin/includes/class-wp-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\KylCKW.5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v2\\n[6w:K\\','wp-content/themes/twentyeleven/images/headers/shore-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9u1\Y\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vޣ\R\','wp-includes/js/jquery/jquery-migrate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\7\5XQNz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v(i,:\+\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Auth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	A\p\\n1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\e_a̴1','wp-content/plugins/wordfence/images/flags/pt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\T:\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\G.\gA\#r\','wp-admin/images/align-right-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hl>r]lW\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\\\4\|>\<','wp-admin/js/xfn.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\t+n(k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v{#lb\0}\\B','wp-admin/css/colors/light/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ʒw\^`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vҸ);D~J\"\q','wp-includes/js/jquery/jquery.form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\.\,+\\nq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'wu\l|\p\Q','wp-includes/js/autosave.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\,@g\h/7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'wL\Z\\m|f','wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\\\P1\pe',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'wji\\ܘjE\\02','wp-content/plugins/page-links-to/languages/page-links-to-pt_PT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\Z\w\dϤ\Xf',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'w\L\0\]r.','wp-includes/images/crystal/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\1\\19',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'w\\\:}VP','wp-admin/js/common.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\\=rG\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x	G!N\$.dTb\','wp-includes/ID3/module.audio-video.flv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ֈ?\dh\@D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xGdC\1xMp\','wp-content/themes/twentytwelve/content-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\\\Z07&4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xIH\.9Y\\BO','wp-admin/css/colors/coffee/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9~8 z#C0\^%a\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xn,SC-\Zu','wp-content/plugins/meteor-slides/screenshot-1.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y8\I\F&uIXDJt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xxPyܪ1\','wp-content/plugins/wordfence/images/flags/mh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KQ\:CYM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xy!\q).ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m͟\\r\\ 9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x^m\]̲/\L4vU','wp-admin/includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǒU\+zm\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x޶5LC\}','wp-content/plugins/wordpress-seo/admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x\Ke8|\\6[\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7hQv<j4@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x덂@}Y\i\+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\dFЂ\\"Ex',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y1\-\/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\\tT2y%p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y\R?kZB','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']eZqs\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y\\Ea\:[\0','wp-includes/class.wp-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T_[@jj\\\?ou',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y\\G\\`\MR','wp-admin/network/site-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\y\(l#nK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y51\\m>\G','wp-content/plugins/wordfence/images/flags/zm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n|\Ϸ{>c\\-R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'z3$КԌ\*\g','wp-content/plugins/tinymce-advanced/mce/print/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K(\+{#e&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'z;j2WD6[V','wp-admin/js/accordion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^V\\n8.7pCt7:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'zDZ\؉Jp\','wp-content/plugins/wordfence/images/flags/nf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5E5h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'zlG\\\>?\~m','wp-content/plugins/wordfence/images/flags/sb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l<\)J\\\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'zla#\pSg','wp-content/plugins/page-links-to/tests/test-filtering.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\1[\0\\\#\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'zwЇ\\׮[\h.','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-issue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.}ڥM?\_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'z5*\ZADZCk\j','wp-content/plugins/wordfence/images/icons/magnifier.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uO{:qcV\\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'z\\JX\w{!\rF','wp-admin/includes/class-wp-upgrader-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<]:PGV5]f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\\a\t\\n\">\S','wp-includes/js/mediaelement/flashmediaelement.swf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\S9z\nkM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{N\2\Qu\\=	','wp-admin/network/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OF\dm\\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{Pz\ҹae\ӧ\9','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K!೚Rlq`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{t\E~\P\A1','wp-admin/js/tags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\BfZ\<\/s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\\43ڤ\1','wp-content/themes/twentyeleven/editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L[UO @@\r{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{)\4e4p:fW','wp-includes/js/jquery/jquery.query.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\Xzǰ\\wC',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\\\ZyƋ \rC\\','wp-content/plugins/tinymce-advanced/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']Q\n4\[8ͣ8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\_9έ\e','wp-content/plugins/wordfence/images/flags/bf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cY8\i\3\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{µ\6\n\!ĵ','wp-content/plugins/wordfence/images/flags/gb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\?\\\Ig*\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\RC\\Z.*\"Q','wp-includes/feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3!/\\)Tj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\r\-\\}^\\','wp-includes/images/smilies/frownie.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\P85x-','wp-includes/js/tinymce/plugins/wpfullscreen/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '݃\r\\+zJ\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{;13\84\\/','wp-content/plugins/wordpress-seo/admin/ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\\.|/l\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{?\\\\r\\n\'','wp-admin/images/imgedit-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\\2\\}Gi;O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|\0o\n\Bi8','wp-content/plugins/underconstruction/underconstruction.dev.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DmՌfd\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|jx7\(Q}0\'','wp-admin/css/list-tables.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DJ\$\e벚',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|\\ \Z7\'\/\"','wp-content/plugins/wordpress-seo/languages/wordpress-seo-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K	ꅤH\D\ \1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|/ڒ\\0[*4x\','wp-includes/js/admin-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\o\0\H[H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|}hly\V,\G\)\0','wp-content/themes/twentyeleven/images/comment-arrow-dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\"7\<A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|\Z\rWt\f\','wp-content/plugins/wordpress-seo/languages/wordpress-seo-tr_TR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\~\nOti\#p٪6\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|\sk\[cЙ','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q 7`N\C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|Y>\\	Ɔ\','wp-admin/link-add.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uG\D\/ϥ\W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}ĉ=t','wp-includes/images/toggle-arrow-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\\\\\\CDr\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}`\\g\"P\2\V','wp-includes/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\q9)hdxR\\]l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}u\A3)xE\ZЮ\\r','wp-content/plugins/meteor-slides/css/meteor-slides.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\"Ɏ\\r\bN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}\\>/\Z\\+iV','wp-admin/js/wp-fullscreen.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֨\9\Z%\S=2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}7 ޘ\DHD\Pl','wp-includes/SimplePie/Registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȣ\\1v9d\0ٸ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}\{z5\?\','wp-content/plugins/header-footer/codemirror/mode/htmlembedded/htmlembedded.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gE8y{\\^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}\Ȑ\\\L`\i)','wp-includes/ID3/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\jQ\\\#1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}05MZ\','wp-content/plugins/wordfence/js/select2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' bG\.i\TRU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}\\{RҢ\\\"','wp-includes/default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\vj$%+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~>E\g%\','wp-content/plugins/exclude-pages/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r8&7I\x\KPNh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~79h\g$+\=\\\0','wp-admin/js/bookmarklet.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`8\\#\03',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~?JI\b*׺\e\C','wp-admin/images/resize.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?D\$\r\Xv\\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~F\㫎>dy\\j','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2iy6v&]2\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~VXA\\&_M@em','wp-content/plugins/wordpress-seo/admin/class-export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^hTXվ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~iI\;ݭ]A\S','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x-\\\;\<B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~ť\s\0\1y\$L}h','wp-config-sample.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\"M\p\\q\$vB',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~\Ӹbc\\Z$@$*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c@\q\xy=`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~Ӥ\w\J̼.','wp-content/plugins/wordfence/lib/schedWeekEntry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\1D1\\\ .V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h\;\\e\\q>','wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader52.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ȹ	\Z^\\+}i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^k֪Dv6R','wp-content/plugins/wordfence/lib/wfRate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\\XE\\nW\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j&\^\b','wp-includes/ms-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'svɂhz*\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=؁<#\pI','wp-content/plugins/meteor-slides/languages/meteor-slides-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4/&Q8J\7n\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'JgV#\OY','wp-content/plugins/wordfence/images/flags/mz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\4ȭ\\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\$rڀ\Xw\rO','wp-content/plugins/exclude-pages/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\?YûZDa\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\b\h)\\Du-Z\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0 =LH(\wMO',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\СqD֚?\iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3BifJ\	%\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\KQ}U&;&\\Q','wp-includes/meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}؏\oSByy};',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\trεF_\ \\\','wp-includes/js/wp-emoji-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ԩ?WJF\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{Z}a\K/<nh*K%','wp-content/plugins/page-links-to/js/page-links-to.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\\\ gr\G\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'SP\;^ƭz\I','wp-content/plugins/wordfence/lib/conntest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\\"\\r\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\4|h\J*Կ','wp-content/plugins/meteor-slides/languages/meteor-slides-sv_SE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' mK\\O޻7\\\G\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ϋ҈\SG@Ҽeu\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\L뺵\'\Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\SHl\r\s','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\b\\Ge7a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ں\uM\[\r','wp-admin/images/wpspin_light-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\3\Y\(I\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\W6\{\.\0\\','wp-content/themes/twentyten/loop-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WB\\<&p\9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+\\0\\\1','wp-content/plugins/wordfence/lib/menu_blockedIPs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C*\\~=/e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\DP\\\?','wp-content/plugins/wordpress-seo/css/dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\i匓\Á\{>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\e\\97\aJS','wp-includes/images/smilies/icon_smile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G)ö\u\\\nM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+ϜHV','wp-content/plugins/header-footer/codemirror/mode/sass/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\S\ν\8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E58BC)Js','wp-content/plugins/wordfence/images/flags/bh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@T\&V\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'el5sE\úQ\','wp-admin/js/media-upload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\p3 \n^$e&z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',CUU\\9i-','wp-includes/css/wp-auth-check.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^G7\\\_\hQ^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ȉV?	\\]\)A','wp-includes/js/media-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@<d4z1\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\X\\\-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n7ܩ\4\'i9U\H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\'>\[·','wp-admin/js/user-profile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(		!\{*=\&\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Pd\c3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kYs\Z\칱u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'akI\$\\Q','wp-content/plugins/header-footer/codemirror/mode/htmlmixed/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u~cVp2u\\2<\\$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3Ƈe\(ú9','wp-includes/js/jquery/suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\^\~k\ۥ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\(\\wB\\I\','wp-admin/network/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E^\!u\)u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%t\\l5<\n\n\h\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_OAuth2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	n\;\<b]V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\B3\)7{U/\V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B\ه\v<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n2m0H\\n\'`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F \GJ\\B\s7','wp-includes/js/media-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u|zkNئ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0+OW+','index.php',0,_binary '5\;ʬY\'uy\',_binary '5\;ʬY\'uy\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\.M2\\\\','wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#;/lA`\r\\UI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\A\1\Z;','wp-includes/rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VYhƤ3\\\u	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Eh\s>2','wp-content/themes/twentyeleven/inc/images/sidebar-content.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w~\&\N;\\	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\p0{\MEi.','wp-content/plugins/meteor-slides/languages/meteor-slides-el.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' _8\^s\M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4v`\Z:%i\\\o58','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/hgroup.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\\R7\\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':\\Pb\4\	\u','wp-content/plugins/wordfence/images/flags/as.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_W^5F^\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'GǮ\\#U\&\\\','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-marker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';J޷Oa唂g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\q7K@w\\','wp-content/plugins/meteor-slides/languages/meteor-slides-bg_BG.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\=(\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o\U\\\}\+\','wp-content/plugins/meteor-slides/languages/meteor-slides-sr_RS.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'RQ\8\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\\z6\aDz','wp-content/plugins/wordfence/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:m𙗣P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"\\E`RU\','wp-content/plugins/page-links-to/tests/test-default-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%{\k\[*S\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\vJJE;\|\nm','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/OctoberInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\iΌ!]o_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"m韟o\','wp-content/plugins/wordfence/images/flags/pl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's풑-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ʆ\\nD㮖\(','wp-admin/css/install.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3?zP&O\<R9`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fN\dL','wp-content/plugins/wordfence/lib/cronview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Wjۚ\\مO',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':+[gCZ\\','wp-includes/template-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's~ǹ\Q9Zl=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';#\\Zg\\#\\P','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/article.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pl}φQ㜱I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ո\\\\\,)r','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h5.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǅLbq\\9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\O\u\ge\','wp-content/themes/twentyten/attachment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\\\0{{:P^hN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nvZYV\\','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\'r\\'T\_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\5ۨ\L~A','wp-content/plugins/header-footer/codemirror/mode/php/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H:a\\nY\rys\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B%v6\I\"Jb\4ӡT','wp-admin/link-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AlN.+Qcи',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l\\I{D\F','wp-content/plugins/wordpress-seo/languages/wordpress-seo-zh_CN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']8R\'\ٳ=e\լ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'sDoMa\[>v\\\Z>','wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8p\\;_jnF!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(l\_r5\','wp-content/plugins/header-footer/codemirror/mode/xml/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\YVЌ,ؚ>\0-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>A\B\7\Sz!e','wp-admin/includes/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\o=a*ATd',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1\eUMV^','wp-admin/includes/misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '҆FT\?\;\Հ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[U\4J\','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/ol.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ւ\75-w|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u9A^Z^]m0','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\.>\\Zc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ʜK;C94)','wp-content/plugins/wordpress-seo/css/metabox-tabs.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\bwuštF\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0>#\\z(','wp-includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F\a*s<\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\}\','wp-admin/media-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\J@\!\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ъ\6\yn6Ӏ˰\','wp-content/plugins/meteor-slides/languages/meteor-slides-zh_TW.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Jkx\L*\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Pw0\h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\2]DyZC',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J&_#3S\q','wp-admin/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\q9)hdxR\\]l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ʱ\'AK\"d;3','wp-content/plugins/wordfence/images/flags/pg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ɂ\\%X;{Eҳ]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\nGʐ\6 N\','wp-content/plugins/wordpress-seo/images/waiting.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I#ʊC\i@\0):',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\:\\ڈ\\)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\.8\Z|`\QLF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\ES7x\\','wp-content/wflogs/rules.php',0,_binary '3}[SFf\',_binary '3}[SFf\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6mU\)\rI','wp-content/plugins/wordpress-seo/vendor/composer/installers/.gitignore',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\i`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3vU\Z3P\^O ','wp-admin/css/widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I0\rݭ,LQ6,R\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L U\f\u\<','wp-admin/images/icons32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\P*\\{>vUf',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'aB\\0\\\H\`\J@','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\057ܚ\\ҢʮDM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`kYL_h%\'','wp-includes/theme-compat/comments-popup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XU/aڌ.u<.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q\\>%\<H\B%G','wp-content/plugins/wordfence/images/flags/cw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P%:\\\'_z\fh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\y/\dzQg','wp-content/plugins/wordfence/js/tourTip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\g>읐1\\:}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':=%\\\M\۵','wp-includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_QG\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\{?r]7','wp-admin/images/resize-rtl.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ےc\ZY\6\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\\V\Ȍ','wp-content/themes/chimod/page_services.php',0,_binary 'X!,܅ӻ%T6\ra',_binary 'X!,܅ӻ%T6\ra',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\f<u@\ܭ\\','wp-content/plugins/wordfence/images/flags/mo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fO};ë1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7*\"{\\nK<','wp-admin/includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/bmOdNL	iX',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?8\\Z\\N','wp-includes/ID3/module.tag.lyrics3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K׬㑎\0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^L9\ZY\3q','wp-content/plugins/wordfence/images/flags/lv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cm\\|._',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\I\\\<꟟iU','wp-includes/category-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\uW\\dai',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\H\\\\|','wp-content/plugins/wordfence/images/flags/hr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\3\\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\\\\1\tƋ\<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nEؙ]_)t/\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B]nȄ8\7g','wp-includes/images/smilies/icon_rolleyes.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȼ\_\Ҹ*>,\Z\Z!j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\D\\Z{ah_zO','wp-content/themes/twentyeleven/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z$ߗB֢zQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\! sȧyI\r\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-libs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5&-\\X\5\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MjA\MO\\"If','wp-includes/SimplePie/Net/IPv6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fy!jـ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\C=D	ٰSn\`\','wp-content/plugins/page-links-to/languages/page-links-to-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p.\09篆\\'\\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\c\'\\)[R','wp-content/plugins/meteor-slides/languages/meteor-slides-nb_NO.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\w\6\'\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'yV\viЏRD47','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/p.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µU\\K\0\rk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P+U\F4\1\','wp-content/themes/twentyeleven/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J%#f\5S\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\OjN!쪊','wp-content/plugins/tinymce-advanced/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_9E\rj\nd\0\m2L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\xM1>\_8P\0','wp-includes/js/swfupload/swfupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\E%ρz\s~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\O~oHm','wp-content/plugins/tinymce-advanced/mce/contextmenu/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(qC<ŶY\nX{E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\6dx\D\\','wp-includes/js/mediaelement/background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p<eKc\\c8r~\0l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\0\\A\Z\QbL','wp-content/plugins/header-footer/codemirror/mode/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\\vR\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D#Ia4*xM,','wp-content/plugins/wordfence/images/flags/wf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/c\  k=O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'w9K\'VhK','wp-content/plugins/meteor-slides/languages/meteor-slides-sr_RS.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N**_Y3X+I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1f*lwȐI','wp-content/plugins/wordpress-seo/images/banner-local-seo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z1\\\\˹u}R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N\\\'cp\n\#\0','wp-content/plugins/meteor-slides/screenshot-2.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ze欀6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\B{\\1Hz\\d','wp-content/plugins/header-footer/codemirror/mode/clike/scala.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0dQ\h\w	g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n97I.Oҝ޿','wp-includes/js/heartbeat.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\톙@\Cm',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pyGcqy0b\']\','wp-content/plugins/header-footer/codemirror/mode/xml/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\WAxt߄Jwt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/\b.\q\\','wp-content/themes/twentyeleven/images/headers/trolley-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(ne\\3\\"py',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\clp\,j\','wp-content/plugins/wordpress-seo/images/Woo_130x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cEn9\"ɽC\\q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\h+B\\\','wp-includes/js/tw-sack.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\7ē\n\̄',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\\"\vh\$Lb','wp-includes/js/imgareaselect/border-anim-v.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \z!<7\\\\*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'yc\0Og)ρMf','wp-admin/network/site-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j@\~%\\xs',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\n5H\?\\\\','wp-admin/css/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ٻF$4<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M$!\\\z\','wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\3<\\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'juGCtO\\\','wp-admin/css/colors/coffee/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"rü+\\w\\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'W3|\\xӕr֜','wp-content/plugins/wordfence/images/flags/kw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Lݺa\ft5\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l.H|S\{','wp-includes/js/jquery/ui/effect-transfer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ި\0w}\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\anV=Ty X\','wp-includes/SimplePie/Copyright.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hT\	Ù\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C!\\A','wp-content/themes/twentyten/sidebar-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\MܓӼ|ELc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'czKs2DCX','wp-content/plugins/tinymce-advanced/mce/advlist/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q>n\i\l0A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '} yT\Z\HcDJ','wp-admin/js/custom-background.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\#Y>W \e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0-@y\eGi5','wp-content/plugins/page-links-to/languages/page-links-to-nb_NO.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\ \\`XIH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{\0l(Ʋu9,wS\u','wp-includes/js/media-audiovideo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h \\^\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\zr0uM5_\','wp-content/plugins/wordpress-seo/js/wp-seo-admin-gsc.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\pyYGstn',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' \A$ۤfCN37','wp-includes/query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';qN\\\n\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(ה\W\h@=a','wp-includes/images/smilies/icon_mad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '׾ie\Zc{\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '61JKgO 8 ','wp-content/plugins/wordfence/images/flags/es.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f).>\'Ե\R	w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'QB xMB\a','wp-content/plugins/wordfence/images/flags/at.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\\"O;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R)ԡ`Pgٴޮ^','wp-content/plugins/wordfence/images/flags/jp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^4>B\DY\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'RLSf,@L=\.','wp-content/plugins/wordfence/lib/menu_activity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Z\!\\$N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[R	[^\V\\Z]','wp-content/themes/twentyten/loop-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s!!~+㱑~l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vό\Y9\','wp-includes/ID3/getid3.lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\psQF\\\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '֗]NR\S{qv?','wp-admin/css/wp-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ew@3u|˻',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'GW`\Lh;','wp-content/plugins/wordfence/tmp/configCache.php',0,_binary '2fWM\^',_binary '2fWM\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+Ϳ#FtEǍ7','wp-includes/js/mediaelement/froogaloop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*B\\#D\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$jX])D:','wp-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\i\A\>\'\ж',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*z3x<Z*\r\D','wp-content/plugins/wordpress-seo/js/wp-seo-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c|$lpQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LI;;\N\s','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/blockquote.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ͫ 3j.\\j0pt6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b\\r>','wp-content/plugins/wordfence/images/flags/mp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '冒;A&n\=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j%Mɍ\p)Z\','wp-admin/images/generic.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'[#98!\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'za_5`Z&\Ha','wp-content/plugins/meteor-slides/languages/meteor-slides-nb_NO.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nl3	\~g\0YtΉ;Zh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '){MMbh\D','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_idea.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H6qe\\F>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\B]F\u/д','wp-content/themes/twentyeleven/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\wѷ\\\kc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;(Xp`ҙ\\pݷ','wp-includes/js/plupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\`a*6Y$\qpM\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 't0\ga/\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\%\ցl R\n1O\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Hh}P6җ\01\"','wp-content/plugins/header-footer/codemirror/mode/css/gss.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n/:}a\'n.h\0\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nqo\qZVyX9','wp-admin/includes/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X&Jʅq.\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r{\굹\"kf','wp-content/plugins/page-links-to/languages/page-links-to-ca.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ҝ\i\Ng\;V۾\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z{g\}f\-\0\n','wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<{ͧ2t\h\\2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\Z oo@ \)','wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ՖےHƹ\FZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ư	\'CԻ\ګ\Z','wp-includes/images/admin-bar-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\:W\\\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'vc\I\V\7','wp-content/plugins/meteor-slides/languages/meteor-slides-cs_CZ.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\vʶÐ\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\Z0\0ؿeԦp\','wp-admin/css/admin-menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>d\0?\h\/\\!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\x8[!>X','wp-admin/includes/class-wp-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\\>j\\>o\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\E\\&H)۪\\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_MediaFileUpload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aα\	ꥺ;Aj|W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	[0079xv','wp-content/plugins/wordfence/images/flags/mv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{)jJ{l\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\m$\\xH4\','wp-content/plugins/wordfence/images/flags/ba.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\DX,\Jy$\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\KK2iɈ','wp-includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\IDǅ<}F>UJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'f\\UڬQ7\l\','wp-content/plugins/wordfence/images/flags/sprite-des.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9VΙT3\\uq\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y\g\zaU\"	XKG','wp-includes/js/hoverIntent.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʳYCcOnכ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-h\f\','wp-content/wp-object-cache.php',0,_binary '\qϖئbR\ڬ0\r',_binary '\qϖئbR\ڬ0\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v{LJlōYz\`(','wp-includes/js/thickbox/thickbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Rj\oAYx',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Oƚ͉4\\	[1','wp-content/plugins/exclude-pages/locale/exclude-pages-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '40L?6gtz\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ti\qTl}','wp-content/plugins/wordfence/images/flags/qa.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E2\́|n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7=\$\\=h\','wp-content/plugins/wordfence/images/flags/jm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\rmϓ6\f\k\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\VטO|8}','wp-includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')݉:ث;\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V}Pm/|I*\','wp-includes/js/customize-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!0&\q\\0~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Wb	\@%A','wp-content/plugins/wordpress-seo/css/adminbar.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 2i\j\\:=>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'djW[\y\ϊ','wp-content/themes/twentytwelve/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\2y\_8\ZY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.v8-rJŕ\qQ','wp-includes/js/wp-auth-check.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]k\Z!V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n\\4ۆ\x\','wp-content/plugins/wordfence/lib/menu_twoFactor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HO\yGT)T`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\E#wŧj','wp-admin/includes/image-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\o	z\*\\\R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'jUWO!\Ul\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@K\{~tbYb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Qc$2\6.i','wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ');7/E\w\A\\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\. _Sˏ\tŲX\','wp-content/plugins/wordpress-seo/admin/views/tab-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѯ\_\aS1\\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\\|\-\','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6t',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!HUN&\\"\z','wp-admin/css/widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\\\)0\\xC\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'atU\q^!\0ƣl','wp-includes/post-formats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\ґVȔ$L;Cd',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kzߣ\\\bo\R','wp-admin/post-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\6>!?~E\\De\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@{J\5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U,:)؋\"\QqY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[{\\\q\\B','wp-content/themes/twentyeleven/images/headers/willow-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wޮ\0S\oݡ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\\6	\\׳','wp-includes/ID3/module.audio.ac3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NE\p:AZ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\TV\\\','wp-admin/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n8]<\Ĕr\W7@W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ܵ[Ҳm%6S8:D','wp-includes/images/toggle-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\·a\;\d\\*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!ެ\߳\p','wp-includes/images/crystal/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A>)*/\!\-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\>\0%lD[T','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\F\"\I~\0GͲ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/\ȯȩsc\"ҧ','wp-content/plugins/wordfence/images/flags/cd.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\jmk\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>s-T\eIc\)>*','wp-content/plugins/meteor-slides/images/prev.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\9GXsW0\dd,=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\<d\Q\8\\','wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\FJXc\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g\RT6KX\\\\\Z\','wp-content/plugins/wordfence/lib/GeoIPv6.dat',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h[\0d`\Ф/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'hFuQe \','wp-includes/images/wlw/wp-comments.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\6]P\\\\.s\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\f0\\ͭ\~)','wp-includes/fonts/dashicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\\\a\rI~t~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\FV<vHta\S','wp-content/plugins/wordpress-seo/css/yst_plugin_tools.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ȽR1,lC\&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\9N_KȰ\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Verifier.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\0\'5%\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2|5KW\Նp','wp-content/themes/twentyeleven/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3T\@#0f0(m\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6|;;8\Q4k','wp-admin/install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jH\H.Ӧ%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9e\Ebݾl3','wp-includes/js/wp-lists.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't|r5\\xŇ\ґ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\2#jX&\j^JV#','wp-content/plugins/meteor-slides/includes/meteor-slides-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_O\/\\\nһ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'yU\fV?','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-category-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J?\\N\@D\b\Tb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z5o\\#R\'/l','wp-includes/fonts/dashicons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '΢6d\\HD\\Qك',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+4rOD\\Z,v\','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_cool.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\>\!G\\Ȍ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E?\Юᾠ','wp-includes/js/media-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԣ~蜿\\gį',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'هDf8A\6[\','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_confused.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\U\<u}\n\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Cg}|\E','wp-admin/js/word-count.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\̮E\^:\/_\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',#N2m\\\bj','wp-content/plugins/wordfence/images/flags/ne.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̭BIn\C s\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	vO.|ߤҵ','wp-includes/js/tinymce/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\t\"ٞ3[t|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r;\0\\I\\','wp-content/themes/twentyeleven/js/showcase.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LzX\'\ou)m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kl#Wwk\','wp-content/plugins/secondary-html-content/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\Z\ϟ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`9?/jH~oTaNf','wp-content/plugins/meteor-slides/languages/meteor-slides-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AYQF/Ǳ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ȳ\jSQ4\\p','wp-content/themes/twentyten/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӳ\'U<g\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b|e~\','wp-admin/css/customize-widgets.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2?[<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';cS\#nv','wp-content/plugins/wordfence/images/flags/af.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5{dQ\Ü\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0h\Kf\0','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\0/3e4e\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\PEwS_h\\ύ','wp-content/plugins/header-footer/languages/header-footer.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L#K!O>dT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' \dlķ\\޾4','wp-content/plugins/wordpress-seo/languages/wordpress-seo-ro_RO.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\F\6=\`\\\\\1C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\8(\Zj\Z]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&`\\\f\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')\Z`\O\k+\Ug','wp-content/themes/twentyten/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\MH\n:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B\Z掶/_','wp-content/themes/twentyeleven/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\6CkIW\w% ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\\\g5(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7I \1FGuj^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pt_ Y\7L\Kt','wp-admin/css/deprecated-media-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{aPtX?AIY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}\3(\7f\r\Kd','wp-content/plugins/wordfence/images/flags/us.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŁBb\/\'x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TDF\K1\','wp-admin/css/media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\{\%\U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/GΞӶ[ǜ\\C','wp-admin/js/gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K~l\\\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\[/9}`:w\P','license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '98\v\h\ZP֡>q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\\.}fwA','wp-includes/date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\<\OI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8\\\Jl;\ؓs\r','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=`w\26\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'O:\\\u_Op','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-plugin-license-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\Z\y\owђ\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[QH\"pS1Ȫ\c','wp-admin/images/arrows-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Q}\ydb#6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\&l\r\n*p','wp-content/plugins/header-footer/images/social/square/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\2`\޹_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[ixTq\\~Wve','wp-admin/network/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?͚GMXZ\ri=\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ٓ\3\I|qg,','wp-content/plugins/wordpress-seo/css/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\EN0\\6','wp-content/plugins/wordfence/js/jquery.dataTables.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aG\\z\\\\׳',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\)Ut>;>	','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-theme-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mΨDx긠\X',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\$˺xaX\nN','wp-content/plugins/header-footer/lib/easytabs/tabs.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\&*S(o(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\BJ*f\i^\0','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\lX.\\\@u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~E/ \3#/P9','wp-content/themes/twentyeleven/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YᴄRYڏ7\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\L\%@g6\','wp-content/plugins/exclude-pages/screenshot-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dhjGW\n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z-x7\(A\4\','wp-includes/js/swfupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\[`\^-oQWz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1W;cN\"\u','wp-includes/pomo/streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q;\}\,ʠ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4=cGHͺw\','wp-content/plugins/wordpress-seo/js/jquery.tablesorter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7jB=eb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\qE\Z!HY__={_\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y6Mz\'\\x!3','wp-content/plugins/page-links-to/tests/test-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '΋=\h\A\xC.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_j,\TL{','wp-content/plugins/wordpress-seo/CONTRIBUTING.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ɠ\d`2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'aS\\ZM[h}#H\','wp-content/plugins/wordfence/images/flags/my.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_Z\f ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7M3\$\','wp-includes/images/smilies/icon_question.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\'u\&EqA\mN',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2@\k\w>K2','wp-includes/feed-atom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\q5B4\\D\nW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8K\\࿬8\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'wtH\\-s\0\n','wp-includes/js/wplink.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$myle\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\LǊ3\\mKMh','wp-content/plugins/wordpress-seo/frontend/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EЛO0cAg3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\=֬H@-i\','wp-includes/css/admin-bar-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u`\nL&6;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\r>[\?Rg\Te',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^\'q\\0\','wp-links-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\c\\vIl\mf',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	#J_4jU\0','wp-content/plugins/wordpress-seo/images/News_SEO.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"6\22(\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\1(\\\Ioh','wp-content/plugins/wordfence/images/flags/gn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\>\zI\	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '%n\Tߒ	^\gXΰ','wp-admin/js/inline-edit-post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vӎ\\\}_\\\n)\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!\4r\\]\','wp-content/plugins/wordpress-seo/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\R`V`tc\:`\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')D~L:թQ \o','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\{0lMD=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k?n\2u\Q','wp-content/themes/chimod/page_home.php',0,_binary '\zeF/\r',_binary '\zeF/\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/\?[xL\"N','wp-content/plugins/wordfence/images/flags/md.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\ok=h\\\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' -\A&W','wp-content/plugins/wordfence/images/flags/bn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zD\\(+J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5\\r\k\\','wp-admin/js/color-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2dMM\\T\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8\P5aĨ	','wp-includes/images/smilies/icon_wink.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZOZ\g9\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '{(`O&\@\','wp-content/plugins/page-links-to/js/new-tab.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'lz \|\\<- R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y85\æb\','wp-admin/css/colors/sunrise/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cp\LItv}\\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y8\\rڳ´zC','wp-content/plugins/page-links-to/page-links-to.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@n\[{e\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\nKnEH[_\t\\Z','wp-content/plugins/wordfence/images/flags/cu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѻ7\ν-T\nĤ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N<RрD\Fv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;\?\i\\_pl','wp-content/themes/twentyten/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XY+\X~c΄\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\U$\\\*\1^S','wp-includes/js/jquery/ui/effect-clip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǓW\#GZas',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'P\Z\/\l%','wp-includes/js/jquery/jquery.hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '┃\&݋\rFư\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\@HvSa\Z\\','wp-content/plugins/wordpress-seo/admin/class-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\e\,\LZA/f_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n%f[!aEr\tgi','wp-includes/images/media/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\h\\q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#>\\҆\Kl','wp-content/plugins/wordfence/lib/pageTitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HhI\!S\??k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&S짿o$\0n','wp-includes/author-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l@Ñ\rP>\itz\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'AmK:`\\\G','wp-content/plugins/wordfence/images/flags/eg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't{-/9\ME-\\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G|$p֠+(','wp-admin/js/tags-box.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tf\\\  \#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\ԁ\27u\L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rf\\W\)˩\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\rG\Nߒ@','wp-content/plugins/header-footer/images/social/round/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '΄{\rc()\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ѻ\"\P5\\^U\Zi','wp-admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',uJ%yZ.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm\z4\L\K','wp-admin/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)X`1\H\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\AG,\<','wp-includes/js/jquery/ui/effect-fade.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\OO_;{r5$m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"\\T\FOvų\a','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EWMi6\=<*@}m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\<\p\Zo@Sq\','wp-admin/includes/class-wp-press-this.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ī\MJ\(6Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' n$q\^qf','wp-includes/images/smilies/icon_lol.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\Z8|,\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'}H W\\Ԝ\n{','wp-content/plugins/wordfence/images/flags/ad.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Z tV[E؜K',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*Tu\r\\\~m','wp-admin/css/colors/ocean/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 8J4ZJf{\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'E-j\\1j\\\r\E','wp-includes/registration-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_?<\\&TxH\XCL',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\<\x\B','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#x\\cʋzYE',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\ʖό}S\','wp-content/plugins/meteor-slides/languages/meteor-slides-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ȒЪk\\\q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\p?E^@\'\PE\','wp-admin/edit-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')OI=4]VyK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r\0*\\R\','wp-content/plugins/wordpress-seo/languages/wordpress-seo-ar.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\6\*w.Oہ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5d0MG\\\Z\\','wp-content/plugins/header-footer/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\4\D:\{\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<(\\*A]O\','wp-admin/css/colors/ocean/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Pjģ$\fV',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F+Dh^D\J','wp-content/themes/twentyeleven/images/headers/trolley.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\\wSN\jK\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'bv\E\H\\\΄','wp-includes/js/wp-lists.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\L\.+#/*إI08o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\|	?\\\OX','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-permalinks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\ө?Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&U\D\ɱ^','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z֡(y\.+2}J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&N\,\6P','wp-admin/images/icons32-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*04G4F	&Zi}\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd\#a\8\\-','wp-content/plugins/wordfence/images/flags/sa.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\LbU\Ch5\V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'qhBc92\','wp-admin/network/site-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!l|\2\\V_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B\¾\CJB','wp-content/plugins/wordfence/images/flags/cs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Zm\@\nn\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'd]\0F\mŲpD','wp-includes/js/tinymce/plugins/media/moxieplayer.swf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NY\N-3Yj\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<ʍ8P\0\\=\0+','wp-content/plugins/wordfence/images/flags/om.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z,;Y\O]&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`%{\\+','wp-content/plugins/wordfence/images/icons/error128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\%7!.\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\\Q-\','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\#%Z\\,3I8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\і\q\\SGKy(','wp-includes/kses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\LŊ[\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Eq*֞b\a(','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_redface.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ЕC,uǂ\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3nR`Eً0','wp-content/themes/twentyeleven/images/headers/willow.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	{j\'͋\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[Hn[P\.~\FU|','wp-includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7hޝ:޿\-7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z\Zxcyd\'','wp-admin/js/language-chooser.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\"8Jq	t\\F',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+>\\o\ґ','wp-content/plugins/wordpress-seo/js/wp-seo-bulk-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\"Y\\\D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\fV\3\Prk\','wp-content/themes/twentyten/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\C\0~WQ\uA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'YPiݚ3v','wp-content/themes/chimod/index.php',0,_binary '氺\\F[s-,5',_binary '氺\\F[s-,5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\:x\=\}','wp-includes/js/jquery/ui/mouse.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8\']\!Iٲ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\H\a+̰I','wp-content/plugins/wordfence/waf/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-?\{z\Rty',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\y\&aA7\]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%B\ng2;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R]ʩ-kD:ֆ','wp-content/plugins/tinymce-advanced/mce/emoticons/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"S\r!O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\\y)v|\\r','wp-content/plugins/wordfence/images/flags/to.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\'K\^e\jJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' a\"KwT\bc1S','wp-admin/css/revisions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\\tpp\P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*j\\ʯ`\\x','wp-content/plugins/meteor-slides/languages/meteor-slides-pl_PL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\/a\M\\\v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0\&Y\\\','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JJ˭9FN=\\O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '31\	y\','wp-content/themes/twentyeleven/content-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4W-O؏',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4ge\\\>\ߝ','wp-admin/images/list-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hջIS\2\ig',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'fkj\NUei4=%\','wp-admin/js/tags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/I@\!{hL\R\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h\\R\\vh\\U[W','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_P12Signer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/fX\\\Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y%\\Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K \@\\W<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\,{H\Ĭq','wp-content/plugins/wordfence/js/admin.liveTraffic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#,3\\\0hdD',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';ے ]q\\0','wp-content/themes/chimod/page_bathroom.php',0,_binary '\$\m\i',_binary '\$\m\i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\5|?\\\\)L\','wp-content/plugins/meteor-slides/languages/meteor-slides-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P8\'}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0l<\n0\Zӡ','wp-content/themes/twentyeleven/languages/twentyeleven.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gzq\\_>}z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1\o%q\A','wp-admin/js/inline-edit-post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~{&\diY\0\\\*z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'NO\\l^\_3(cC','wp-content/plugins/meteor-slides/screenshot-7.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H/\\gb4j\N\\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h\\GWSÔLp','wp-content/plugins/header-footer/codemirror/mode/css/scss.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\'rz#\\AQ#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\\܀xMGL\\','wp-content/plugins/wordpress-seo/vendor/autoload_52.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ܘ\ZW\L\p\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&\Iej\mz\','wp-content/plugins/meteor-slides/js/jquery.touchwipe.1.1.1.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vJ$\,\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\F{\A','wp-content/plugins/wordfence/lib/sysinfo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zi\TT2kU}\٤',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\E\\\Q?\\	(\','wp-includes/class-oembed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-fOÓf\|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.݁BxKY','wp-includes/ms-default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ӱeu`\.@7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '*O-Lτ\\\r[\u','wp-admin/css/about-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/v\R)\Z`E!Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '??n\\\\_2gj','wp-includes/js/wp-util.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\n\%;\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@[\YSb\\\$+','wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cxg`+7R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'y~/ݺKJ\ߡ','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Signer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xvmZj\\M1l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'hL=\FT\\','wp-content/plugins/underconstruction/languages/underconstruction-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M\"n8\\H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R;lzO\8m<3Nie','wp-admin/user/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˹\\޳Ht\i.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'afh=F\\T\:6','wp-admin/includes/class-ftp-sockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\\[\\6+\'<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\;~ӷR>','wp-includes/class.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\\ns? Ei9{w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nvpe\\\\\}\','wp-admin/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|T\ח\n%\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tI@\,\\([','wp-content/plugins/wordfence/images/flags/la.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zrΐ\\B\0/>~i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[k|;qX','wp-content/plugins/exclude-pages/locale/exclude-pages-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fU\\B\k}\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ϵ.Je4','wp-content/plugins/meteor-slides/languages/meteor-slides-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*e9\aAq=-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\yc%:\\\o\','wp-content/plugins/wordfence/images/flags/um.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=G\\0	-\k[\\ԇ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\{\b:n','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/framework/class-yst-license-manager-unit-test-case.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zxuy$q\\\q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(|n\sARF\+','wp-includes/js/crop/marqueeHoriz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̮;\\\Lo\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ':[&b[hY','wp-includes/images/smilies/icon_razz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\˭\\=J\@\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ܽ<x)Զݥ\Z8','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\\]}\\X\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\	<2q\C','wp-content/plugins/wordpress-seo/images/banner-website-review.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)3,@Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8`9\?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ImlcG@ȳ \',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Q\\B','wp-content/themes/twentytwelve/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\HIW_zjO\$M;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\\l\1\_\','wp-content/plugins/page-links-to/tests/test-saving.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<$\\|ÿ\^~\`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_v\`\SQ','wp-content/plugins/exclude-pages/locale/exclude-pages-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xe\]]y&b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';hXZ\8y\','wp-content/themes/twentyeleven/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zk\\8F2Y\A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c\̎$\n\'@\r\','wp-admin/setup-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\K[D+^\/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J1M\F<','wp-admin/js/tags-box.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Kn\<סx٩',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?ڟE\$PF','wp-includes/pomo/translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fWۥ\\"\0Dwf\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+d˿o\X\','wp-content/plugins/meteor-slides/languages/meteor-slides-tr_TR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%ǒ8\9{ \\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\6bg>_','wp-includes/images/wlw/wp-watermark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';uMmܭD|w\D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\DNC\|\\Kd7','wp-content/plugins/wordfence/images/flags/th.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-(\o)\\\o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\r#D\je]w','wp-content/plugins/wordfence/views/marketing/rightrail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\j˭RLW#\g\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Hc1ް=','wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Cw蓱qA\\'?\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' (T5!\h\u','wp-admin/css/press-this-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\X\A8\V\\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\?\Gc	¯l1e','wp-includes/class-wp-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lp61ޛ\CG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@VTL\'\~i\','wp-content/plugins/wordpress-seo/admin/class-yoast-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\%.t~Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HPw\%8','wp-includes/images/smilies/icon_sad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\'=\Oj?\uA|\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q49\Lz\J','wp-content/plugins/wordfence/lib/wfUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\$\rJ\2QQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'W@\f6J5M	B\<','wp-content/plugins/meteor-slides/languages/meteor-slides-zh_TW.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v:)8\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[\n\G{\\'q:','wp-includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Y+\W\\+Ŗ Lp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\h RX\<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G,ΰ\\ڏ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\a*r1Y\׳]\I2A','wp-content/plugins/tinymce-advanced/mce/textpattern/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A;\(\\{\wC\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ȁ\~_q\I\S','wp-admin/js/password-strength-meter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1|=m\U\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\D >F,\','wp-admin/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\FzehV\\n ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ˬ*%\nr','wp-content/themes/twentyeleven/content-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"=g>D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\SQT\\#kN\w','wp-content/plugins/wordfence/images/flags/nc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\\Ox\m\|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\1e%	a<RZ','wp-content/themes/chimod/page_estimate.php',0,_binary '\e\F\Ueu>',_binary '\e\F\Ueu>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\^,^戉8\\','wp-content/plugins/wordfence/images/flags/ch.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7_\Ze\\M\\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6\\\\	4	T\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6gO5|\ ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e/\M/','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_LoginTicket.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@n=\\}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8P}vNV!=L$','wp-content/plugins/tinymce-advanced/mce/print/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#*\\y\>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Bw\:՗k\.I','wp-content/plugins/wordpress-seo/frontend/class-breadcrumbs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F@qqɟ~P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LT\\?\','wp-content/plugins/page-links-to/languages/page-links-to-sv_SE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\X\Z\8\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\	mm\.gP\W','wp-content/plugins/wordpress-seo/languages/wordpress-seo-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&\/<ӖUQZ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iph\ZIv4\=\9','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_rolleyes.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zn\\l\ak',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=CѠ\\*TX4','wp-admin/css/colors/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':	k\Z	r\LZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ \\It13&','wp-admin/js/nav-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"YG]\\Sʫ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';?2\\S\\0p','wp-admin/customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[8A\g\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\\@\%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm]a\\$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']\.\1\rPXL','wp-admin/includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\nmz/\\:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'w\\\}\%euV','wp-content/plugins/wordfence/images/flags/sprite2.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '} oĘ_2\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Fݗ`*4޻','wp-content/plugins/meteor-slides/languages/meteor-slides-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T͞\|BJ\!aţl',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\| ','wp-includes/js/masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iq}Eigo@\\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\v{C\ҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	qN\K80O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\p$^dZ','wp-admin/network/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kOy_4)\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\[K\\b\\28','wp-includes/pomo/po.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6+\0n\_HSl\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\X\Jp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\))Kϻ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ol>\x~I \','wp-admin/network/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\=\SV\\V\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0jlS\K','wp-includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eR~\O\;eVG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '«\-j=uN\\q\'','wp-admin/css/farbtastic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8)\}{Ch2U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ᗏ\3-4','wp-admin/css/colors/midnight/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FӍW\\\&%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"ڕK[@G\\\9','wp-admin/includes/class-wp-theme-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ug\\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3!9\=\6ݡ','wp-admin/images/resize-rtl-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ɞ\@T0:\}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm7v,1R.vk','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0fHpg!NO\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ',Λ36\L\!\D#','wp-content/plugins/wordpress-seo/languages/wordpress-seo-fi.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޓ\L\\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\D)\\r2\f$^','wp-content/plugins/underconstruction/underConstruction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '],37\b|.ZH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '&.E\`\Nz\','wp-content/themes/twentyeleven/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\*c\'R}\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')[\"JH\|\jk$','wp-admin/js/customize-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q*N\>\˘\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'JTV0D\oTA［@','wp-admin/options-discussion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c{7\ֺX\.tR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X,9\|!1\!','wp-content/plugins/meteor-slides/languages/meteor-slides-fa_IR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\'\K\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'yx\Zu\\@\\\','wp-content/plugins/wordfence/images/flags/nz.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H/ ^\"\q\\t&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\h\\\S\%Tz','wp-includes/js/mediaelement/wp-mediaelement.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؒj\F5ρacR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\"ܒ\\nzD','wp-includes/SimplePie/Caption.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\BjMg[\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\nu\oK T;e','wp-admin/images/list.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>*\ӳ\S\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Uy/*%\;','wp-admin/includes/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9\`oI},סQM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rE\U\̈́\\','wp-includes/images/wpspin-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\3\Y\(I\m',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\sp\\e','wp-admin/includes/class-wp-ms-sites-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i6\|K{h',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-18;T/X\]','wp-admin/ms-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']b$\\\qh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\䷆^r\\.vM','wp-content/themes/twentytwelve/languages/twentytwelve.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zs\\TDiƐ8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D6v\Vc;l\','wp-content/plugins/page-links-to/tests/test-js.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\˿D\SBw\:\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'IY	v1BI\\\'\','wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\,\C\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\\\f','wp-content/plugins/tinymce-advanced/tinymce-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\\j}K~o\ŧۑ-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xʈp>kOz','wp-content/plugins/wordfence/images/flags/rw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ł/T_n\QE*Pk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ρ~\ߓ:\\\eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ğch4\"\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\fP+\\2','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'];A*D3C˭\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(5\aHyo,X','wp-includes/js/jquery/ui/tabs.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gUZD\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sYFPZ6\,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '1=s;@V\m','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_evil.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U?\êy\s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\k8Kݯ\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-license-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Z~	bp8h\\6\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ر\0\ReU\\\b\&','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-theme-license-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\')j2<nz\8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'LyE{f','wp-includes/css/dashicons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UY\V=}W(}\.N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\UL\ǡ$','wp-admin/ms-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H#\f{#ʃ	6G\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'o?Dj!gӭ\-','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U*0M\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\yqnWitK','wp-content/plugins/wordpress-seo/languages/wordpress-seo-bg_BG.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y֠n\/܊\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\{^W\\\C','wp-admin/css/colors/ocean/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lv,|\\\"O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\e7Fr','wp-content/plugins/tinymce-advanced/mce/anchor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\N\"D\nKD',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-]\r~(#','wp-content/plugins/wordpress-seo/admin/class-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\$ZӤF\\H\l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '݌\)ƫ\\%\Z\\','wp-content/plugins/wordfence/images/flags/ie.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\O&\-q9fF\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '˄v\\+nG\','wp-content/plugins/wordfence/js/jquery.tools.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:-\Eՠx$\B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.{\\Z	޺`','wp-content/plugins/tinymce-advanced/css/tadv-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[c[W;wr04EH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'C\r.3\\\rT','wp-content/themes/twentyten/author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K(\H\r[d5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M|t/틎?\D','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Op{\p\{fNZ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_f\;w\a\\ځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_PwPU\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h{nV\"\0\','wp-content/plugins/wordfence/css/jquery-ui.structure.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\@1D\?\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u\\<e\x@ֈ>','wp-includes/js/underscore.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'THkzd..',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'q?%\rp07\q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H<S-g\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ƄH\3H\׏!','wp-content/plugins/wordfence/images/flags/bs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\sYI\\\}\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\pĊXA\)8Kʂ','wp-content/plugins/header-footer/codemirror/mode/php/php.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\́}\0 b?7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B6[sM','wp-content/plugins/wordfence/lib/wfCountryMap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']hF3\\k\;u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x\Й\)DC\<','wp-includes/js/customize-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ ҺzCpOEa\V\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~U\"\&\','wp-includes/images/wpicons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\V\o$Of~7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\W2\\DG7V','wp-admin/css/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\J<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z5VyƎ\','wp-content/plugins/wordfence/images/flags/tr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Js\^R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6cI	@۞o\\','wp-content/plugins/wordfence/lib/menu_scan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Autͽ\`Ib',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Vb(ktW\"\6(;ƴ','wp-admin/includes/class-wp-media-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K4l\\^0W9\\r	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'tfF	\r{܇_Ix','wp-includes/SimplePie/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R.\b\\~\\+\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'b$LD)$\ȅ','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/dl.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>2w9-&;N`W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '߲;0\\','wp-includes/feed-rss2-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<7Uv9Q\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'S\\	SSo','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/Google_Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\\\#q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'sF\"tOߓ;_*.','wp-content/plugins/wordfence/images/flags/dk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\Dn~WMտM\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\%+go\)K','wp-content/plugins/header-footer/codemirror/mode/php/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\A&\Go#\"\Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3T.^ƙ<\','wp-mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R:\߱5\$6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\K\\OȖ9\3|<','wp-admin/maint/repair.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';#\0\24P2pe\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ԧ\\\ZNem\','wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/i18n-module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\ZmIf3 \0\\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\\\.$U0]\'S_','wp-admin/includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J#\%sժ\ka.R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"TYHIٽ\','wp-content/plugins/meteor-slides/languages/meteor-slides-be_BY.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!+\\n\<6/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+DFܿTZ[H7','wp-admin/images/post-formats-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SlH\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'GV\\z#!;\','wp-includes/js/media-audiovideo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '86(H\_N\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Or#\TG!','wp-includes/js/swfobject.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',I}pe~2q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'l&*\\&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|r\iUb\lw\\\\3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r^,rKr\\0B','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/pre.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ь\&x\f??O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$(g(\P\\/','wp-admin/css/wp-admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɖu/o\`QS0f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\kM\\?\uX','wp-admin/css/ie-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	wʢ5յSl\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\qK\U\j\','wp-includes/SimplePie/Category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\?\.\nܯd*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\-Z:E:','wp-admin/js/image-edit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ɡmz\4n\/GX',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\m\rcV\D\Z','wp-content/themes/twentyeleven/sidebar-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uA\7%e?\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ru \26','wp-content/plugins/page-links-to/languages/page-links-to-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\	e	!\Ĉ=2w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '|jX\|\fb','wp-admin/css/login.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HtU\R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M=\\C_\\\n','wp-content/themes/twentyeleven/images/comment-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Lg0g\n27\\3@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'MR\l\BFu','wp-includes/option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!+\1,\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\\\j\A$','wp-includes/js/customize-base.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\0g\Z\ν',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\"Sέ`t@','wp-admin/network/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A|\MM0\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\\.1\-:','wp-admin/options-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\31Tw&;\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ΝH*\*.ځS','wp-admin/includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\._%B)jA\Za',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ul1ȕDbmg','wp-includes/css/buttons-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zz\e\=\\"\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nfv8\1-I','wp-includes/SimplePie/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Kv&\<\\ڏ\S5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Kx\\\j\s\\','wp-content/plugins/underconstruction/underconstruction.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D|\\C\_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\D*,\t\u^','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4$w]\"\\Չ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ZQ4\\\\(܇','wp-admin/network/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\5Cs\	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h4\Z\F//','wp-content/plugins/wordpress-seo/js/wp-seo-featured-image.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\"֍p\\T(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\bhָ{-w(','wp-content/plugins/wordfence/images/flags/ky.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '늤>\@\|gH3\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\l\\\3Ȋ\','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ѕk\\#M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z\\\Z\쭹x\','wp-content/plugins/meteor-slides/languages/meteor-slides-vi.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'px;et(0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!@+\`(\V\n+','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';J\;\`ƒ nH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J|6}\P\,\rٛ','wp-admin/css/colors/_admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\W耢hL\\%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[:q','wp-admin/includes/class-wp-plugins-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\m[ދ\`\njܸ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'POf;\/\','wp-includes/SimplePie/Decode/HTML/Entities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E^/\\rBZ#%/a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ex\'Jb,\l','wp-content/themes/twentyten/images/headers/path-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R̰iedUn!Σj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\Z\))`o\','wp-content/plugins/wordfence/images/flags/se.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']eF\B\/$Iri',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ug\e\','wp-content/plugins/tinymce-advanced/mce/searchreplace/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S5Gk)\1(\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\ Iѻ\,','wp-includes/class-simplepie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ys\r	mD;.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '+$yz}\+.Z','wp-content/plugins/exclude-pages/locale/exclude-pages-pl_PL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\"\\@Ks',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4\EL\z\\c','wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\wa\\e[\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ln\U3\n\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\nx\\_sq\m\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '/&\\2ѡ\rgDs','wp-includes/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U oC\Ǥkޱ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ']=Q={ժ\.d','wp-content/plugins/header-footer/codemirror/mode/clike/test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZݽhW<m\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?0|\\5uơ','wp-admin/custom-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'إO\0Q-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'qh\nJj','wp-admin/css/nav-menus.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\&cDݱ\tq\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ÏuL\,\&Ǒ\r1','wp-admin/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2=KB\H\\B',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$\<@\Řa\c\"','wp-includes/js/swfupload/plugins/swfupload.swfobject.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̵qV7\T\\\s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'WM\\{h\(','wp-content/plugins/wordfence/lib/menu_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ZY\৻>FY`&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '``hȤ4eHm\','wp-content/themes/twentyeleven/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\򽩗\M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '`\!auwDOZ','wp-content/plugins/tinymce-advanced/mce/contextmenu/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~JUϡ?o\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a\@o\'\kb\','wp-includes/js/jquery/jquery-migrate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q+\Z(0\BY<\4:\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\^[X\i	\','wp-admin/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lg8pt.\ץn',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4T(\\\9\'\3)','wp-admin/css/customize-widgets-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\PO?$L\~\U\\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\k{\&x\n','wp-includes/class-wp-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ĸ\'3Bd\n\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\A0ff`\ Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '켘~d[!LA/9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '˴н\2\\','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';rn\"\\:\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\s\YX\㞗','wp-content/plugins/wordfence/css/phpinfo.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<`\,7\Ju\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\%3[$x\0\\.(','wp-admin/images/marker.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\*O2/\3I2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\4=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʖѴ~fi',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	\\\Em[\\l\<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\6_ \\N#\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x\\\aӮpMM','wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r{\\\A\E<\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '5Z\oҮ<','wp-content/plugins/wordfence/css/fullLog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Wjw˄}\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\n&v\p>','wp-content/plugins/header-footer/languages/header-footer-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Ht\E',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm\*3N\\','wp-content/plugins/page-links-to/languages/page-links-to-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FvTѓn	\5(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\ZgB}vv\K\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ܼ\'Zy{\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\nfQ8Wm\=R','wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#mI]Gb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\\"R\Ŝ','wp-includes/images/crystal/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ Ѳ#d%\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '70\{4J\"\\\\6\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bUy\ͅ\\\08',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v%S[̪Ѿ','wp-includes/ms-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\}zn\GNpܯ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '}O\ }\lG:Yf','wp-content/plugins/wordpress-seo/vendor/composer/autoload_real_52.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"j\K\]L\\i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HE1&Y','wp-content/plugins/wordfence/images/flags/bd.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\U!\¸\!s',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'B@\\	\\]i','wp-content/themes/twentyten/rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')eIZih\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\_\Y\0A\','wp-content/plugins/underconstruction/languages/underconstruction-default.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ƅ\/\r:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\X\"-{\\$48sx','wp-admin/css/deprecated-media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nڌe6|\\ZƦ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '4LE\\E-','wp-content/plugins/header-footer/images/social/square/pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',zZ2iů\n&5',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\9ѕFw\','wp-admin/js/revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AF{\~\r\'Y\i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&\\L!\\}Vm `','wp-content/plugins/wordfence/images/flags/mt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RdZP|iQ\މ{\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/j\\SACJF','wp-content/plugins/wordfence/images/flags/sd.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ڶ\-,\p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\i\CX\I\n3','wp-content/plugins/wordfence/images/flags/pr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\I\dMN\hJ\#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ө\:\:Ǟ\\FA','wp-content/plugins/wordfence/images/flags/lb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\H(W8\\JW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7\*I,\\\({G','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\lcc*~j=p*u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Eܖu㗲\\'\X','wp-content/plugins/page-links-to/languages/page-links-to-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\rN\r\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J95]I5\\nR\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/cache/Google_WPCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ǉ:9+xqo\f\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'N\\@(3','wp-includes/ID3/module.audio.mp3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\Z~e\J8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'h\\)UG@\x\v	','wp-admin/edit-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M{#kb\ao~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '([3?\H/[e]','wp-includes/js/tinymce/skins/lightgray/fonts/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zd+\\\E@\1\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\n7n:\{W6r','wp-content/plugins/header-footer/images/social/round/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o7hOp\\5,U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\(\]O}3C','wp-content/plugins/page-links-to/languages/page-links-to-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\7|Qd![',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\2]hqu:\T6E\U','wp-content/plugins/wordfence/lib/wfAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\^J)d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\"_eZC','wp-content/plugins/wordpress-seo/languages/wordpress-seo-nb_NO.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\gfP\e\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#AuI.F/\','wp-includes/js/wp-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ˋ8.r:ě',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<{,-\![M','wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\m_ҐsԥG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@\\,\n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\,sMPm',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm}\+s]','wp-content/plugins/wordfence/images/flags/lt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5.%V\zl\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'v\FI\2h\n','wp-content/plugins/wordfence/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@jh\oʣÇ	$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '=V;\\\N.K','wp-includes/js/wp-list-revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GQ\ru`\*L\n$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\RڸAOO\\o','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\vE\"M\\\M\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\0\ns?iU\S','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\xp\\삄\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ƿ\nH','wp-content/plugins/wordfence/lib/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lx>\\\zKK\b[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ْVQx*~ \g\m ','wp-content/themes/twentyten/images/headers/berries.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	8\.*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Κ,\Qagl\\Z','wp-includes/class-smtp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Pʄb.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'dA#\*\Źo7','wp-admin/js/customize-controls.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B؏f\\@\.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rq\3I=g ','wp-content/plugins/wordpress-seo/images/Local_130x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0>p3\Bfzu',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Q\~\jJ\D','wp-content/plugins/wordfence/images/flags/io.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\\ҲWWr\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\스>j1^','wp-content/plugins/wordfence/images/flags/fi.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(K\qi+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3\"(z\a4\8','wp-includes/images/media/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-oUʓ\\UU_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3y\uE1wĎ','wp-content/plugins/wordfence/images/flags/bm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|\\	\9eX',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ir\\	$M\Ӟ\\,','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ė\(\\2Щ͠{?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'kHm\1\`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\"[\W\T\l~\q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\{\Q\r\Y','wp-content/plugins/wordpress-seo/admin/class-social-facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nHԢ\o\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\R\\"Q`\2N','wp-content/plugins/meteor-slides/languages/meteor-slides-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iʥ[,\3Ш',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ٵ\nh\Jxdv\ԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(7\\\\H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\5\[,	j\(\ƪ','wp-includes/js/mediaelement/controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\"Ӭ?\Ȥ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\NC\W','wp-content/plugins/wordfence/images/flags/ap.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^d\rٍ_P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?#&\\?I)','wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\ t.D\bJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2zs4x\EB','wp-includes/ID3/module.tag.id3v1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\h؜\ٱal\w4\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'yn6Kz\9\G\','wp-content/plugins/wordfence/images/flags/ao.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Am$\٧wh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Obc\" \\\|J(','wp-includes/images/smilies/icon_evil.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\\VM<\"!.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\rJ>d\\>Մ\','wp-content/themes/twentyeleven/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L4DJY\r\\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\1WV(26','wp-admin/images/icons32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\۬[\m9\J4\\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\1|}\dQ','wp-admin/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-st?_\_J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\\g<bܜ\\,','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-xml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Pl|e\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\	1А々S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"h\r\c\\&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\.\B\|xӳ\\E','wp-admin/css/press-this-editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P`dL-#wM!\_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\C3!0QoJe `','wp-includes/js/plupload/plupload.flash.swf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\rvEROGҘt\\l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\_jSX\2\QQ=','wp-includes/ms-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ӎp\?k,\H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ä\a\Yy\A\\s','wp-content/plugins/page-links-to/languages/page-links-to-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '((\Im܄b,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\0\\mU\\#','wp-content/plugins/wordfence/images/flags/tk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X~\kdi\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\tnRؔ\\\%^','wp-admin/images/align-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\\Oe#\l@:P+\"v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ђ3\-\\	ZHE\h','wp-content/plugins/tinymce-advanced/mce/visualblocks/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\4\I_S%\`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\5\V\"$$\_','wp-admin/includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q5\ZZ)s][oK\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\iY\0\nR)','wp-includes/post-thumbnail-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e1L5R\rY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\uX\ݼ#-\\','wp-includes/class-wp-http-ixr-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tJr\P\?\bU\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\zknQm|Ǹtk\','wp-content/plugins/wordfence/images/flags/de.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\NbK\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ĉ^A+lod\','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7~!\\\\0\\\"w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'đ\ԪVCT\G','wp-content/plugins/wordpress-seo/admin/pages/licenses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Uqǝ4ʲqZL',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ĔԼ\\pPZ	H','wp-includes/images/smilies/icon_cry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E>z?ApmWlA\`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ħ\\p\ٕ<','wp-content/plugins/meteor-slides/js/slideshow.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\<L\'N01',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ĩD\\\$K','wp-content/plugins/header-footer/codemirror/mode/css/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\]@\CJ\Poh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'İ+,M}zH\1','wp-content/plugins/exclude-pages/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æX7\Ԃ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ĵ\Q\\ɳ7қ','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\PL\^\^\nҙ\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ʙ\0}\甠K.','wp-includes/js/jquery/jquery.color.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\E\G\>vJ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\TGۃ\g]`}','wp-content/themes/twentytwelve/editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\\\a.\\=̱\%-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\{A\mm\*K','wp-includes/nav-menu-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\{yE\-\2Qz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\`#\\GbC\\֊\','wp-includes/js/swfupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y,k?X\N0G\;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\i\we3CJ\n\','wp-content/themes/twentytwelve/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_;ĸܚ\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w\rSa\\*\m\\!','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '̇j\\\E\\\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ŗ\/PIcD=Y','wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':<Thzģ \\*ˌ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\-plE\\k/','wp-includes/js/jquery/jquery.hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S!}EU\\bgh=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%y\\ 2lΥ','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>WO`H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\)}XqF =\\\n','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/AsgardInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\\\Uv\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+\g\\q6^\0\','wp-admin/images/wheel.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E0 q0m\\ZY%VX',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\`\dl\'x[','wp-content/themes/twentyeleven/images/comment-bubble-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{t>\\m9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\f\\ԥ:1x%','wp-content/themes/twentyten/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r^\[!`v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\|Ë2B*\\0C=\','wp-content/plugins/wordpress-seo/phpdoc.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\\\\K6\'*tߺ\N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ƅ|_\i/y\	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\/~.SM\6L\5\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ƭ+\Z\Id^i <\0','wp-includes/js/jquery/suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uk7*헸Hޞ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ƽ\\~9\~籌','wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fu$\rWCH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=짹\An¨{\Y','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/.hgtags',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\"-r\\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ǂ-i).\\\\\z^a','wp-includes/Text/Diff/Engine/shell.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uAܑ\~J^t\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ǅ9\9:\Z','wp-includes/cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|G-\E\\B\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ǐ!\M3\\Zn}','wp-content/plugins/meteor-slides/languages/meteor-slides-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ѣw\5^M>ĚO\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\6&B\\Kb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ǫ\=\\m/\^','wp-admin/includes/schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Wy$\\Gm@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ǳ\\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lAE\\O87$(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ǹ\K*\\u҃\Av','wp-content/plugins/wordfence/images/flags/et.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\rP\\0%\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\-\\ْ\n\','wp-content/plugins/meteor-slides/screenshot-5.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͽjG+\}\-e\G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Z{g\?\3gڢ\Z','wp-admin/images/icons32-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%*\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"u@TS5','wp-includes/images/smilies/icon_idea.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"m%h\S\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Y$\'o\\','wp-includes/css/wp-auth-check-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gn+\i\7\Z\\\b\$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\n\94co\k','wp-content/plugins/wordfence/images/flags/sv.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v8m\kD\a\0\S6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\q\Y\\H\"\','wp-content/plugins/wordfence/images/flags/ee.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZVFY3\ZXL\\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ȍP\ \3\\\\n\','wp-includes/class-wp-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ͩt\\!rl{~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\W\r\\\Zl\OQ','wp-content/themes/twentyeleven/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uKU\	Vēj9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Qq\}ޅ[\r\<','wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\1\&\%\/{\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\~\r\ZK4(#\\','wp-admin/user/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \\ǀ[K}\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\uje˗\RA','wp-content/plugins/wordpress-seo/languages/wordpress-seo-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\dk\6,Ɔ\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\4r\n~Ö:ͫX','wp-content/plugins/header-footer/codemirror/mode/javascript/typescript.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\3\\u\V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\A7\'\C#wSs','wp-admin/css/about.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ɵ^Xl\|\rV\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\lXwB*XW','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oɧ\\*\X\9e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ɇ8\\pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm`1\"YpJ\+$\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ɉ;∷\`5\N~','wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{5\\n\\"\R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\M[\"\\\:P\','wp-content/plugins/wordfence/images/flags/mg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ě|\\d\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\2Di\e','wp-admin/css/l10n.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\T\\\=!\T',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\=Mq\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_CurlIO.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-{2\\n<i\r\dM',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Y_\zTO,\W]\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\vO\\Fx}ke',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!&i\)^WR','wp-includes/js/jquery/ui/widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5~\%\]c\r<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\$\ǀ\\r\Z\C\','wp-content/themes/twentyten/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f͒2%\O\CE>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\(q4P\}5Ozk','wp-admin/js/inline-edit-tax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' q8^uၓ\)?<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\3\'\4/UWV\I','wp-content/plugins/header-footer/images/social/round/google.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\{Rvh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\R\ш\޿0','wp-admin/css/themes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',7Ջ\b\LI+w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\hFM<@`%q-\\','wp-admin/includes/class-wp-filesystem-direct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|h@{Q}5\c!\K0Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\xjP\\!c\x','wp-admin/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/\Q\٩̪}5,\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ʥ\m::	\','wp-content/plugins/meteor-slides/css/meteor-slides-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd[\d\aD.\\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ۨV<\;\@P','wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mܚ߈]\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\	b8\[y','wp-includes/js/wp-emoji-release.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yv\S44lzb\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!#\I|\F\','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\Vʬ Hy',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\6<\C\﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¾Ua\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\U<\?Y,\ػ(','wp-admin/js/svg-painter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\fu\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ˍ\G䯀oe\o','wp-includes/js/shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ z\>1\\J\92',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '˲J0\\V4','wp-content/plugins/wordfence/images/flags/sc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@l+^\+\9U\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\d\IKƹ\v\Z0\','wp-content/plugins/wordpress-seo/admin/views/user-profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HyAW)ˢ9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\v\E,-O\{\','wp-includes/link-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\\\\i\/:\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!\LT\3i\\x\','wp-admin/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\wC\!_H;D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+E\\߼\ܸj{','wp-content/plugins/wordpress-seo/languages/wordpress-seo-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\\gr`N\bU',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\M\Tq&[?>칊\\n','wp-admin/css/colors/ectoplasm/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\9+\\"\+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Vڮ\\M\jӁ','wp-includes/js/plupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u&\nTIz+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\q۩\	\e','wp-content/plugins/wordfence/images/flags/is.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`)\ǷhE',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '̹9BF\\ht,<F','wp-content/plugins/wordfence/images/flags/sprite2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\m3;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ê5ff\;,G!\'\'-','wp-admin/css/colors/ocean/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XOe\\"&\~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ǊEvc,\صyS^','wp-includes/images/crystal/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 1k\"zo7\r3\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\t+N-̒','wp-content/plugins/wordfence/lib/email_passwdChanged.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IwKmKa{į\;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\pj֛`\w','wp-admin/css/customize-controls-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\\\-\k\;!\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\d\\\lPO\I','wp-admin/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&9{e,Yj\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%\\O^܊\','wp-content/plugins/page-links-to/phpunit.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MCX>;\\YH\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\)\\\\0e_\5=','wp-content/plugins/wordfence/lib/diffResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IYY8\\@6d\'r#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\,?hgch\ˡX@','wp-content/plugins/wordfence/images/flags/sy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<6\F_.\6E\=T\N\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w9=_\"h%\v','wp-admin/css/install-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*CM:\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '͓\Y\36\l\Y','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n\}W0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '͛\\3t\I?','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_razz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\hBjoⱬ%Z\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ͽ3\\=OG\|~','wp-includes/SimplePie/Credit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\M猋*>\n\|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ƭ2\-mCj}P','wp-content/plugins/wordpress-seo/vendor/composer/installers/.travis.yml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\b5]Dv\'\r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\S-5\-\\pau','wp-content/plugins/wordfence/images/flags/tt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r3\\tk9Vk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\j(g~jU#\','wp-admin/includes/class-wp-filesystem-ssh2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=酅\rc\o\\<2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\_)-]\ˌkO	\\','wp-includes/ID3/module.tag.apetag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7l,\iwFQ\ql',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\xbWYL`\ȧ\\\u9','wp-content/plugins/page-links-to/languages/page-links-to-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ёJwߦ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ε`tvS','wp-content/plugins/wordfence/images/flags/wales.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\C\o{\v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\œϔ=#6','wp-admin/images/post-formats32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WY~O{+_LkE;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\0)(Οip','wp-content/plugins/wordpress-seo/css/metabox-fresh.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\\POe_\:sFp\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;\~j8\\\\גxR','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\csDh%\[p!4\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\-\+e\\\mu\"\x','wp-admin/css/colors/sunrise/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E6G\QSU\EaB\8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\t0Rǵ\\Q\','wp-content/plugins/exclude-pages/exclude_pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\P{̥\M*\UXZ+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\uF\^GE+c','wp-admin/network/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pO~+~1',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\~pE\*TE4\','wp-content/plugins/wordfence/images/flags/am.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$/\cC\\&P%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'πtGȩ\D','wp-includes/js/tinymce/plugins/image/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\r\J\03\\\d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ϊ=\XbBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`YUQ}X\Q0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\HԹ\f\k\','wp-includes/js/tinymce/wp-tinymce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\n\0pr\Hv',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ݙP(\O\'Ee','wp-includes/js/jquery/ui/effect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A֢pi\u+`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ݚy.\0\؜i','wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\P\\^w\0\Q(\b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\鋭{^MU*_','wp-includes/js/twemoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '37[:.i Ĵ|t\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\]mٲ	▭\','wp-content/plugins/wordfence/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OfI8xE\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/%*\*i\\\','wp-content/themes/twentytwelve/js/html5.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zk\\8F2Y\A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\2p~)\(/p\'j','wp-content/plugins/tinymce-advanced/mce/advlist/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm 2hj]\\m\\v',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\>s\lWD7M','wp-includes/bookmark-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\!m<\r\\\\\O4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Us+mѕQ4\','wp-content/plugins/header-footer/codemirror/lib/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\	,\'eoԊz\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ac\I}\fȄ\;','wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)\n\u?/]˕',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ОF\̧!$ѥ%\Z','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_BatchRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\nMsng$\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Т펹|\\\\@','wp-includes/images/smilies/icon_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʵ	\\\\\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'е7\	\ w','wp-content/plugins/wordpress-seo/admin/pages/xml-sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	0\\OV\^,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\^\\X\PvS\\{','wp-admin/js/media-upload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_f\bf\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\׶`ƇӼ6|bݚ','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\i8KZZ\%`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/0\\n*7f(','wp-includes/js/wp-a11y.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9s%o\\V<4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/\\{F\\\k`.','wp-content/plugins/meteor-slides/readme.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\*)Ā\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\_\\c9mLv\\1\','wp-includes/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڲ@;h_yu]H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\m\E!\qTb','wp-content/themes/twentyeleven/inc/theme-options.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\L;`\;\df=/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ч\j=\d壱','wp-content/themes/twentytwelve/js/navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n&ܮ_7\}D3\Զ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ѻ\%|O-\'\','wp-content/themes/twentytwelve/content-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\u8^PC܄>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Jh|0\`ZpE','wp-admin/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\:lߘ\!\f6>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\C}@4^=\#\6Έ','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-ar.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Z\eW\\E~!#_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\wT9pM\tc\','wp-content/themes/twentyten/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XrgC0Ղ\p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ҒT\5\o\M\','wp-content/plugins/meteor-slides/languages/meteor-slides-bg_BG.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƶ\\C܁\K1\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ҟ\\ǟ	Ks\\\','wp-includes/images/icon-pointer-flag-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2b\\&\Z\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ҫ*\\H\n;t','wp-admin/includes/ajax-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\n\29%+Du',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ҭ_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\*\P\)\ȵ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ҲE5|\ѵCd闼','wp-admin/options-reading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\qu\}\-.\Ja',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\ֻS\\','wp-content/plugins/tinymce-advanced/mce/visualblocks/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8i\9ڄDIe',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\̾\\ra\g)\"','wp-content/plugins/wordpress-seo/css/metabox-classic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\8i\-l\ٔ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Lt593u^\\)\\','wp-admin/images/comment-grey-bubble-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TY\ŝ2s,\rm',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&)-â\ZΙp','wp-content/plugins/wordfence/lib/GeoIP.dat',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<01\-\Q\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\E#l\L\_&ܪ\\','wp-admin/images/arrows.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\v$>\\\>Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\M\V6LUϞ','wp-content/plugins/meteor-slides/js/jquery.cycle.all.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|	\Yݸu\ߦ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Un\/|r@ڪ\','wp-content/wflogs/config.php',0,_binary 'M֊\be\3',_binary 'M֊\be\3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\jsw2\pqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'T\R\HxҙT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\{ڭd3TXy\7;','wp-includes/css/admin-bar-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '֥]\_C?\+]\.',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\دx\\^Ȭ0Mˡ','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hf6}2wd\q\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\0*\W\\','wp-content/plugins/index.php',0,_binary 't:s\nY.29N',_binary 't:s\nY.29N',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\J3\K\ags','wp-content/plugins/wordpress-seo/languages/wordpress-seo-fa_IR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ej}n0)\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\W\ZeC\Du\','wp-content/plugins/wordpress-seo/frontend/class-twitter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\E4a_y\l',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\].ooȦM-n	','wp-admin/images/align-none-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XC)[\-4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ԑ|8M\\\̛,','wp-content/themes/twentyeleven/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\1צ\|8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ԒDH:\\\>0','wp-content/plugins/tinymce-advanced/mce/nonbreaking/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ԃ\ye\\2\$a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ȇp\]4\\L\q','wp-includes/css/admin-bar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U(X,3tB\_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\pS`\]T]D\','wp-includes/css/dashicons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\0c\\'ޒà\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\X\$a\B\\^','wp-admin/js/user-suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\T\\\\\\|\\r\9\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\8\:\n\\=_G','wp-content/plugins/wordpress-seo/languages/wordpress-seo-ca.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C7x5ņszT\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\P\\)3t;ޯ','wp-content/plugins/wordfence/images/flags/sprite-des2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\MdTW\cp,',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\YͷҖP;+\V','wp-content/themes/chimod/page_decking.php',0,_binary 'nWS3U1v-A}¶',_binary 'nWS3U1v-A}¶',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ՙU>U\+`a]\D','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't>\rn[Gɝl\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ն\&\X΀cι\','wp-content/plugins/page-links-to/languages/page-links-to-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ').p\2GjK{\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ͤ6\\0/k','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\00ԺLBwm#\\wu:',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z\	r!ޏf\\	\','wp-includes/images/icon-pointer-flag.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\E^j`\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\h`_J\#\S_,R','wp-content/plugins/wordfence/images/flags/fo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\e^K\IV',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\oҨ*K\\o7{ <','wp-includes/ID3/module.audio-video.matroska.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Y!Z0zDj&Cp\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rYSxwDY˚J[','wp-includes/images/media/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R׬˂\ôŉh\H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '֋\8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\؍Ga\_&\#b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '֮\xb=\4@\ t%','wp-content/plugins/wordfence/images/flags/mu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\h\'\\A(l\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ֶ\\9؞fpo3t','wp-includes/class-wp-admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YSy\ΡQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ֽB\mO\*:q\z','wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\9GS##W\q}\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\J\\![W6ݧ\','wp-content/plugins/wordfence/lib/IPTraf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N݄\\\n\tҍ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Gȩ\6\\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\LaFH[\a\'\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\MCSڒ%,<\'L\','wp-content/plugins/wordfence/images/flags/np.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\]\\H2\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'מy7mE5O_','wp-admin/js/media.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.$!&^$Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\H\!4*w1x','wp-content/themes/twentyeleven/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{g.I\^*AX\$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\j0\wE}®R','wp-admin/css/wp-admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n{nI6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\o(Q\<ڐ(','wp-content/plugins/wordfence/images/flags/cx.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\	B2\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\͟a\\E!','wp-content/themes/chimod/page_siding.php',0,_binary 'QoWL 6*',_binary 'QoWL 6*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\^\u\\}G\','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \E\28.63R\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\M\RN\a ','wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\rn_\(\r\z\-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ZvI:wm\\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\TfbpGO\-\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\&\Zh\$Éo','wp-includes/class-json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LSA\̈́\\%\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\8/B$8\`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UK(t\0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ah)I\Z]Gr\E','wp-admin/includes/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ޱ\wCrݩA\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\M&3\r\3CMaQ{','wp-admin/images/yes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\+7܉\rqZ\Qk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\o\ǣ	ף\f0Y','wp-includes/SimplePie/Core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\\\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\v\\\r\&X','wp-includes/js/jquery/ui/selectable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\"{BM\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\xβЦ\A	<\','wp-content/plugins/wordfence/lib/wfCrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\k|\)4+',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '؊12<\c)7\','wp-content/themes/twentyeleven/content-featured.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z^\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Z\"\'h:\\Zj\ZxF0','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-issues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u~cUs(E\S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\,(i7:^\^\#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')>|K*\ZbH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\I\<.\1\\r\B','wp-content/themes/twentyten/images/headers/path.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\兜:\\g\\?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\J\\^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\'w8YXx;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z*yEQ+\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/.travis.yml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rX\-#$eS6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\k\\/y&G','wp-includes/images/rss-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ya[Q\rj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '٘\\"Pܞ\,\','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:m𙗣P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\N}6\'Y;2\4','wp-content/themes/twentyeleven/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '79gs-Cji`g\Zń',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\(M\R\;o\\\TPE','wp-content/plugins/wordfence/images/flags/pe.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<<\$,E+<\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\!}=`*gZ=','wp-admin/network/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\xy|C',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\¹S2\%=er>','wp-content/plugins/wordfence/images/flags/pw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\0\0L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\>\~\!g\q','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-uw*S-]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;\-qu%S\Z	n','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-api-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2~0\+uo\c\I(\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w=Ţ\O&F\','wp-admin/css/colors/midnight/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&܍\|DW!E4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\|#\԰#{\\','wp-admin/js/link.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F0;\\3%-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'څ\η+	v\rI\','wp-content/themes/twentytwelve/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\pk|qA\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!(t<Թ','wp-includes/js/heartbeat.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ \	1\]d*D\G',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\_\rJL\#@B\\','wp-admin/css/colors/midnight/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\]QT\kܤc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ \I\_X\?','wp-admin/js/gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\\m\\dOo',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\45N\\~\<\(l\','wp-content/plugins/wordpress-seo/css/adminbar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\W %6*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\9\\^+t\\k\','wp-content/plugins/wordfence/images/flags/gw.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\Mj+\+ON\zp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ۖJBwC|Mv','wp-content/plugins/wordfence/lib/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R|\$\\\V;P\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ۜsma\\{G룿','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_biggrin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pYh\%\\ӷP\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '۪\	.\ո\\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٞR\\F1oj3X',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\r؁=\Ԓ\','wp-includes/images/rss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[(.*NZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\np\Gnu:\','wp-includes/js/colorpicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\V g-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ȼ؟\\'\r`\\','wp-includes/feed-rdf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\<CH,D\'\7i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\pDt(!-G\>%','wp-content/plugins/wordpress-seo/images/Video_130x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"T2=a(w7>g?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\2G?_\\\\\-B','wp-includes/canonical.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<!\n\4?ζ6OQ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\F|\nMN,8ݪ\'\','wp-admin/css/press-this.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\5$).M)\\Hc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '܉]je*:p','wp-content/plugins/wordfence/images/flags/ck.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sά\iԛ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '܏$\$Y\r$w','wp-content/plugins/wp-force-ssl/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_nh?o\7tBH/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ܐxv-D]uD5^P|','wp-content/themes/twentyeleven/inc/images/dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\vZQ\VCssS',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ܢ\fw	\|','wp-content/plugins/wordpress-seo/js/wp-seo-dismissible.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N!\VC1H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ջZml\4ˮU','wp-includes/images/smilies/simple-smile.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\{fwh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\r\0FJ\\B\\e\','wp-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\QS\\Y\st\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\6>l\rѲY','wp-content/plugins/wordfence/waf/wfWAFGeoIP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm#pà\'\w|fXu',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\J0\\jYg\h','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\\1\I\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\[65+\	\n9\','wp-admin/images/sort.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.ˍ\lHj]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\f\yħ*!','wp-admin/js/nav-menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hxÈo\0c\\\r;(\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ݏ97X<Թ/j\\\','wp-content/plugins/wordfence/images/flags/yt.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʉrT\\0h\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ݘ`b1tX\\ZZ K/','wp-content/plugins/wordfence/images/flags/in.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\sY',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ݶ@\\0u5\"','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h3.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@=0#G#\0e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\۾S)9','wp-content/plugins/wordfence/images/flags/vn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\P᳗vwܶPTo',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\3^\\PMY\\HD\','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\¶B=\rz3j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\<\\\86KoX','wp-content/plugins/wordfence/css/activity-report-widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r\mEdb',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\N\\\|`*,)@4','wp-includes/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rT\`?J\/\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ޚ\\Z\Sqk.','wp-content/plugins/meteor-slides/languages/meteor-slides-fa_IR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k]\\YUae3g7V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '޽s\㝢@1i:\Z\','wp-content/plugins/wordfence/images/flags/er.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\AQ\	uVo',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\/\\','wp-content/plugins/wordfence/images/flags/ai.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7֖*솼',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ދ1F\\a','wp-content/plugins/wordfence/lib/wfArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\emyVM\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\'g!:H\),','wp-includes/SimplePie/XML/Declaration/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\p(ÅB\s#b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\"\c)j\\"','wp-includes/js/wplink.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Μ\^g\o]Dq`JMi',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\q%ű m+','wp-admin/css/colors/light/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ʘ_\nJT\¹\\\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ߌ(\\2\\','wp-includes/js/quicktags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rz\0j7%\\Z 4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ߍ\K\\Z\ϻGh','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/address.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C{\@\@p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ߗ\Qu\!ٶx[','wp-includes/js/wpdialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-\0g\rFġ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ߥ䓿~;Q2D\\','wp-content/plugins/wordfence/images/flags/mn.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\C\']j\\n`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '߹V\=\"\#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I	=\~\i\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=!\Ak\S\\͜','wp-content/plugins/header-footer/codemirror/mode/clike/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\<\\d\Hϐ\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\W\".:\fO\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+~9;\\#\\Z4&D',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\!\0\tT( ','wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\\KKGлSA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%\f\\+,\\\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>q\$\_p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\|B\\\5Y\','wp-content/plugins/wordfence/lib/menu_sitePerf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a2ѽju҄ᴺ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\r\M\ܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\rcmm\\j\ik',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\^bR\SI\!\?','wp-includes/class-wp-image-editor-imagick.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\,h2\԰ڙ\2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\+\xo\u\\','wp-content/plugins/meteor-slides/includes/meteor-slides-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\n<c?X߀`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\A	!fY\j=	qQ|H','wp-content/plugins/wordfence/lib/menu_sitePerfStats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I_i߶lR4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Z(>(1bޫZ\','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Θ|.zlˏ.}լ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\]C\SODpԝbsds','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\޹M+\-6\\\f',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\q@/ꦑٞ-M\','wp-admin/network/site-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڄ\"\'\\r.\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '៵\@~G5\2','wp-content/plugins/wordfence/images/flags/sprite-des-64.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\n4F\6.\\j	$R',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\J A\v1he\','wp-content/plugins/wordpress-seo/css/yst_plugin_tools.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ls睠X|;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\<{LU798\ۆ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\YMۄ:K[~\','wp-content/plugins/tinymce-advanced/langs/tinymce-advanced.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\\\1UՍ8',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ *s\\\O\il\','wp-content/plugins/wordfence/lib/menu_scanSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v5\')\.h_-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\$8.Vp\jB@','wp-content/plugins/wordfence/images/flags/.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4.M:\<K0ܟή',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\L>ٟ#{6p}Y\\','wp-admin/options-writing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_H\\J1dk',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ĸ:\,p1\Hr','wp-admin/js/dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-OU\\Zn\\]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\0וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\K\\\0\\%3\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\3\Z~s㸆18)/','wp-content/plugins/wordfence/images/flags/pf.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\9}\=T{\f\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\/}ə$nr','wp-content/plugins/wordpress-seo/images/banner-woocommerce-seo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\@i\ĬpTi',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0;\-,\A\Ey\','wp-includes/theme-compat/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Z\"}Wuo.H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\a\Oj\'ŻD*ցV4','wp-cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\hc\\p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\eȄN~\"1آ','wp-content/plugins/page-links-to/js/page-links-to.coffee',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>s\>^՟b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\c:&HT\\','wp-content/plugins/underconstruction/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\PH>7l\\"O\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\q\82v\&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I$;$k6aW}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\<kUJv%1','wp-includes/fonts/dashicons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ez{C7|\2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w\\\V\\!\','wp-admin/includes/class-wp-ms-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\&ʠ|\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\vOԟφ\:Dpg','wp-content/plugins/wordfence/images/flags/gq.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '؟.\Ծj)q\"',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\*xM@!]\','wp-content/themes/twentyeleven/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\ʴ\\\\4\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\x\\F1\xA','wp-content/themes/chimod/search.php',0,_binary 'K#QoLo\r!\Y',_binary 'K#QoLo\r!\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\;G\"\\','wp-content/themes/twentyten/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S?9O\\6 @',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\zpKC{\\>','wp-admin/js/dashboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>{Y\mwcZ\\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\1]\M|K\FZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\\\M슱_#9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Aah\\d','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_lol.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nw)\<JI-A([\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\00qĊNy)\','wp-includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N#i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\3q\\gR','wp-content/themes/twentyeleven/inc/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Ƴ\n\'r\rDl2MT',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ۮ#\\n4v','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_wink.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X ks-z\rt\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\'\`F̔\~\Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Jg\!fy\L',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?Vc\Xr%\'','wp-content/themes/chimod/loop-page.php',0,_binary '\U&\aSԜJ	Ix',_binary '\U&\aSԜJ	Ix',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Pv\dI4u','wp-content/plugins/wordfence/images/flags/al.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\reݴOojDO',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\R\\5?- S^H','wp-admin/js/editor-expand.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\2=Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\eŐ\nA\','wp-content/plugins/wordfence/lib/wfView.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '⇲*!P\\'|%\Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\bW\A#','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\-tjO\1m}p\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\8|LP\	','wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\:\0\>\\\}LQ\0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\qص\t\\\\\i\v','wp-content/plugins/tinymce-advanced/mce/visualchars/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r>g\P\&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\rb\\\ɍ\Z\\','wp-admin/edit-form-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\?kb6;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\G\\5\@\\\\07\','wp-includes/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H+51	\f]9',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%\\a_\ԉ\\\\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/test-class-yoast-license-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Q:[=V\]RN$q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '様\7\^b\"','wp-content/plugins/wordfence/images/back_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\\\g\\i\\>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '潂mF\=\H{O,','wp-content/plugins/wordfence/images/flags/sm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@7fߧ84\\,e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;%X[\r\\\f','wp-content/plugins/wordfence/images/flags/fj.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$n =}<^(]\0\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\W\\\"\\Sk:\','wp-admin/images/align-center-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-r5*J7If',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\]\Zs@~OQ','wp-content/plugins/wordfence/images/flags/mm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\k0IZAfށ\o',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\⣣M\O\\\U','wp-admin/js/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AıP\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"\ơ7vs+','wp-admin/includes/class-pclzip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '67(\C\ki\8\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\b`K\'\컜\\K','wp-includes/functions.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x?!bcQ\*B36n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\o*M\j`\䃬H\kc','wp-content/plugins/meteor-slides/languages/meteor-slides-id_ID.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x+^\"\3\3a6ր',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\o\\\2-bt\r\\d','wp-content/plugins/wordfence/images/flags/sr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ap\L<zu\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Jёe\rXd\$\','wp-includes/class-wp-customize-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\\'x=e8Ժ#',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\xuսT?>IF^$\','wp-content/themes/twentytwelve/sidebar-front.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k,\ߵ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\l\XNEM\CgVsA:','wp-includes/js/swfupload/plugins/swfupload.queue.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SR/J5-v͏',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\3\$ĵ;\i','wp-content/themes/twentyeleven/images/headers/lanterns.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EHLx,\nG\wc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\Kg\\o#\0','wp-activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pUȪNੌ\{eG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ŉ	i\/Э','wp-includes/formatting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\T\E\le\\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\H\\\l{!D#!','wp-admin/js/color-picker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z}\"[}P-\)',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\FZY\C83E','wp-admin/css/colors/blue/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ѱ\^pJ\\G\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%y>}H\o\\(6','wp-includes/js/jquery/ui/core.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Ms\\ra\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\G\~5/\r\^\~>','wp-content/plugins/wordpress-seo/js/wp-seo-export.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':(޽G\%\U^N!P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\fi`=@T\o\','wp-admin/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1c~\'dv\vHq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\mj\0M\0>','wp-content/plugins/header-footer/codemirror/mode/css/scss_test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zi\\Z۲ܑA',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\J\\y0m\`\/','wp-includes/class-IXR.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nV\80\P\"yP_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\0\$$J\','wp-content/plugins/wordfence/lib/menu_waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T/V\ZF\d@{\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Q\oH*(\','wp-content/plugins/wordfence/images/sort_asc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',I\+ƾ\=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\[\d\0\vF\\','wp-content/plugins/meteor-slides/languages/meteor-slides-zh_CN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/ĵ.@h)G\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\"\[Q	\\\','wp-content/plugins/wordfence/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/V\L\\l}u!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\F\j!Y\{.J=,','wp-admin/images/stars.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\><k{\\(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\]W/>\}<8\ VF\','wp-admin/includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\/\kTbKxZ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\^.jT}<\I','wp-admin/js/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ϡ\M\0GÁ]\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '铼W\[uH3\ZX','wp-content/themes/twentytwelve/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2d\gtCc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\' \#s߾U|','wp-includes/js/mediaelement/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v&\B\"o\!e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '頻yN<9o\Z<','wp-admin/js/xfn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\'\(.J9\r^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Sp\*ǁ\\a\','wp-content/plugins/wordfence/images/flags/vg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~U}\0$ը\0u~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\mMt\WB','wp-admin/images/align-left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\y0\dZo.h\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\\dy\v4','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-update-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o:Li\BÃ>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\tZ\O\' \n','wp-includes/js/thickbox/macFFBgHack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ȱg\W,/u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\\V,E@Xy','wp-includes/SimplePie/Cache/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=@\\B[	S\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?\g?ߍAm','wp-content/themes/chimod/category.php',0,_binary 'T \u@\\0gζ\c',_binary 'T \u@\\0gζ\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\V,\U3\\','wp-content/plugins/wordfence/images/rr_premium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"3 ,2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0\%I\u! NB>^','wp-content/plugins/wordpress-seo/images/banner-video-seo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\u:\H98&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\4\\\2)A.;4\','wp-includes/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C2\\\\,ھ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\CkiԦ\0\!5','wp-content/plugins/page-links-to/js/new-tab.coffee',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\r\nnD\\eE',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\PK:]\\','wp-content/themes/twentyten/editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\wj⺀Rӓ˛',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\nmq\0\@pFd*','wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\\\(5\&3lh\)W',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\v`O\\n\0','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\)\\ܚb\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ꍥ2jEbg؈Wx\','wp-includes/css/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`o\\"KPzJ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ǉ\\4˓T`k','wp-includes/js/wp-pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6|dMpX\0\fɐ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ƣ	U\g\\;yY\','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_WPIO.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1 \YlqI',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\hD\UX\r|','wp-content/plugins/wordfence/images/flags/hk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rYF\f\̆U7\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\-n\$.#g%\}\','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'puQ: \*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0RJ{y\ˣ\','wp-includes/general-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\G;Y=.\T1!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\F 8\+)\\r\P\','wp-admin/images/no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\kd\$ܟV7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')F.jT&I\O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\p\\\A^s%','wp-content/plugins/wordfence/images/flags/bb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',4u\n߯?\g',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '뭷\r\!z}MLKE','wp-includes/ms-files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']yï<\r \L\F|',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\SڰpGMǯl\','wp-includes/css/media-views.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[52*\6V\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\׮F\\p\s\4','wp-content/plugins/wordfence/images/back_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\H\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\kDYN\4','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_IO.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\\t\3\{',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\vAdsK]','wp-admin/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\7m\=g\\"\}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\YC\\ooR\亞','wp-includes/capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@bA<nc\5ʡT;',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\4\=:\\$5\"\\','wp-includes/js/tinymce/plugins/wpdialogs/ajax.php.suspected',0,_binary '\JƗ|iAm\',_binary '\JƗ|iAm\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\8ڧs}\ն\Ni','wp-includes/class-phpmailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BqO7W\vai4c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\>ss\Z\Z)8V\','wp-content/plugins/wordpress-seo/languages/wordpress-seo-id_ID.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\U\218Ԣ\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?\\\h\\;','wp-includes/js/quicktags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\:<\\T\\ʭ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?~\"S%ɞ','wp-content/plugins/wordfence/images/flags/tj.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WnX\d,Djn\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\D\rh}\!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WV\ǥYF2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Pط悇̺ƴ$@\','wp-includes/SimplePie/HTTP/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W%\\4\66	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ww=o7\{\','wp-content/plugins/wordpress-seo/admin/class-import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\`ǧ+X\\\j',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\js\\2I','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_mad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\5\\\0Mx4\ZkT\V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\c\\.D\r |\','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\Z\?f.\8\	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '츃v\\6\;~','wp-includes/js/tinymce/utils/mctabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x$\nd,\P\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\-x\(\EoI=\','wp-includes/class-wp-customize-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\\\	pP~',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\2\?>\\"#','wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\0\Y,\7ܙ\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\0s\=`{?W0\','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h4.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ٲvoR%',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\n\ \2H\\"Fn\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,oF\D:N4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\]@\n>ĺ\Yn','wp-admin/admin-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\l\E)\E\A',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\k\\!k|4\B','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8I0mj@0\%U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\~R\\ZU\nA\\=`','wp-content/plugins/wordpress-seo/js/wp-seo-export.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\g5\0\r6\\n:W&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\QR\"\\@3v\S','wp-admin/js/link.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\\5ϳt{z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\Za]]\A\\'h','wp-admin/network/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7cɯ\ߵ\%DkE',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=\c\ه\','wp-admin/includes/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\VܻZ\ll',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\eCDi!\\','wp-admin/css/colors/coffee/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\yb)O](\a\r\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\f\%u\P\','wp-includes/js/mce-view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\S\sM:K\\e',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\YjFv\','wp-content/themes/twentyten/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wVG!`ڨR\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\aɡ@1cČ\\4','wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-create-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qa09\rإ\n-\U\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Mu\[x--\n','wp-content/plugins/wordpress-seo/phpcs.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\Q\[',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\EB\\r','wp-content/plugins/meteor-slides/languages/meteor-slides-ro_RO.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')vyV458\7',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\q\\5H\\䯕\np','wp-content/themes/twentytwelve/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u2	ۼAxi\cgkY\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\/hkvA','wp-content/plugins/wordpress-seo/languages/wordpress-seo-en_GB.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QǻDVZd<V',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\'\X!H\\','wp-content/plugins/tinymce-advanced/mce/searchreplace/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?˙\9+RO\oh\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\4\_\\>SZ','wp-content/themes/twentyeleven/images/comment-arrow-dark-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\kV\r|23z\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\;L\t׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iz~\i,L\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\D=Jǅ/	6ރa','wp-includes/js/swfupload/plugins/swfupload.cookies.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\rڈ\k\\ 7̴\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Y^~5~pG-','wp-includes/js/customize-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\_\Z\%cݹ\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\h?݅\<l5L\7Ɨ','wp-content/plugins/wp-force-ssl/wp-force-ssl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\ZJd`~\!vn',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\z\\|zxv','wp-includes/js/jquery/ui/droppable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZK\"qH\d~AP',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ﾘQ)B\n\,','wp-content/plugins/wordfence/images/loading_large.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y{ObUW~Y˙',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Pa`Xu','wp-admin/css/color-picker-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\[q4G։\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\Yf nرy\','wp-content/plugins/wordfence/images/flags/lr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J:x^b;\#uc',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\X=UpfpZ','wp-includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z8n(\\\WG',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ތt+\\\+\XaZU','wp-content/plugins/wordfence/lib/wfScan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s~K^!hw\n_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\V0\8ο\','wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\\\-fm֙',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\㯩\	\'\ިV','wp-includes/images/smilies/icon_biggrin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\YpR+\0}k\N{k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\6XԪ4\[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\t7=\".\8\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\9\rMԧ\\','wp-includes/js/customize-preview-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Q~\6\a',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '$īI^3\','wp-admin/menu-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\"\0R|YrIׂR',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G;\*ϑm\D(','wp-content/plugins/wordpress-seo/css/jquery.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\\L\r=\3B\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'i4I\[)O\96]','wp-content/themes/twentyeleven/editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')mi\Ez5\\\\`\\z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'з&L۽¨\VN','wp-includes/css/buttons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I@3\r\#\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '6$[O','wp-admin/css/customize-widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\?!`j\\Zx',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\rp.u3zx','wp-admin/includes/class-ftp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Vu\\IL',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9`翭!b!','wp-content/plugins/wordfence/css/wordfenceBox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\+C.f\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')jE4ڣd\\٤','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6L\2Ӳk1:B\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7s\\]\}AAwe1','wp-admin/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{8.g\\_\\+U',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Z/{Lt\ծF$','wp-admin/js/svg-painter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\/|ĩz',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'nZv%P\D\>','wp-content/themes/twentyten/images/headers/fern.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vh\G\\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\xT\\i','wp-content/plugins/tinymce-advanced/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rW\\R\6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'VYou\\5\i','wp-content/plugins/meteor-slides/languages/meteor-slides-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\cb\\\\\'VUFs\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ԛK\~D*\,57','wp-content/plugins/wordpress-seo/js/wp-seo-metabox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\'~\0IuF',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\N\ŏKlQ\','wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6L\2Ӳk1:B\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '>X\@Pd~R','wp-content/plugins/wordfence/images/flags/bi.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ڴBp+Ğ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '7Ǝ\{7q?\\F_','wp-content/plugins/wordpress-seo/languages/wordpress-seo-en_AU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ņ/Je\ ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<h\i0\\{r\"','wp-content/themes/twentyeleven/images/headers/chessboard-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"v\<1@)ip',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?\E_\)xڅ$','wp-admin/includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f[A\\˷xgK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G\\;\E\9','wp-content/plugins/header-footer/codemirror/mode/css/less.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Wԋߊ\7]d',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ZV길\RK.','wp-includes/ID3/plugin.php.suspected',0,_binary '4B5\_N懊Q2',_binary '4B5\_N懊Q2',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'poX0%\\\\','wp-includes/css/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u]X)*﬋\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D˴]|Ie\$\\$','wp-content/themes/chimod/single.php',0,_binary '	O	)xsd\\\',_binary '	O	)xsd\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'M\٦M\/`','wp-includes/js/swfupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Oۅ߲}\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '򱠭B\R\zY','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ogo~iI	',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?{o_\'n\','wp-admin/images/resize-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\e?&h.\\\n',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\_f $O<o','wp-admin/js/common.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\zv5<s!\ \',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\%\0\zfN\pS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y2\0׳\<r\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\U\ڗ?R9*k','wp-content/plugins/meteor-slides/languages/meteor-slides-cs_CZ.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-{$\qCEǬ\\~ig',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w\+\"+$\^','wp-content/plugins/wordfence/lib/wfLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`yC&/\"\Wq',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '#\\\/vXR','wp-admin/js/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\b\n]]\\\"0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '(;썚!=\/\\','wp-content/plugins/meteor-slides/languages/meteor-slides-tr_TR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\jh/h\6\n2\x',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Kz=G\\8i','wp-content/plugins/wordfence/lib/menu_passwd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\uMG\һ\\>3b',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'lF\c뒕\L','wp-admin/js/iris.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\5`\@Ħ\Ue߰\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'm\\,\\ς\v\0S','wp-content/plugins/tinymce-advanced/js/tadv.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\\+ЌMuQ0',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ؠ]\fP','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"yxer\"\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\c\\*\\\/\','wp-content/themes/twentyeleven/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gx) zI\\֧',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '՜<ëo[;6PG','wp-content/plugins/page-links-to/tests/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\0\\݌t;K',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\i\~\\흄','wp-content/plugins/header-footer/codemirror/mode/javascript/javascript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';/\Z$l?*@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Vk9۴\sֿ','wp-admin/css/customize-controls-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\\m\`$M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';\^𩸴8c','wp-includes/css/buttons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\1R1\!\\\=P',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'J\'#rN0a\r\','wp-includes/images/crystal/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nV:\ωG\\-#k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TnÊ-\iӼ\s','wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_AuthNone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kϋ`\D\\&bh',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'YRYi/l@HX\','wp-includes/js/media-grid.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LR\Gzpȟ\nK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e\<g*-}9X','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\@|\*\Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\?\\Ŀ\/pd\'','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ةʲȯ\@:-&',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'j\8\ď\\Z','wp-includes/js/wp-backbone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SY\|פ\j)p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\7T?\','wp-content/themes/twentytwelve/tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mӮ\c\SB',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')\Zcq&#,O','wp-content/plugins/wordfence/images/flags/bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '},z\d@@\^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-\"D\\ʹD5a\/','wp-includes/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b.*\rT:~t\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'A4e\\{^\Z','wp-includes/js/wpdialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\9_\M@9\0S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'F\\Z\C\1P','wp-content/plugins/wordfence/lib/wfDict.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\6Att\\#\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TҨxo\r@%s','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\s|VTu⛙귢',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^䎞\p\'%Q\','wp-content/themes/twentyeleven/content-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P	f\rd|!',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'r\\\s\\K\\)','wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@|\\\\B\03CEțH',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'uN\.A_\_\','wp-includes/js/media-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' w\\"Wl\c6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\>+ܞL[\m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\a5q\ȑ_4@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\(\\%#9yn','wp-admin/css/forms.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VAϱ9xpW',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'u)}q!\/s\','wp-content/plugins/exclude-pages/locale/exclude-pages-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\=\\Z%࿟\f[O',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ᯰӦ0ncm','wp-content/plugins/wordfence/images/flags/ar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\l˼\\Ucph\ZK',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ȉm\\m^m\B#','wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&S8}Jt\X\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\y\0\"\Q','wp-admin/user/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\»g\E\p\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~\\\rC','wp-admin/link-parse-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dm\\\䁐\f8\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'V9\K\\goX7\','wp-admin/images/align-left-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i8O\\^\c',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\HS!; ','wp-admin/js/user-profile.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j@#wP<Pw\2\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\fj|ѿ\Hu','wp-content/plugins/wordpress-seo/vendor/composer/installers/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '㰙i/:\F@ض_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\+\q\pW\','wp-includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')d\\19\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\`\&X<\aQVh\\','wp-admin/user/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0yݤ&-',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Ԡ$ֽ*:ܥ\\','wp-content/plugins/wordfence/images/flags/ro.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\5\VZʹ_݋',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '휨veO\6','wp-content/themes/twentytwelve/content-aside.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'llHƵO`\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\Pq-t@l\','wp-includes/images/wlw/wp-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1	ʚ7w3K*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ' @\;*\|','wp-includes/Text/Diff/Engine/string.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\x@Rƙ=\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'xM5\\L\Z\Z','wp-content/plugins/wordpress-seo/frontend/class-frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\hM	I\\\0+\ne',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\A\[\u\0','wp-content/plugins/header-footer/codemirror/mode/javascript/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';5O\y\r;Q',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\BHw\','wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\d5ۇ[皞\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '@\\sB0<{l3\','wp-includes/wlwmanifest.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ԑ\i^',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D@\&4b\Mv\ݱ','wp-content/themes/twentytwelve/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3{\\cذ\К\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'k\\e<F\\4','wp-admin/js/revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Sl\R;]2Lj',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\6K1(\\}/AX','wp-admin/network/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\'Gg$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '	\@C H\)\','wp-content/plugins/tinymce-advanced/mce/insertdatetime/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\^=H\+\Ei\ H',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^Q6l\J!	\ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\J\aD5Hr',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'HMz@A\\','wp-admin/css/press-this-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Wɤeʂ\ȲOi',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ɱ%a{Zj	%','wp-includes/class-wp-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c;~^$\w',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I:4PU\\','wp-includes/SimplePie/Cache/Memcache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JU1SQ?',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '8K\ ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZlY^[F\r\2xʻ',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'pl4[e\','wp-admin/js/inline-edit-tax.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\\`$?\0=>G\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'XiU1`]\','wp-content/plugins/wordfence/js/perf.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uQ\"\wF\\R@p',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R\=\*\d\n','wp-admin/includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\:0%\-_(',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '-^g̺@\0/','wp-content/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gD,V\=\\\bP',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '.ն\Zg{\=\','wp-admin/css/customize-controls.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J|`(\\4',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Y\mLj\a>p','wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2p^\%5\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '^EjFρޅ0','wp-content/plugins/wordfence/images/flags/gs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b \pH\sC}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~a%\!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\6#UQ:|>#\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\^\r\'\'8n\I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'T\ne.(','wp-includes/class-wp-image-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':TXd\L\ܕg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\	\'p\\"e>\0\5','wp-content/themes/twentyten/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Soө[\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\\-\\T\\\','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rVHII\\fJ\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\}\\PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VL\\	\gS\'i',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\R,A\ZGJ\'-','wp-includes/default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',}\\'\!\J\v\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\n\\\ɶ.5','wp-includes/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\)X`1\H\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'D\\\]\|߼$','wp-includes/js/mediaelement/wp-mediaelement.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8؟\"{\պu\Z',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Ph\\rV\','wp-admin/css/revisions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\2\\.ĕx`xa*',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iY:\0$z]','wp-content/plugins/wordfence/images/flags/kp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\8[!z\LEt',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '[v\\'\nJ\5','wp-content/themes/twentyeleven/content-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\i\W_,\\\r;_',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\=v\UN&X','wp-content/plugins/meteor-slides/languages/meteor-slides-da_DK.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\X\ 5\!.<',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\6Ri*5\æ','wp-content/plugins/wordfence/lib/dbview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Ded:]',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\'\\}0','wp-includes/js/tinymce/wp-tinymce.js.gz',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\nCx\^-`',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\YfSLqb','wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_smile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Fq}\Z@{\/3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '])\\	{?R}','wp-includes/feed-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kY\\>]DtH/',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '0<Ps\מH\22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\֔#tgPg',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '3U%b\L5\','wp-content/themes/twentyeleven/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f͒2%\O\CE>\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '9(FRj2n6]','wp-admin/css/colors/light/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Cxڄx43\*Cn/y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '_&O~9\RG','wp-content/plugins/wordfence/images/flags/ph.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ل@ܥ\){v\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'e͖:ȈL\'','wp-content/plugins/meteor-slides/languages/meteor-slides-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1~\ 0h>',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'g\"}_7\J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V̞\/Kx',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '~7XΏ7zl*Cx\','wp-content/themes/twentyeleven/images/headers/wheel-thumbnail.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\f\\,9J\\k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'p96è\R\','wp-admin/css/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iBD&8Y',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'ƪq悳\','wp-includes/js/tinymce/plugins/paste/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6BU@8<ba',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'iH4\\\Z','wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xM}\5{\$\\d(k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'R/36\J\%\','wp-content/plugins/header-footer/lib/easytabs/jquery.easytabs.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r|A:\.\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '<l\a,bX,','wp-admin/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rT\`?J\/\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\ۿGD\F','wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\(*A\\VMH=I',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\ŷN	\0\f\ZT','wp-content/plugins/wordfence/css/diff.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\"\y14Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\MJdB.\*','wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aa+JD$2J\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'X\bϕ\uW','wp-content/plugins/tinymce-advanced/mce/visualblocks/img/figure.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\x^\\De\\J',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '!@A;1)SJ\b\','wp-content/plugins/wordfence/css/colorbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jR \S7M',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'G!#h\9	&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\6Bû\yם',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Kj\h\','wp-content/plugins/wordfence/images/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\2p\nKX\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\'\B\7S\','wp-includes/js/zxcvbn-async.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0V]u#3',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\)\(\<\\','wp-includes/js/json2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\A\` ȡ\@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\a\\'@T瑓\\','wp-admin/images/date-button.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\IVď',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'n8\횃','wp-content/plugins/wordfence/images/flags/gy.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '**\"G|u',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ')z]!?a','wp-admin/images/media-button-video.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\r\x4Q\\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '2}+x4f\\	mX','wp-content/plugins/wordpress-seo/admin/pages/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\,\\\\1\b1\s$',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'I\"\p\t\Q\[Z6x','wp-includes/css/admin-bar.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mkxHk1qW\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'c\wk(43\','wp-admin/includes/list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T8\>_߂',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'Qֿ6\yq\88','wp-includes/theme-compat/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ ~C~M\\\=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '̜%\d\\dy\\','wp-content/themes/twentyten/images/headers/concave.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r0:\21B6',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'x(m`','wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SG4\Qs\\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'WR\aK\5W','wp-content/themes/twentyeleven/images/headers/pine-cone.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\\\\C\'',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\w\'6)','wp-includes/rss-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\l]4j0l=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'dD\\hސ\','wp-content/plugins/meteor-slides/languages/meteor-slides-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\c\\\\Im',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary ';`$r\\\$=','wp-content/plugins/wordfence/images/icons/warning128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\GI\t*\\Np=',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '?#\M9\r','wp-content/themes/twentytwelve/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7~\U\&}',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'L\\e5x?e=\&','wp-includes/js/plupload/wp-plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sy\,lf@@',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\M~\^x;','wp-content/plugins/wordfence/lib/unknownFiles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\{\\\U\\z[\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ؖ\0TQ\5\\S',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'TÇ=w','wp-admin/js/bookmarklet.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YἿvoFg\"\k',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary 'SCRCl\','wp-admin/css/colors/sunrise/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\Zz\	h\=\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '±h','wp-content/plugins/wordpress-seo/css/wpseo-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\\oo\\[\Qp',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\\k\i\\.\\','wp-includes/images/smilies/icon_neutral.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\	Z\',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?'),(_binary '\j\\3:Bn3yq','wp-content/plugins/wordpress-seo/css/wpseo-dismissible.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ǯc\B\r',_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','',0,'?');
/*!40000 ALTER TABLE `wp_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfhits`
--

DROP TABLE IF EXISTS `wp_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=InnoDB AUTO_INCREMENT=22987 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhits`
--

LOCK TABLES `wp_wfhits` WRITE;
/*!40000 ALTER TABLE `wp_wfhits` DISABLE KEYS */;
INSERT INTO `wp_wfhits` VALUES (20386,0.000000,1595354078.449670,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20387,0.000000,1595354090.657056,_binary '&\01q\5x	Q',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/gallery/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20388,0.000000,1595354092.627645,_binary '&\01q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/gallery/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20389,0.000000,1595354193.986662,_binary '\0\0\0\0\0\0\0\0\0\0BI',0,301,1,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.92 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20390,0.000000,1595354206.644283,_binary '\0\0\0\0\0\0\0\0\0\0BI',0,301,1,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20391,0.000000,1595354835.906641,_binary '\0\0\0\0\0\0\0\0\0\0.娌',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=2','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20392,0.000000,1595355010.780697,_binary '\0\0\0\0\0\0\0\0\0\01j',0,301,0,0,0,'http://chicagolandremodeling.com/','','Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)','',NULL,NULL),(20393,0.000000,1595355080.301607,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20394,0.000000,1595355080.377997,_binary '&\01q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20395,0.000000,1595355080.291387,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20396,0.000000,1595355080.378660,_binary '&\01q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20397,0.000000,1595355080.388640,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20398,0.000000,1595355080.380870,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20399,0.000000,1595355080.402713,_binary '&\01q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20400,0.000000,1595355153.276763,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36','',NULL,NULL),(20401,0.000000,1595355804.886605,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595355803.5049099922180175781250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20402,0.000000,1595355805.887577,_binary '\0\0\0\0\0\0\0\0\0\0v\k',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php?redirect_to=http%3A%2F%2Fwww.mychicagolandremodeling.com%2Fwp-admin%2F%3Ftoken%3D41cf0d23fbb8c4406aa7146fc0b1f755&reauth=1','chicagolandrestoration.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(20403,0.000000,1595356411.099840,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595356409.2479948997497558593750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20404,0.000000,1595356599.492596,_binary '\0\0\0\0\0\0\0\0\0\0M',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(20405,0.000000,1595356601.843930,_binary '\0\0\0\0\0\0\0\0\0\0M',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(20406,0.000000,1595356614.858057,_binary '\0\0\0\0\0\0\0\0\0\0#\&g',0,301,0,0,0,'http://chicagolandremodeling.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20407,0.000000,1595356744.742510,_binary '\0\0\0\0\0\0\0\0\0\0#\&g',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20408,0.000000,1595357101.334252,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-includes/css/modules.php','','python-requests/2.23.0','',NULL,NULL),(20409,0.000000,1595357106.129996,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-includes/css/modules.php','','python-requests/2.23.0','',NULL,NULL),(20410,0.000000,1595357107.082937,_binary '\0\0\0\0\0\0\0\0\0\08',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/uploads/2020/07/content-post.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20411,0.000000,1595357107.717294,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wso.php','','python-requests/2.23.0','',NULL,NULL),(20412,0.000000,1595357108.676222,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wso.php','','python-requests/2.23.0','',NULL,NULL),(20413,0.000000,1595357109.756480,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/upspy/index.php','','python-requests/2.23.0','',NULL,NULL),(20414,0.000000,1595357111.007133,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/upspy/','','python-requests/2.23.0','',NULL,NULL),(20415,0.000000,1595357113.061577,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/upspy/','','python-requests/2.23.0','',NULL,NULL),(20416,0.000000,1595357114.614252,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ubh/index.php','','python-requests/2.23.0','',NULL,NULL),(20417,0.000000,1595357115.858807,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ubh/','','python-requests/2.23.0','',NULL,NULL),(20418,0.000000,1595357116.752031,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/ubh/','','python-requests/2.23.0','',NULL,NULL),(20419,0.000000,1595357117.947313,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/vwcleanerplugin/bump.php?cache','','python-requests/2.23.0','',NULL,NULL),(20420,0.000000,1595357118.983927,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/vwcleanerplugin/bump.php?cache','','python-requests/2.23.0','',NULL,NULL),(20421,0.000000,1595357120.169769,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/xichang/x.php?xi','','python-requests/2.23.0','',NULL,NULL),(20422,0.000000,1595357121.339321,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/xichang/x.php?xi','','python-requests/2.23.0','',NULL,NULL),(20423,0.000000,1595357122.364249,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/html404/index.html','','python-requests/2.23.0','',NULL,NULL),(20424,0.000000,1595357123.355561,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/html404/index.html','','python-requests/2.23.0','',NULL,NULL),(20425,0.000000,1595357124.038109,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-admin/shapes.php','','python-requests/2.23.0','',NULL,NULL),(20426,0.000000,1595357129.069491,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-admin/shapes.php','','python-requests/2.23.0','',NULL,NULL),(20427,0.000000,1595357129.918246,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/olux.php','','python-requests/2.23.0','',NULL,NULL),(20428,0.000000,1595357130.623743,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/olux.php','','python-requests/2.23.0','',NULL,NULL),(20429,0.000000,1595357132.377366,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/indoxploit.php','','python-requests/2.23.0','',NULL,NULL),(20430,0.000000,1595357133.342911,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/indoxploit.php','','python-requests/2.23.0','',NULL,NULL),(20431,0.000000,1595357135.783018,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.23.0','',NULL,NULL),(20432,0.000000,1595357137.847392,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/up.php','','python-requests/2.23.0','',NULL,NULL),(20433,0.000000,1595357139.073425,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/up.php','','python-requests/2.23.0','',NULL,NULL),(20434,0.000000,1595357141.028131,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/upload.php','','python-requests/2.23.0','',NULL,NULL),(20435,0.000000,1595357143.008184,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/upload.php','','python-requests/2.23.0','',NULL,NULL),(20436,0.000000,1595357145.106761,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/shell.php','','python-requests/2.23.0','',NULL,NULL),(20437,0.000000,1595357146.785816,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/shell.php','','python-requests/2.23.0','',NULL,NULL),(20438,0.000000,1595357148.357532,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-admin/network/wp-footer.php','','python-requests/2.23.0','',NULL,NULL),(20439,0.000000,1595357149.757758,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-admin/network/wp-footer.php','','python-requests/2.23.0','',NULL,NULL),(20440,0.000000,1595357151.649171,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-info.php','','python-requests/2.23.0','',NULL,NULL),(20441,0.000000,1595357153.250908,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-info.php','','python-requests/2.23.0','',NULL,NULL),(20442,0.000000,1595357154.080278,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/vuln.php','','python-requests/2.23.0','',NULL,NULL),(20443,0.000000,1595357155.087633,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/vuln.php','','python-requests/2.23.0','',NULL,NULL),(20444,0.000000,1595357157.083795,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/upel.php','','python-requests/2.23.0','',NULL,NULL),(20445,0.000000,1595357162.012658,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/upel.php','','python-requests/2.23.0','',NULL,NULL),(20446,0.000000,1595357164.509613,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ppus/up.php','','python-requests/2.23.0','',NULL,NULL),(20447,0.000000,1595357166.479775,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/ppus/up.php','','python-requests/2.23.0','',NULL,NULL),(20448,0.000000,1595357171.313639,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/098.php','','python-requests/2.23.0','',NULL,NULL),(20449,0.000000,1595357173.245592,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/098.php','','python-requests/2.23.0','',NULL,NULL),(20450,0.000000,1595357176.349615,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/V5.php','','python-requests/2.23.0','',NULL,NULL),(20451,0.000000,1595357178.315541,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/V5.php','','python-requests/2.23.0','',NULL,NULL),(20452,0.000000,1595357180.872780,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/new_license.php','','python-requests/2.23.0','',NULL,NULL),(20453,0.000000,1595357182.334240,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/new_license.php','','python-requests/2.23.0','',NULL,NULL),(20454,0.000000,1595357185.924705,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/theme-configurator/mini.php','','python-requests/2.23.0','',NULL,NULL),(20455,0.000000,1595357188.638206,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/theme-configurator/mini.php','','python-requests/2.23.0','',NULL,NULL),(20456,0.000000,1595357193.352156,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/widget-logic/mini.php','','python-requests/2.23.0','',NULL,NULL),(20457,0.000000,1595357195.120267,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/widget-logic/mini.php','','python-requests/2.23.0','',NULL,NULL),(20458,0.000000,1595357369.819535,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/chicagoland-remodeling-home-remodeling-contractors-schaumburg-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20459,0.000000,1595357702.467001,_binary '\0\0\0\0\0\0\0\0\0\0.娐',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20460,0.000000,1595357725.575856,_binary '\0\0\0\0\0\0\0\0\0\06\p',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36','',NULL,NULL),(20461,0.000000,1595357829.772529,_binary '\0\0\0\0\0\0\0\0\0\06ܞ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20462,0.000000,1595358201.811873,_binary '\0\0\0\0\0\0\0\0\0\0.娚',0,200,0,0,0,'https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-wheaton-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20463,0.000000,1595358219.650291,_binary '\0\0\0\0\0\0\0\0\0\0.娄',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/img3b/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20464,0.000000,1595358225.549240,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/hello-world/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20465,0.000000,1595358672.790438,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20466,0.000000,1595358674.394019,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20467,0.000000,1595358675.245806,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20468,0.000000,1595358675.979929,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20469,0.000000,1595358676.673478,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20470,0.000000,1595358677.505402,_binary '\0\0\0\0\0\0\0\0\0\0>Ҳ\',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20471,0.000000,1595358681.886769,_binary '\0\0\0\0\0\0\0\0\0\0>a',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/cronblocks/wj.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20472,0.000000,1595358683.353802,_binary '\0\0\0\0\0\0\0\0\0\0>a',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cronblocks/wj.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20473,0.000000,1595359681.301498,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','',NULL,NULL),(20474,0.000000,1595359684.104346,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,200,0,1,0,'https://chicagolandremodeling.com/wp-login.php','https://wpschool.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(20475,0.000000,1595360458.025152,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595360454.7824470996856689453125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20476,0.000000,1595360458.080526,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20477,0.000000,1595360463.287146,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20478,0.000000,1595361015.440536,_binary '\0\0\0\0\0\0\0\0\0\0\"\\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20479,0.000000,1595361045.413613,_binary '*\0\0\0\0\0\0\0E',0,200,0,0,0,'https://chicagolandremodeling.com/category/roofing/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(20480,0.000000,1595361343.797466,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20481,0.000000,1595361345.218691,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20482,0.000000,1595361344.779571,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20483,0.000000,1595361403.809648,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'http://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20484,0.000000,1595361406.375644,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'https://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20485,0.000000,1595361410.317605,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'http://www.chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20486,0.000000,1595361411.188912,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'http://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20487,0.000000,1595361412.241104,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'https://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20488,0.000000,1595361432.603472,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20489,0.000000,1595361554.977571,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20490,0.000000,1595361560.729879,_binary '\0\0\0\0\0\0\0\0\0\0^',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20491,0.000000,1595361606.733019,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&pay=buy-alli-cheap&homework=1482759044','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20492,0.000000,1595361734.804430,_binary '\0\0\0\0\0\0\0\0\0\0Y.h\',0,301,0,0,0,'http://chicagolandremodeling.com/1.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20493,0.000000,1595361737.029484,_binary '\0\0\0\0\0\0\0\0\0\0Y.h\',0,404,0,0,0,'https://chicagolandremodeling.com/1.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20494,0.000000,1595362274.285596,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/lake-shore-drive-2/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20495,0.000000,1595362719.866963,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20496,0.000000,1595362723.525514,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20497,0.000000,1595362724.420337,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20498,0.000000,1595362740.394140,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20499,0.000000,1595363494.171284,_binary '\0\0\0\0\0\0\0\0\0\0\"KCi',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20500,0.000000,1595363583.261187,_binary '\0\0\0\0\0\0\0\0\0\0\"KCi',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20501,0.000000,1595363706.739002,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/samuel-hale/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20502,0.000000,1595363730.820266,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595363729.9702439308166503906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20503,0.000000,1595363731.802453,_binary ' A\\0˼\0\0\0\0\0\0\0',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php?redirect_to=http%3A%2F%2Fchicagolandremodeling.net%2Fwp-admin%2F%3Ftoken%3D6a40308c5ca10319489d21623ee70fc2&reauth=1','chicagolandremodeling.net','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(20504,0.000000,1595363902.904926,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595363902.0790500640869140625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20505,0.000000,1595364143.164481,_binary '\0\0\0\0\0\0\0\0\0\0.娌',0,200,0,0,0,'https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas/vinyl_replacment_windows_benefits-900x500/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20506,0.000000,1595364159.701784,_binary '\0\0\0\0\0\0\0\0\0\06$&',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&mental=lamotrigine-neuraxpharm-25-mg&engineering=1482888617','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20507,0.000000,1595364260.547002,_binary '\0\0\0\0\0\0\0\0\0\0\"KCi',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20508,0.000000,1595364410.693024,_binary '\0\0\0\0\0\0\0\0\0\0ܵlO',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(20509,0.000000,1595364527.358807,_binary '\0\0\0\0\0\0\0\0\0\0ܵl',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(20510,0.000000,1595364771.297831,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595364770.4096169471740722656250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20511,0.000000,1595364772.703588,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20512,0.000000,1595364774.079921,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20513,0.000000,1595364858.871101,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595364857.9795188903808593750000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20514,0.000000,1595364860.066513,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20515,0.000000,1595364861.533232,_binary '\0\0\0\0\0\0\0\0\0\0Vj',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20516,0.000000,1595364892.917269,_binary '\0\0\0\0\0\0\0\0\0\0\"KCi',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php?rsd','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20517,0.000000,1595364991.223166,_binary '\0\0\0\0\0\0\0\0\0\0\"KCi',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(20518,0.000000,1595365071.385246,_binary '\0\0\0\0\0\0\0\0\0\0PE',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/uploads/content-post.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20519,0.000000,1595365072.726063,_binary '\0\0\0\0\0\0\0\0\0\0PE',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/uploads/content-post.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20520,0.000000,1595365153.824379,_binary '\0\0\0\0\0\0\0\0\0\0.娕',0,301,0,0,0,'http://chicagolandremodeling.com/bathroom-remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20521,0.000000,1595365488.451085,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595365487.5349009037017822265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20522,0.000000,1595366015.900131,_binary '\0\0\0\0\0\0\0\0\0\0\\?o',0,301,0,0,0,'http://chicagolandremodeling.com/','','Internet-structure-research-project-bot','',NULL,NULL),(20523,0.000000,1595366199.569689,_binary '\0\0\0\0\0\0\0\0\0\0.娂',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/img2b/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20524,0.000000,1595366805.564964,_binary '\0\0\0\0\0\0\0\0\0\0\PJ',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/html404/xccc.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20525,0.000000,1595366807.789907,_binary '\0\0\0\0\0\0\0\0\0\0\PJ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/html404/xccc.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20526,0.000000,1595367149.169313,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595367147.2109110355377197265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20527,0.000000,1595367151.133872,_binary '\0\0\0\0\0\0\0\0\0\0.娗',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-glen-ellyn-il/image-8/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20528,0.000000,1595367225.790497,_binary '\0\0\0\0\0\0\0\0\0\06$3',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&heavy=450-mg-diphenhydramine-citrate&internal=1483061783','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20529,0.000000,1595367253.115833,_binary '\0\0\0\0\0\0\0\0\0\0#\f',0,301,0,0,0,'http://chicagolandremodeling.com/media/com_acym/js/module.min.js','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20530,0.000000,1595367259.194960,_binary '\0\0\0\0\0\0\0\0\0\0\'c)',0,301,0,0,0,'http://chicagolandremodeling.com/xxsssseee','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20531,0.000000,1595367260.551261,_binary '\0\0\0\0\0\0\0\0\0\0\'c)',0,404,0,0,0,'https://chicagolandremodeling.com/xxsssseee','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20532,0.000000,1595367330.250883,_binary '\0\0\0\0\0\0\0\0\0\0ܵl',0,301,0,0,0,'http://chicagolandremodeling.com/strony-internetowe-chicago/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(20533,0.000000,1595367558.395562,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595367557.5291340351104736328125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20534,0.000000,1595368097.626706,_binary '*\0\0\0\0\0\0\0E',0,200,0,0,0,'https://chicagolandremodeling.com/category/roofing/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(20535,0.000000,1595368335.602124,_binary '\0\0\0\0\0\0\0\0\0\0.娏',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20536,0.000000,1595368465.401317,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20537,0.000000,1595368466.838164,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20538,0.000000,1595368467.678142,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,1,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','loginFailValidUsername',NULL,NULL),(20539,0.000000,1595368600.233862,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&dinner=fluoxetine-40-mgs&people=1482960927','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20540,0.000000,1595369477.736794,_binary '\0\0\0\0\0\0\0\0\0\0\.\ry',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20541,0.000000,1595369890.727209,_binary '\0\0\0\0\0\0\0\0\0\0-\S',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(20542,0.000000,1595370060.927006,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595370060.0541880130767822265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20543,0.000000,1595370117.196454,_binary '\0\0\0\0\0\0\0\0\0\06\\$',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20544,0.000000,1595370407.180977,_binary '&\0\0ɐy`q\5x	Q',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20545,0.000000,1595370410.271106,_binary '&\0\0ɐy`q\5x	Q',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20546,0.000000,1595370410.223382,_binary '&\0\0ɐy`q\5x	Q',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20547,0.000000,1595370410.273149,_binary '&\0\0ɐy`q\5x	Q',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20548,0.000000,1595370410.262130,_binary '&\0\0ɐy`q\5x	Q',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20549,0.000000,1595370410.146917,_binary '&\0\0ɐy`q\5x	Q',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20550,0.000000,1595370410.076687,_binary '&\0\0ɐy`q\5x	Q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20551,0.000000,1595370410.123508,_binary '&\0\0ɐy`q\5x	Q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20552,0.000000,1595370429.354208,_binary '&\0\0ɐy`q\5x	Q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/gallery/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20553,0.000000,1595370550.990950,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595370550.1051759719848632812500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20554,0.000000,1595370552.112001,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20555,0.000000,1595370553.578468,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20556,0.000000,1595370571.954543,_binary '\0\0\0\0\0\0\0\0\0\042*!',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(20557,0.000000,1595370574.243678,_binary '\0\0\0\0\0\0\0\0\0\042*!',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(20558,0.000000,1595370574.192618,_binary '\0\0\0\0\0\0\0\0\0\042*!',0,302,0,0,0,'https://chicagolandremodeling.com/favicon.ico','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(20559,0.000000,1595370574.266875,_binary '\0\0\0\0\0\0\0\0\0\042*!',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon-precomposed.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(20560,0.000000,1595370605.607234,_binary '&\0\0ɐy`q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20561,0.000000,1595370605.733870,_binary '&\0\0ɐy`q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20562,0.000000,1595370605.807715,_binary '&\0\0ɐy`q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20563,0.000000,1595370605.608511,_binary '&\0\0ɐy`q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20564,0.000000,1595370605.677943,_binary '&\0\0ɐy`q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20565,0.000000,1595370606.377652,_binary '&\0\0ɐy`q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20566,0.000000,1595370606.376392,_binary '&\0\0ɐy`q\5x	Q',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20567,0.000000,1595370633.109501,_binary '&\0\0ɐy`q\5x	Q',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/gallery/','Mozilla/5.0 (Linux; Android 10; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20568,0.000000,1595370642.516794,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595370641.6397240161895751953125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20569,0.000000,1595370643.672499,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20570,0.000000,1595370645.202141,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20571,0.000000,1595371097.331340,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','',NULL,NULL),(20572,0.000000,1595371101.921108,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://www.jimaclick.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20573,0.000000,1595371281.685529,_binary '\0\0\0\0\0\0\0\0\0\0\.\ry',0,200,0,0,0,'https://chicagolandremodeling.com/home/family_room/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20574,0.000000,1595371301.889517,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595371301.0447359085083007812500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20575,0.000000,1595371302.681800,_binary '\0\0\0\0\0\0\0\0\0\0\S',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20576,0.000000,1595371303.602283,_binary '\0\0\0\0\0\0\0\0\0\0\S',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20577,0.000000,1595371405.740924,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595371404.8220338821411132812500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20578,0.000000,1595372193.836722,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595372190.7797219753265380859375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20579,0.000000,1595372451.860748,_binary '\0\0\0\0\0\0\0\0\0\06$\r',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&union=diflucan-150-mg-scheda-tecnica&mad=1483004826','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20580,0.000000,1595372818.708037,_binary '\0\0\0\0\0\0\0\0\0\0\"ۍ|',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20581,0.000000,1595373168.602755,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595373166.0465049743652343750000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20582,0.000000,1595373451.514430,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(20583,0.000000,1595373454.225815,_binary '\0\0\0\0\0\0\0\0\0\0\=',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(20584,0.000000,1595373515.578349,_binary '\0\0\0\0\0\0\0\0\0\0.娕',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-2/roofing2_2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20585,0.000000,1595374661.508147,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595374660.2567338943481445312500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20586,0.000000,1595374662.852622,_binary '\0\0\0\0\0\0\0\0\0\0Ú)*',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20587,0.000000,1595374660.910741,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/kitchen-remodeling/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20588,0.000000,1595374664.036404,_binary '\0\0\0\0\0\0\0\0\0\0Ú)*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20589,0.000000,1595374989.650353,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595374987.9352169036865234375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20590,0.000000,1595375302.348429,_binary '*\0\0\0\0\0\0\0e',0,200,0,0,0,'https://chicagolandremodeling.com/category/roofing/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(20591,0.000000,1595375608.040371,_binary '\0\0\0\0\0\0\0\0\0\06%y\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1','',NULL,NULL),(20592,0.000000,1595375648.332119,_binary '\0\0\0\0\0\0\0\0\0\0e',0,301,0,0,0,'http://chicagolandremodeling.com/index.php?s=Home/%5Cthink%5Capp/invokefunction&function=call_user_func_array&vars%5B0%5D=phpinfo&vars%5B1%5D%5B%5D=1','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20593,0.000000,1595375649.792479,_binary '\0\0\0\0\0\0\0\0\0\0e',0,200,0,0,0,'https://chicagolandremodeling.com/index.php?s=Home/%5Cthink%5Capp/invokefunction&function=call_user_func_array&vars%5B0%5D=phpinfo&vars%5B1%5D%5B%5D=1','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20594,0.000000,1595376142.864651,_binary '\0\0\0\0\0\0\0\0\0\0\'c)',0,301,0,0,0,'http://chicagolandremodeling.com/e/data/js/ajax.js','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20595,0.000000,1595376144.767177,_binary '\0\0\0\0\0\0\0\0\0\0\'c)',0,404,0,0,0,'https://chicagolandremodeling.com/e/data/js/ajax.js','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(20596,0.000000,1595376719.359344,_binary '\0\0\0\0\0\0\0\0\0\0Jж\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css','','python-requests/2.9.1','',NULL,NULL),(20597,0.000000,1595377231.404919,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20598,0.000000,1595377232.402064,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20599,0.000000,1595377232.445608,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20600,0.000000,1595377355.701962,_binary '\0\0\0\0\0\0\0\0\0\0(}CR',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)','',NULL,NULL),(20601,0.000000,1595377637.629582,_binary '\0\0\0\0\0\0\0\0\0\0\"\\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20602,0.000000,1595377706.274642,_binary '\0\0\0\0\0\0\0\0\0\0BI\',0,301,1,0,0,'http://chicagolandremodeling.com/?wordfence_logHuman=1&hid=5EB8E69D6C0E233A73B1A4B496E041B3&r=0.5943970666266978','http://mychicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/83.0.4103.122 Safari/537.36','',NULL,NULL),(20603,0.000000,1595377707.598934,_binary '\0\0\0\0\0\0\0\0\0\0BI',0,200,1,0,0,'https://chicagolandremodeling.com/?wordfence_logHuman=1&hid=5EB8E69D6C0E233A73B1A4B496E041B3&r=0.5943970666266978','http://mychicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/83.0.4103.122 Safari/537.36','',NULL,NULL),(20604,0.000000,1595378047.802173,_binary '\0\0\0\0\0\0\0\0\0\0{k',0,301,0,0,0,'http://chicagolandremodeling.com/','','','',NULL,NULL),(20605,0.000000,1595378056.049236,_binary '\0\0\0\0\0\0\0\0\0\0BI',0,200,1,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=3','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.92 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20606,0.000000,1595378382.792437,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595378381.4612200260162353515625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20607,0.000000,1595378383.781466,_binary '\0\0\0\0\0\0\0\0\0\0Ú)*',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20608,0.000000,1595378385.149825,_binary '\0\0\0\0\0\0\0\0\0\0Ú)*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3198.0 Safari/537.36 OPR/49.0.2711.0','',NULL,NULL),(20609,0.000000,1595379009.459874,_binary '\0\0\0\0\0\0\0\0\0\0Sl\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','',NULL,NULL),(20610,0.000000,1595379054.109709,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595379053.1603560447692871093750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20611,0.000000,1595379295.139151,_binary '\0\0\0\0\0\0\0\0\0\0.娂',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20612,0.000000,1595379806.842630,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595379805.4089939594268798828125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20613,0.000000,1595379806.842634,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595379805.3965470790863037109375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20614,0.000000,1595379864.640307,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/lauren-gross/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20615,0.000000,1595381080.495553,_binary '\0\0\0\0\0\0\0\0\0\0.娏',0,200,0,0,0,'https://chicagolandremodeling.com/home/commercial_remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20616,0.000000,1595381911.588253,_binary '&\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/433.60(KHTML, like Gecko) Chrome/76.0.4880.98 Safari/433.98','',NULL,NULL),(20617,0.000000,1595381913.813261,_binary '&\0\0\0\0\0\0',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_0) AppleWebKit/436.39(KHTML, like Gecko) Chrome/76.0.7565.101 Safari/436.101','',NULL,NULL),(20618,0.000000,1595381945.131398,_binary '&AB\0:\~Y]',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20619,0.000000,1595381946.048691,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20620,0.000000,1595381946.044519,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20621,0.000000,1595381946.079771,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20622,0.000000,1595381946.046135,_binary '&AB\0:\~Y]',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20623,0.000000,1595381946.141603,_binary '&AB\0:\~Y]',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20624,0.000000,1595381946.424163,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20625,0.000000,1595381946.458446,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20626,0.000000,1595381947.712094,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon.png','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20627,0.000000,1595381947.695606,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon.png','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20628,0.000000,1595381947.710376,_binary '&AB\0:\~Y]',0,302,0,0,0,'https://chicagolandremodeling.com/favicon.ico','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20629,0.000000,1595381947.740533,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon-precomposed.png','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20630,0.000000,1595381948.948320,_binary '&AB\0:\~Y]',0,302,0,0,0,'https://chicagolandremodeling.com/favicon.ico','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20631,0.000000,1595381949.020066,_binary '&AB\0:\~Y]',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon-precomposed.png','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0','',NULL,NULL),(20632,0.000000,1595382427.962926,_binary '\0\0\0\0\0\0\0\0\0\0P4',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(20633,0.000000,1595382570.678851,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20634,0.000000,1595382572.557609,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20635,0.000000,1595382573.645335,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20636,0.000000,1595382971.138307,_binary '&\8|\<$EM',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20637,0.000000,1595382971.139423,_binary '&\8|\<$EM',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20638,0.000000,1595382971.139953,_binary '&\8|\<$EM',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20639,0.000000,1595382971.139820,_binary '&\8|\<$EM',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20640,0.000000,1595382971.139421,_binary '&\8|\<$EM',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20641,0.000000,1595382971.139108,_binary '&\8|\<$EM',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20642,0.000000,1595382971.138908,_binary '&\8|\<$EM',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 10; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','',NULL,NULL),(20643,0.000000,1595383064.414983,_binary '\0\0\0\0\0\0\0\0\0\0.娕',0,200,0,0,0,'https://chicagolandremodeling.com/home/badgem-1-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20644,0.000000,1595383088.697393,_binary '\0\0\0\0\0\0\0\0\0\0%s\b',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','',NULL,NULL),(20645,0.000000,1595383090.708946,_binary '\0\0\0\0\0\0\0\0\0\0%s\b',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','',NULL,NULL),(20646,0.000000,1595383380.501756,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/decks-porches/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20647,0.000000,1595383520.863959,_binary '\0\0\0\0\0\0\0\0\0\06$8',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&hook=giovanni-leccese-tenoretic-generic-name&horizontal=1483004175','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20648,0.000000,1595383742.575864,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595383738.8084330558776855468750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20649,0.000000,1595383743.991472,_binary '\0\0\0\0\0\0\0\0\0\0BO9',0,301,1,0,0,'http://chicagolandremodeling.com/?wordfence_logHuman=1&hid=96BDD0738650D2B528A532C260752045&r=0.5943970666266978','http://mychicagolandremodeling.com/lake-shore-drive-2/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20650,0.000000,1595383745.077204,_binary '\0\0\0\0\0\0\0\0\0\0BO*',0,200,1,0,0,'https://chicagolandremodeling.com/?wordfence_logHuman=1&hid=96BDD0738650D2B528A532C260752045&r=0.5943970666266978','http://mychicagolandremodeling.com/lake-shore-drive-2/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20651,0.000000,1595383901.506184,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595383900.5400660037994384765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20652,0.000000,1595383907.791372,_binary '\0\0\0\0\0\0\0\0\0\0BO9',0,301,1,0,0,'http://chicagolandremodeling.com/?wordfence_logHuman=1&hid=A41057D82B1FAD1FEF963268F398376F&r=0.5943970666266978','http://mychicagolandremodeling.com/kitchen-remodeling/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20653,0.000000,1595383911.110638,_binary '\0\0\0\0\0\0\0\0\0\0BO%',0,200,1,0,0,'https://chicagolandremodeling.com/?wordfence_logHuman=1&hid=A41057D82B1FAD1FEF963268F398376F&r=0.5943970666266978','http://mychicagolandremodeling.com/kitchen-remodeling/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20654,0.000000,1595384410.821565,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/sample-page-2/page/3/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20655,0.000000,1595384677.679872,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595384676.5873799324035644531250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20656,0.000000,1595384698.659911,_binary '\0\0\0\0\0\0\0\0\0\0BO9',0,301,1,0,0,'http://chicagolandremodeling.com/?wordfence_logHuman=1&hid=855592DCCC536C78C33B469FABC000D1&r=0.6393021999392658','http://mychicagolandremodeling.com/kitchen-remodeling/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/83.0.4103.122 Safari/537.36','',NULL,NULL),(20657,0.000000,1595384699.488163,_binary '\0\0\0\0\0\0\0\0\0\0BO-',0,200,1,0,0,'https://chicagolandremodeling.com/?wordfence_logHuman=1&hid=855592DCCC536C78C33B469FABC000D1&r=0.6393021999392658','http://mychicagolandremodeling.com/kitchen-remodeling/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/83.0.4103.122 Safari/537.36','',NULL,NULL),(20658,0.000000,1595385258.936763,_binary '\0\0\0\0\0\0\0\0\0\0.娃',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/img2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20659,0.000000,1595385398.299437,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595385397.3140549659729003906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20660,0.000000,1595385399.312305,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20661,0.000000,1595385402.216467,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20662,0.000000,1595385518.000670,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595385516.9986340999603271484375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20663,0.000000,1595385518.997740,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20664,0.000000,1595385521.498830,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20665,0.000000,1595386242.493821,_binary '\0\0\0\0\0\0\0\0\0\0(X\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (compatible; DuckDuckGo-Favicons-Bot/1.0; +http://duckduckgo.com)','',NULL,NULL),(20666,0.000000,1595386629.876621,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595386627.5320370197296142578125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20667,0.000000,1595386819.013386,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/strony-internetowe-chicago/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20668,0.000000,1595387719.784777,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20669,0.000000,1595387721.722871,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20670,0.000000,1595387722.516733,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20671,0.000000,1595387723.269661,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20672,0.000000,1595387723.804774,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20673,0.000000,1595387724.401970,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭd',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20674,0.000000,1595387843.132132,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','',NULL,NULL),(20675,0.000000,1595387844.733760,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://hilaryparrott.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20676,0.000000,1595387860.538536,_binary '\0\0\0\0\0\0\0\0\0\06$0',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&generate=cialis-cost-walgree&resolve=1482802671','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20677,0.000000,1595388156.506578,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595388153.8211500644683837890625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20678,0.000000,1595388157.121398,_binary '\0\0\0\0\0\0\0\0\0\0Vd',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20679,0.000000,1595388159.158321,_binary '\0\0\0\0\0\0\0\0\0\0Vd',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20680,0.000000,1595388229.678276,_binary '\0\0\0\0\0\0\0\0\0\0.娆',0,200,0,0,0,'https://chicagolandremodeling.com/home/5540543936_423e37dae4_b/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20681,0.000000,1595388309.579532,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/apikey.php','','python-requests/2.23.0','',NULL,NULL),(20682,0.000000,1595388312.746277,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/apikey.php','','python-requests/2.23.0','',NULL,NULL),(20683,0.000000,1595388313.455477,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20684,0.000000,1595388314.162732,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20685,0.000000,1595388342.617707,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595388341.4794509410858154296875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20686,0.000000,1595388588.553147,_binary '\0\0\0\0\0\0\0\0\0\0Jж\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/formcraft/documentation.html','','python-requests/2.9.1','',NULL,NULL),(20687,0.000000,1595388672.935820,_binary '&\0<\0\0\0\0\0<\\',0,301,0,0,0,'http://chicagolandremodeling.com/xml.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20688,0.000000,1595388673.682602,_binary '&\0<\0\0\0\0\0<\\',0,404,0,0,0,'https://chicagolandremodeling.com/xml.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20689,0.000000,1595388732.482948,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&formula=order-vardenafil-90-pills&colour=1483047806','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20690,0.000000,1595388755.203361,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&accommodation=voltaren-et-sante-canada&independent=1483077053','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20691,0.000000,1595389539.374070,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595389536.7400090694427490234375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20692,0.000000,1595389645.237150,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/contact-us/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20693,0.000000,1595389668.999321,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/patios/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20694,0.000000,1595389771.592239,_binary '\0\0\0\0\0\0\0\0\0\0&d5Q',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)','',NULL,NULL),(20695,0.000000,1595391021.220216,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20696,0.000000,1595391026.163124,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595391025.1155838966369628906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20697,0.000000,1595391257.308416,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&switch=tamoxifen-prix&horn=1483032427','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20698,0.000000,1595391505.381923,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','',NULL,NULL),(20699,0.000000,1595391508.067940,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','',NULL,NULL),(20700,0.000000,1595391649.915146,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&goal=diflucan-150-mg-prix&revision=1482948132','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20701,0.000000,1595391678.729263,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&stage=buy-levitra-by-mail&underwear=1483104473','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20702,0.000000,1595391701.853634,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=1&mt=1&sch=1&illustrate=cost-of-viagra&spray=1482831516','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20703,0.000000,1595391767.599101,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20704,0.000000,1595391768.209135,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20705,0.000000,1595391768.529381,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20706,0.000000,1595392176.472980,_binary '\0\0\0\0\0\0\0\0\0\0UI',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','',NULL,NULL),(20707,0.000000,1595392671.104094,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&cooker=clomiphene-price-canada&impresson=1483062374','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20708,0.000000,1595393304.536664,_binary '\0\0\0\0\0\0\0\0\0\06$#',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&attack=generic-depakote-250-mg&professional=1482932143','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20709,0.000000,1595393401.897302,_binary '\0\0\0\0\0\0\0\0\0\0\\\\nd',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','',NULL,NULL),(20710,0.000000,1595393590.214299,_binary '\0\0\0\0\0\0\0\0\0\0:aN',0,200,0,0,0,'https://chicagolandremodeling.com/comments/feed/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(20711,0.000000,1595393595.334204,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2013/01/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20712,0.000000,1595393598.793641,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20713,0.000000,1595393603.179265,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2013/03/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20714,0.000000,1595393606.112158,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2017/02/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20715,0.000000,1595393609.843485,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2017/11/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20716,0.000000,1595393615.604533,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2018/03/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20717,0.000000,1595393618.567791,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2018/08/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20718,0.000000,1595393623.961632,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2018/09/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20719,0.000000,1595393628.396540,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2018/10/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20720,0.000000,1595393632.682741,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2020/04/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20721,0.000000,1595393649.298644,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=2','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20722,0.000000,1595393654.954857,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=3','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20723,0.000000,1595393662.146733,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/category/bathroom/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20724,0.000000,1595393717.257788,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/category/roofing/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20725,0.000000,1595393724.518302,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20726,0.000000,1595393738.234859,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/comments/feed/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20727,0.000000,1595393755.338612,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=2','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20728,0.000000,1595393759.786390,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=4','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20729,0.000000,1595393772.923121,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20730,0.000000,1595393777.808810,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery/?page_number_0=2','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20731,0.000000,1595393782.149615,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20732,0.000000,1595393806.075991,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20733,0.000000,1595393810.767448,_binary '\0\0\0\0\0\0\0\0\0\0.娑',0,200,0,0,0,'https://chicagolandremodeling.com/seminary-bath/seminarybath2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20734,0.000000,1595393817.939490,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/eric-tran/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20735,0.000000,1595393822.095336,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/jeremy-wong/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20736,0.000000,1595393827.050166,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/lauren-gross/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20737,0.000000,1595393832.107704,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/leah-howard/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20738,0.000000,1595393835.262982,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20739,0.000000,1595393854.636261,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/samuel-hale/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(20740,0.000000,1595393992.200668,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595393990.9852390289306640625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20741,0.000000,1595394215.132804,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595394211.8687009811401367187500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20742,0.000000,1595394412.058693,_binary '\0\0\0\0\0\0\0\0\0\0MD5',0,301,0,0,0,'http://chicagolandremodeling.com/wp-includes/upgrade/theme-compat/popup-pomo.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20743,0.000000,1595394412.913230,_binary '\0\0\0\0\0\0\0\0\0\0MD5',0,404,0,0,0,'https://chicagolandremodeling.com/wp-includes/upgrade/theme-compat/popup-pomo.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20744,0.000000,1595395048.822964,_binary '\0\0\0\0\0\0\0\0\0\03D\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/fincorp/about3.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20745,0.000000,1595395050.187249,_binary '\0\0\0\0\0\0\0\0\0\03D\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/fincorp/about3.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20746,0.000000,1595395270.609824,_binary '\0\0\0\0\0\0\0\0\0\0\"^L8',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(20747,0.000000,1595395509.582814,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,200,0,0,0,'https://chicagolandremodeling.com/home/3654978-50x50/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20748,0.000000,1595396607.289954,_binary '\0\0\0\0\0\0\0\0\0\0TR',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Safari/605.1.15 Epiphany/605.1.15','',NULL,NULL),(20749,0.000000,1595396904.538806,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&resist=take-zantac-liquid&style=1483103605','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20750,0.000000,1595396910.045785,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&dance=zyvox-generic&conference=1482960649','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20751,0.000000,1595396981.859484,_binary '\0\0\0\0\0\0\0\0\0\0Q\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://mychicagolandremodeling.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60','',NULL,NULL),(20752,0.000000,1595397167.052932,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 MSIE 7.0 Sucuri Integrity Monitor/2.4','',NULL,NULL),(20753,0.000000,1595397168.817859,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,301,0,0,0,'http://chicagolandremodeling.com/','http://sucuri.net','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','',NULL,NULL),(20754,0.000000,1595397186.964076,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','http://sucuri.net','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','',NULL,NULL),(20755,0.000000,1595397190.327283,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,404,0,0,0,'https://chicagolandremodeling.com/404testpage4525d2fdc','http://sucuri.net','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','',NULL,NULL),(20756,0.000000,1595397191.757593,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,404,0,0,0,'https://chicagolandremodeling.com/404javascript.js','http://www.google.com/url/?sa=t','Mozilla/5.0 (compatible; MSIE 8.0; MSIE 9.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','',NULL,NULL),(20757,0.000000,1595397193.349556,_binary '\0\0\0\0\0\0\0\0\0\0ߎG',0,301,1,0,0,'https://chicagolandremodeling.com/reviews','','Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20758,0.000000,1595397778.336562,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20759,0.000000,1595397784.169087,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20760,0.000000,1595397784.125588,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20761,0.000000,1595397797.826921,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20762,0.000000,1595397798.183355,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20763,0.000000,1595397798.137106,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20764,0.000000,1595397801.296327,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20765,0.000000,1595397801.902679,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20766,0.000000,1595397806.866339,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20767,0.000000,1595397808.795884,_binary '\0\0\0\0\0\0\0\0\0\0R\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(20768,0.000000,1595398719.440151,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/blog_roofing_header/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20769,0.000000,1595398818.383036,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595398817.7015810012817382812500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20770,0.000000,1595399034.812906,_binary '\0\0\0\0\0\0\0\0\0\0.娇',0,200,0,0,0,'https://chicagolandremodeling.com/home/g/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20771,0.000000,1595399188.122170,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595399187.7994608879089355468750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20772,0.000000,1595399193.535651,_binary '\0\0\0\0\0\0\0\0\0\0%K',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','',NULL,NULL),(20773,0.000000,1595399197.297919,_binary '\0\0\0\0\0\0\0\0\0\0%K',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','',NULL,NULL),(20774,0.000000,1595399202.390619,_binary '\0\0\0\0\0\0\0\0\0\0\k\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(20775,0.000000,1595399204.380040,_binary '\0\0\0\0\0\0\0\0\0\0\k\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','',NULL,NULL),(20776,0.000000,1595399260.371014,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595399260.0795450210571289062500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20777,0.000000,1595399564.748061,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&economic=zantac-generic-for&court=1483047785','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20778,0.000000,1595399570.491993,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&proof=atarax-25-mg-drogue&breakfast=1482988076','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20779,0.000000,1595399574.478324,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&remain=roaccutane-gel-prix&choice=1482788718','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20780,0.000000,1595399909.537411,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595399908.6711790561676025390625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20781,0.000000,1595399977.223328,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595399976.9185249805450439453125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20782,0.000000,1595400059.296534,_binary '\0\0\0\0\0\0\0\0\0\0;*\',0,301,0,0,0,'http://chicagolandremodeling.com/2020/','','Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)','',NULL,NULL),(20783,0.000000,1595400060.750983,_binary '\0\0\0\0\0\0\0\0\0\0;*\',0,301,0,0,0,'http://chicagolandremodeling.com/2020/','','','',NULL,NULL),(20784,0.000000,1595400101.814723,_binary '\0\0\0\0\0\0\0\0\0\0;*\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(20785,0.000000,1595400216.869458,_binary '\0\0\0\0\0\0\0\0\0\06\\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20786,0.000000,1595400798.303794,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20787,0.000000,1595401757.853978,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595401755.8573648929595947265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20788,0.000000,1595402206.564697,_binary '\0\0\0\0\0\0\0\0\0\0h\%\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20789,0.000000,1595402210.032766,_binary '\0\0\0\0\0\0\0\0\0\0h\%\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20790,0.000000,1595402211.483594,_binary '\0\0\0\0\0\0\0\0\0\0h\%\',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20791,0.000000,1595402214.540494,_binary '\0\0\0\0\0\0\0\0\0\0h\%\',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20792,0.000000,1595402602.986198,_binary '\0\0\0\0\0\0\0\0\0\0.娙',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath4/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20793,0.000000,1595403514.037712,_binary '\0\0\0\0\0\0\0\0\0\0\"\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20794,0.000000,1595403712.520039,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595403712.1205360889434814453125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20795,0.000000,1595403920.172738,_binary '\0\0\0\0\0\0\0\0\0\0g$R',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(20796,0.000000,1595403924.827591,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=1&mt=1&sch=1&defend=zyrtec-d-best-price&buyer=1482832125','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20797,0.000000,1595403948.213523,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&prison=cost-of-fluvoxamine-medco&equal=1482803421','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20798,0.000000,1595404457.708134,_binary '\0\0\0\0\0\0\0\0\0\0(Mb',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','',NULL,NULL),(20799,0.000000,1595404457.707551,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','',NULL,NULL),(20800,0.000000,1595404457.707552,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','',NULL,NULL),(20801,0.000000,1595404457.708146,_binary '\0\0\0\0\0\0\0\0\0\0(M/',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','',NULL,NULL),(20802,0.000000,1595404703.733538,_binary '\0\0\0\0\0\0\0\0\0\0ĉ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;)','',NULL,NULL),(20803,0.000000,1595404827.361700,_binary '\0\0\0\0\0\0\0\0\0\0U\>',0,301,0,0,0,'http://chicagolandremodeling.com/vendor/phpunit/phpunit/LICENSE','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20804,0.000000,1595404828.921966,_binary '\0\0\0\0\0\0\0\0\0\0U\>',0,404,0,0,0,'https://chicagolandremodeling.com/vendor/phpunit/phpunit/LICENSE','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20805,0.000000,1595404840.068707,_binary '\0\0\0\0\0\0\0\0\0\0U\>',0,301,0,0,0,'http://www.chicagolandremodeling.com/vendor/phpunit/phpunit/LICENSE','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20806,0.000000,1595404840.863185,_binary '\0\0\0\0\0\0\0\0\0\0U\>',0,301,0,0,0,'http://chicagolandremodeling.com/vendor/phpunit/phpunit/LICENSE','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20807,0.000000,1595404841.805086,_binary '\0\0\0\0\0\0\0\0\0\0U\>',0,404,0,0,0,'https://chicagolandremodeling.com/vendor/phpunit/phpunit/LICENSE','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20808,0.000000,1595404908.232763,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595404907.8415920734405517578125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20809,0.000000,1595405093.115760,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','',NULL,NULL),(20810,0.000000,1595405094.030436,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://businessminds.ae/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20811,0.000000,1595405206.922404,_binary '\0\0\0\0\0\0\0\0\0\0.娆',0,200,0,0,0,'https://chicagolandremodeling.com/shingles/shingles1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20812,0.000000,1595405228.622151,_binary '\0\0\0\0\0\0\0\0\0\04ş',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(20813,0.000000,1595405530.751850,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595405530.2090170383453369140625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20814,0.000000,1595405540.001983,_binary '\0\0\0\0\0\0\0\0\0\0Vh',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20815,0.000000,1595405541.741750,_binary '\0\0\0\0\0\0\0\0\0\0Vh',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20816,0.000000,1595405739.058847,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595405738.6330089569091796875000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20817,0.000000,1595405864.224076,_binary '\0\0\0\0\0\0\0\0\0\0MX\',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(20818,0.000000,1595406707.840808,_binary '\0\0\0\0\0\0\0\0\0\0.娑',0,200,0,0,0,'https://chicagolandremodeling.com/?attachment_id=918','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20819,0.000000,1595406720.144297,_binary '\0\0\0\0\0\0\0\0\0\03[',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20820,0.000000,1595406724.136672,_binary '\0\0\0\0\0\0\0\0\0\03[',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20821,0.000000,1595406728.899931,_binary '\0\0\0\0\0\0\0\0\0\03[',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20822,0.000000,1595406728.896203,_binary '\0\0\0\0\0\0\0\0\0\03[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20823,0.000000,1595406728.889052,_binary '\0\0\0\0\0\0\0\0\0\03[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20824,0.000000,1595406728.948122,_binary '\0\0\0\0\0\0\0\0\0\03[',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20825,0.000000,1595406728.893946,_binary '\0\0\0\0\0\0\0\0\0\03[',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20826,0.000000,1595406728.895046,_binary '\0\0\0\0\0\0\0\0\0\03[',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20827,0.000000,1595406729.004613,_binary '\0\0\0\0\0\0\0\0\0\03[',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; Dataprovider.com)','',NULL,NULL),(20828,0.000000,1595406738.316807,_binary '\0\0\0\0\0\0\0\0\0\0.娚',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20829,0.000000,1595407208.968570,_binary '&AB\0:\~Y]',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','',NULL,NULL),(20830,0.000000,1595407272.021014,_binary '\0\0\0\0\0\0\0\0\0\0.娋',0,200,0,0,0,'https://chicagolandremodeling.com/category/bathroom/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20831,0.000000,1595407506.925445,_binary '\0\0\0\0\0\0\0\0\0\0\.Z',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.9.1','',NULL,NULL),(20832,0.000000,1595407664.518682,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-northbrook-il/northbrook-przerabianiec/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20833,0.000000,1595408095.357832,_binary '&U\0p\n\0\'x\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/19.77.34.5 Safari/537.1','',NULL,NULL),(20834,0.000000,1595408205.220221,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20835,0.000000,1595408206.465570,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20836,0.000000,1595408206.927470,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20837,0.000000,1595408207.739559,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20838,0.000000,1595408208.242683,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20839,0.000000,1595408208.770991,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ\',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20840,0.000000,1595408995.122674,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595408994.1934719085693359375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20841,0.000000,1595409059.019717,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595409058.5992391109466552734375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20842,0.000000,1595409092.409299,_binary '\0\0\0\0\0\0\0\0\0\06\',0,301,0,0,0,'http://chicagolandremodeling.com/newsleter.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20843,0.000000,1595409094.543516,_binary '\0\0\0\0\0\0\0\0\0\06\',0,404,0,0,0,'https://chicagolandremodeling.com/newsleter.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20844,0.000000,1595409362.612513,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595409361.6108670234680175781250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20845,0.000000,1595409429.899915,_binary '\0\0\0\0\0\0\0\0\0\0.娊',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/kitchen-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20846,0.000000,1595409525.373173,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-roselle-il/roselle-1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20847,0.000000,1595409592.495953,_binary '\0\0\0\0\0\0\0\0\0\0\"\Gv',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20848,0.000000,1595409985.353859,_binary '\0\0\0\0\0\0\0\0\0\0.娔',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/frank-morris/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20849,0.000000,1595410693.820859,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595410692.7087230682373046875000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20850,0.000000,1595410694.779476,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20851,0.000000,1595410696.654275,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20852,0.000000,1595412404.431345,_binary '\0\0\0\0\0\0\0\0\0\0E\',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2)','',NULL,NULL),(20853,0.000000,1595412930.833759,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595412929.6142280101776123046875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20854,0.000000,1595413066.402248,_binary '\0\0\0\0\0\0\0\0\0\06$\Z',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&family=did-not-gain-weight-prozac-reviews&van=1483032777','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20855,0.000000,1595413793.678958,_binary '&\0g\0\0\0\0y',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/uploads/2020/07/doc.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20856,0.000000,1595413795.637084,_binary '&\0g\0\0\0\0y',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/uploads/2020/07/doc.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20857,0.000000,1595413818.407960,_binary '\0\0\0\0\0\0\0\0\0\0#\I ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','',NULL,NULL),(20858,0.000000,1595413819.049023,_binary '\0\0\0\0\0\0\0\0\0\0#\I ',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://www.ten-net.org/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20859,0.000000,1595413861.532023,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20860,0.000000,1595413866.731393,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595413866.2826368808746337890625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20861,0.000000,1595414074.920797,_binary '\0\0\0\0\0\0\0\0\0\06*7',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(20862,0.000000,1595414301.744968,_binary '\0\0\0\0\0\0\0\0\0\07\'7',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen8/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20863,0.000000,1595414742.652583,_binary '\0\0\0\0\0\0\0\0\0\0l;P',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','',NULL,NULL),(20864,0.000000,1595414823.547196,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20865,0.000000,1595414824.838125,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20866,0.000000,1595414825.484414,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20867,0.000000,1595414826.340410,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20868,0.000000,1595414827.247895,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(20869,0.000000,1595414828.035875,_binary '\0\0\0\0\0\0\0\0\0\0>Ҭ',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20870,0.000000,1595415085.102414,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20871,0.000000,1595415131.717996,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20872,0.000000,1595415142.169315,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/beast3x/3xup.php','','python-requests/2.23.0','',NULL,NULL),(20873,0.000000,1595415148.802958,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/beast3x/3xup.php','','python-requests/2.23.0','',NULL,NULL),(20874,0.000000,1595415226.244891,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/locations/remodeling-contractors-glen-ellyn-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20875,0.000000,1595415298.694490,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(20876,0.000000,1595415690.688271,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&knee=tamsulosin-hcl-0.8-mg-side-effects&translation=1482903757','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20877,0.000000,1595415882.455159,_binary '\0\0\0\0\0\0\0\0\0\0.娊',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/attachment/60613/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20878,0.000000,1595416087.055185,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20879,0.000000,1595416846.594898,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595416844.9676659107208251953125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20880,0.000000,1595416969.673793,_binary '\0\0\0\0\0\0\0\0\0\06Ϻ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; houzzbot; +http://www.houzz.com/)','',NULL,NULL),(20881,0.000000,1595417953.726733,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595417951.8925919532775878906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20882,0.000000,1595418167.053451,_binary '\0\0\0\0\0\0\0\0\0\0.娙',0,200,0,0,0,'https://chicagolandremodeling.com/locations/glen-ellyn/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20883,0.000000,1595418480.841194,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595418479.6510078907012939453125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20884,0.000000,1595418541.646568,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20885,0.000000,1595418559.385444,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595418558.9096701145172119140625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20886,0.000000,1595419183.718715,_binary '\0\0\0\0\0\0\0\0\0\0mB',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','',NULL,NULL),(20887,0.000000,1595419186.785882,_binary '\0\0\0\0\0\0\0\0\0\0mB',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','',NULL,NULL),(20888,0.000000,1595419509.637099,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-northbrook-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20889,0.000000,1595419650.625040,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20890,0.000000,1595419796.009463,_binary '&\0\0~\,\\3\n<',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20891,0.000000,1595419797.128833,_binary '\0\0\0\0\0\0\0\0\0\0{\k',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20892,0.000000,1595419797.921024,_binary '&\0\0~\,\\3\n<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20893,0.000000,1595419797.897915,_binary '&\0\0~\,\\3\n<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20894,0.000000,1595419798.095134,_binary '&\0\0~\,\\3\n<',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20895,0.000000,1595419798.091210,_binary '&\0\0~\,\\3\n<',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20896,0.000000,1595419798.102746,_binary '&\0\0~\,\\3\n<',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20897,0.000000,1595419798.093091,_binary '&\0\0~\,\\3\n<',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20898,0.000000,1595419798.150840,_binary '&\0\0~\,\\3\n<',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20899,0.000000,1595419803.280298,_binary '$@\0!~6ǔ?',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20900,0.000000,1595419808.837295,_binary '$@\0!~6ǔ?',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20901,0.000000,1595419838.813203,_binary '$@\0!~6ǔ?',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20902,0.000000,1595420132.782527,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/apikey.php','','python-requests/2.23.0','',NULL,NULL),(20903,0.000000,1595420146.384887,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/apikey.php','','python-requests/2.23.0','',NULL,NULL),(20904,0.000000,1595420148.234314,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20905,0.000000,1595420148.714583,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(20906,0.000000,1595420231.462146,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/category/bathroom/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(20907,0.000000,1595420545.602952,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/author/admin','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20908,0.000000,1595420785.191892,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595420784.0967810153961181640625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20909,0.000000,1595420812.052163,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20910,0.000000,1595420833.507814,_binary '\0\0\0\0\0\0\0\0\0\0.娖',0,200,0,0,0,'https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20911,0.000000,1595420863.827667,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/alex-pittman','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20912,0.000000,1595421138.933661,_binary '\0\0\0\0\0\0\0\0\0\0.娎',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-parker/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20913,0.000000,1595421180.050293,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/category/bathroom-menu','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20914,0.000000,1595421316.435371,_binary '\0\0\0\0\0\0\0\0\0\0.娐',0,200,0,0,0,'https://chicagolandremodeling.com/services/service_thumb2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20915,0.000000,1595421499.936908,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/custom-kitchen-remodel-dallas-tx-joseph-and-berry','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20916,0.000000,1595421502.018969,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/custom-kitchen-remodel-dallas-tx-joseph-and-berry/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20917,0.000000,1595421627.169352,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(20918,0.000000,1595421632.859689,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595421632.3552620410919189453125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20919,0.000000,1595421816.759236,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,404,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20920,0.000000,1595421864.869094,_binary '\0\0\0\0\0\0\0\0\0\0\.\ry',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20921,0.000000,1595421987.176573,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20922,0.000000,1595422260.820085,_binary '\0\0\0\0\0\0\0\0\0\0r',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(20923,0.000000,1595422265.379668,_binary '\0\0\0\0\0\0\0\0\0\0r',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(20924,0.000000,1595422454.085319,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/dinning-rooms','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20925,0.000000,1595422774.124120,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/printers-row','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20926,0.000000,1595422913.909704,_binary '\0\0\0\0\0\0\0\0\0\0m_',0,301,0,0,0,'http://chicagolandremodeling.com/img.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20927,0.000000,1595422915.157462,_binary '\0\0\0\0\0\0\0\0\0\0m_',0,404,0,0,0,'https://chicagolandremodeling.com/img.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20928,0.000000,1595423092.980820,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2017/02/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20929,0.000000,1595423108.362137,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20930,0.000000,1595423496.379961,_binary '*f\0\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/wp-includes/wp-caches.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20931,0.000000,1595423499.871045,_binary '*f\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-includes/wp-caches.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20932,0.000000,1595423736.433815,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2013/01/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20933,0.000000,1595423787.394705,_binary '\0\0\0\0\0\0\0\0\0\0Vd',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20934,0.000000,1595423788.782413,_binary '\0\0\0\0\0\0\0\0\0\0Vd',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20935,0.000000,1595424055.194403,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home-remodeling-contractors-schaumburg-il','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20936,0.000000,1595424239.861339,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20937,0.000000,1595424465.044777,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595424464.4905989170074462890625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20938,0.000000,1595425387.865843,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20939,0.000000,1595425610.555797,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20940,0.000000,1595425829.931775,_binary '&\0\\0\0\0\0:',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20941,0.000000,1595425830.551057,_binary '&\0\\0\0\0\0:',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20942,0.000000,1595425833.367585,_binary '&\0\\0\0\0\0:',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20943,0.000000,1595425836.598502,_binary '&\0\\0\0\0\0:',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20944,0.000000,1595426170.815775,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595426169.0051670074462890625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20945,0.000000,1595426171.769162,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20946,0.000000,1595426173.113467,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20947,0.000000,1595426329.916036,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20948,0.000000,1595426330.886864,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20949,0.000000,1595426330.864326,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(20950,0.000000,1595426405.941256,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&ambulance=retail-price-for-plavix&pick=1482946697','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20951,0.000000,1595426470.136282,_binary '\0\0\0\0\0\0\0\0\0\0>\SN',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Firefox/68.0','',NULL,NULL),(20952,0.000000,1595426567.599215,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20953,0.000000,1595426779.224872,_binary '\0\0\0\0\0\0\0\0\0\0-z\\',0,301,0,0,0,'http://chicagolandremodeling.com/admin/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20954,0.000000,1595426783.128980,_binary '\0\0\0\0\0\0\0\0\0\0-z\\',0,302,0,0,0,'https://chicagolandremodeling.com/admin/','http://chicagolandremodeling.com/admin/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20955,0.000000,1595426792.420936,_binary '\0\0\0\0\0\0\0\0\0\0-z\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','https://chicagolandremodeling.com/wp-admin/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(20956,0.000000,1595426959.720477,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20957,0.000000,1595427228.601787,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(20958,0.000000,1595427250.417920,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20959,0.000000,1595427251.728395,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20960,0.000000,1595427253.665585,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=3','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20961,0.000000,1595427254.225389,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=4','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20962,0.000000,1595427254.817599,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=5','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20963,0.000000,1595427257.051827,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=6','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20964,0.000000,1595427258.071667,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20965,0.000000,1595427261.269085,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20966,0.000000,1595427263.384471,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=3','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20967,0.000000,1595427265.452341,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=4','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20968,0.000000,1595427267.035690,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=5','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(20969,0.000000,1595427275.890730,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20970,0.000000,1595427277.852267,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":0}'),(20971,0.000000,1595427279.324965,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":0}'),(20972,0.000000,1595427602.326388,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/icon_paintingoutdoor','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20973,0.000000,1595427605.344910,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/icon_paintingoutdoor/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(20974,0.000000,1595427624.072307,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595427623.3501200675964355468750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20975,0.000000,1595427741.068274,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20976,0.000000,1595427874.460680,_binary '\0\0\0\0\0\0\0\0\0\0\aj',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Nimbostratus-Bot/v1.3.2; http://cloudsystemnetworks.com)','',NULL,NULL),(20977,0.000000,1595428065.924868,_binary '&C\0\Xvm',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(20978,0.000000,1595428447.437064,_binary '\0\0\0\0\0\0\0\0\0\0Y.m\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/404.php','http://site.ru','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','',NULL,NULL),(20979,0.000000,1595428845.605673,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595428844.1756141185760498046875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20980,0.000000,1595428846.673907,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20981,0.000000,1595428849.447291,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(20982,0.000000,1595428944.088643,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20983,0.000000,1595428966.401482,_binary '\0\0\0\0\0\0\0\0\0\0\r[gs',0,200,0,0,0,'https://chicagolandremodeling.com/','','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','',NULL,NULL),(20984,0.000000,1595428969.036845,_binary '\0\0\0\0\0\0\0\0\0\0\r[gs',0,404,0,0,0,'https://chicagolandremodeling.com/.env','','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','',NULL,NULL),(20985,0.000000,1595429380.164960,_binary '\0\0\0\0\0\0\0\0\0\0;*\',0,200,0,0,0,'http://www.chicagolandremodeling.com/sitemap_index.xml','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(20986,0.000000,1595430151.979520,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20987,0.000000,1595430568.379072,_binary '\0\0\0\0\0\0\0\0\0\0\"H@',0,200,0,0,0,'https://chicagolandremodeling.com/contact-us/','http://www.google.com','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)','',NULL,NULL),(20988,0.000000,1595430922.384472,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/hardiesiding8/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20989,0.000000,1595431007.008473,_binary '\0\0\0\0\0\0\0\0\0\0.娕',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath9/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(20990,0.000000,1595431213.374205,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(20991,0.000000,1595431214.663190,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(20992,0.000000,1595431215.510189,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=http://chicagolandremodeling.com','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(20993,0.000000,1595431216.156522,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,503,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20994,0.000000,1595431315.790849,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(20995,0.000000,1595431587.992144,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&vacation=viagra-sall-in-srilanka&rich=1482760771','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20996,0.000000,1595431596.454098,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&ugly=clopidogrel-in-bahrain&aid=1482948151','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20997,0.000000,1595431618.638740,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&prove=prazosin-for-panic-disorder&peak=1482802921','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(20998,0.000000,1595431740.219423,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431739.4681539535522460937500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(20999,0.000000,1595431740.218202,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431739.4643940925598144531250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21000,0.000000,1595431816.622876,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431815.9803349971771240234375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21001,0.000000,1595431889.197940,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431888.1949551105499267578125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21002,0.000000,1595431889.274689,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431888.1988461017608642578125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21003,0.000000,1595431985.367764,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595431984.6370990276336669921875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21004,0.000000,1595432070.041760,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432069.4343841075897216796875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21005,0.000000,1595432070.068631,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432069.4286909103393554687500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21006,0.000000,1595432181.622668,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432180.9879419803619384765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21007,0.000000,1595432181.631014,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432180.9891080856323242187500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21008,0.000000,1595432216.361805,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/rick-flores','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21009,0.000000,1595432218.659502,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/rick-flores/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21010,0.000000,1595432346.508979,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432345.8287079334259033203125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21011,0.000000,1595432414.083764,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432413.3886051177978515625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21012,0.000000,1595432414.191462,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432413.4947159290313720703125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21013,0.000000,1595432414.162253,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432413.4907588958740234375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21014,0.000000,1595432414.409788,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432413.7031600475311279296875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21015,0.000000,1595432414.420745,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432413.7304270267486572265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21016,0.000000,1595432497.929615,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21017,0.000000,1595432583.816789,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432583.2020299434661865234375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21018,0.000000,1595432583.850546,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432583.2328579425811767578125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21019,0.000000,1595432695.425031,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432694.7552490234375000000000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21020,0.000000,1595432772.773559,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432771.9862799644470214843750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21021,0.000000,1595432772.773499,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432771.9892110824584960937500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21022,0.000000,1595432775.562605,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/2018/03','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21023,0.000000,1595432777.784294,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2018/03/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21024,0.000000,1595432875.596319,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432874.9267098903656005859375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21025,0.000000,1595432875.625732,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432875.0124011039733886718750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21026,0.000000,1595432974.027597,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595432973.3664989471435546875000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21027,0.000000,1595433067.410772,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595433066.7555038928985595703125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21028,0.000000,1595433100.167425,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home/family_room','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21029,0.000000,1595433101.967124,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/home/family_room/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21030,0.000000,1595433132.280171,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595433131.5731968879699707031250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21031,0.000000,1595433311.560619,_binary '\0\0\0\0\0\0\0\0\0\0#\I ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','',NULL,NULL),(21032,0.000000,1595433312.415889,_binary '\0\0\0\0\0\0\0\0\0\0#\I ',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://pribinasoft.net/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21033,0.000000,1595433356.468426,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595433355.7544109821319580078125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21034,0.000000,1595433728.369924,_binary '\0\0\0\0\0\0\0\0\0\0UX',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.93 Safari/537.36','',NULL,NULL),(21035,0.000000,1595433739.248215,_binary '\0\0\0\0\0\0\0\0\0\0BO-',0,200,1,0,0,'https://chicagolandremodeling.com/attachment-sitemap.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21036,0.000000,1595433742.019173,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21037,0.000000,1595434061.903792,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/page/3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21038,0.000000,1595434170.794644,_binary '\0\0\0\0\0\0\0\0\0\0\.\ry',0,200,0,0,0,'https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-wheaton-il/image-9/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21039,0.000000,1595434201.963492,_binary '\0\0\0\0\0\0\0\0\0\0\"^L8',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(21040,0.000000,1595434387.858424,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/18893mcsweeney_after-11','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21041,0.000000,1595434389.259126,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/18893mcsweeney_after-11/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21042,0.000000,1595434717.528406,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/jeremy-wong','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21043,0.000000,1595434720.107541,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/jeremy-wong/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21044,0.000000,1595434929.212319,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21045,0.000000,1595435304.815548,_binary '\0\0\0\0\0\0\0\0\0\0.娚',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath5/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21046,0.000000,1595435491.571066,_binary '\0\0\0\0\0\0\0\0\0\0>3',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(21047,0.000000,1595435494.113399,_binary '\0\0\0\0\0\0\0\0\0\0>3',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','',NULL,NULL),(21048,0.000000,1595435540.107610,_binary '\0\0\0\0\0\0\0\0\0\06$e',0,404,0,0,0,'https://chicagolandremodeling.com/hello-world/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21049,0.000000,1595435735.615680,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21050,0.000000,1595435735.721343,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21051,0.000000,1595435736.649610,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21052,0.000000,1595435736.741783,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21053,0.000000,1595435736.989972,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21054,0.000000,1595435737.027150,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net/','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)','',NULL,NULL),(21055,0.000000,1595435738.566750,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com//#wpcf7-f8136-o1','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0E; .NET4.0C)','',NULL,NULL),(21056,0.000000,1595435738.618417,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com//#wpcf7-f8136-o1','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0E; .NET4.0C)','',NULL,NULL),(21057,0.000000,1595435739.976188,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net//','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)','',NULL,NULL),(21058,0.000000,1595435740.025158,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com//','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)','',NULL,NULL),(21059,0.000000,1595435740.114488,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net//','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)','',NULL,NULL),(21060,0.000000,1595435740.294308,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com//','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)','',NULL,NULL),(21061,0.000000,1595435741.237887,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com//#wpcf7-f8137-o2','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','',NULL,NULL),(21062,0.000000,1595435741.420448,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com//#wpcf7-f8137-o2','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','',NULL,NULL),(21063,0.000000,1595435741.968056,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com//','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','',NULL,NULL),(21064,0.000000,1595435742.986905,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net//','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)','',NULL,NULL),(21065,0.000000,1595435743.392955,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net//','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)','',NULL,NULL),(21066,0.000000,1595435743.386177,_binary '\0\0\0\0\0\0\0\0\0\0Y\V',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodelinginc.com//','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)','',NULL,NULL),(21067,0.000000,1595435884.326741,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home-remodeling-tips-chicago-il','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21068,0.000000,1595436099.766207,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21069,0.000000,1595436191.748238,_binary '*\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(21070,0.000000,1595436570.631358,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21071,0.000000,1595436910.298400,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21072,0.000000,1595436912.190758,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21073,0.000000,1595437242.942946,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/2013/02','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21074,0.000000,1595437244.900269,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21075,0.000000,1595437345.151033,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21076,0.000000,1595437431.266601,_binary '\0\0\0\0\0\0\0\0\0\0m',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','',NULL,NULL),(21077,0.000000,1595437433.813732,_binary '\0\0\0\0\0\0\0\0\0\0m',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','',NULL,NULL),(21078,0.000000,1595437886.750737,_binary '\0\0\0\0\0\0\0\0\0\0\"I\',0,301,0,0,0,'http://chicagolandremodeling.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21079,0.000000,1595437897.400596,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21080,0.000000,1595438004.435070,_binary '\0\0\0\0\0\0\0\0\0\0\"I\',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21081,0.000000,1595438009.613722,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(21082,0.000000,1595438010.465599,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(21083,0.000000,1595438221.302089,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/jeff-obrien','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21084,0.000000,1595438498.957106,_binary '\0\0\0\0\0\0\0\0\0\0.娎',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=2','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21085,0.000000,1595438548.237235,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21086,0.000000,1595438849.683591,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595438846.3553369045257568359375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21087,0.000000,1595438901.538779,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21088,0.000000,1595438903.646739,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21089,0.000000,1595439214.647665,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/services/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21090,0.000000,1595439622.000976,_binary '\0\0\0\0\0\0\0\0\0\0MS',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','',NULL,NULL),(21091,0.000000,1595439675.262503,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21092,0.000000,1595439675.801770,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php?rsd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21093,0.000000,1595439676.347035,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-ads-manager/js/slider/tmpl.js','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21094,0.000000,1595439677.001240,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/resize.php?src=http://www.relationshiptips.club/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21095,0.000000,1595439677.521635,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21096,0.000000,1595439678.199289,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/formcraft/file-upload/server/php/upload.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21097,0.000000,1595439680.132368,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21098,0.000000,1595439681.171071,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21099,0.000000,1595439681.843693,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/recent-backups/download-file.php?file_link=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21100,0.000000,1595439682.299557,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21101,0.000000,1595439682.805811,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21102,0.000000,1595439683.289607,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21103,0.000000,1595439683.782152,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-ecommerce-shop-styling/includes/download.php?filename=../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21104,0.000000,1595439684.612163,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/index.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21105,0.000000,1595439685.220199,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/TlmYWvZBFnBauR.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21106,0.000000,1595439685.808811,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21107,0.000000,1595439686.364233,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21108,0.000000,1595439782.551747,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21109,0.000000,1595439792.424237,_binary '\0\0\0\0\0\0\0\0\0\0\a2',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Nimbostratus-Bot/v1.3.2; http://cloudsystemnetworks.com)','',NULL,NULL),(21110,0.000000,1595439965.790580,_binary ' A\\0˼\0\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/siteindex.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(21111,0.000000,1595439981.381323,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/page/2/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21112,0.000000,1595440061.953657,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21113,0.000000,1595440063.347201,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21114,0.000000,1595440308.842121,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21115,0.000000,1595440380.059277,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595440379.3358449935913085937500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21116,0.000000,1595440389.631821,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/patricia-mendez','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21117,0.000000,1595440449.317865,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595440448.5329840183258056640625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21118,0.000000,1595440696.353258,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/page-sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21119,0.000000,1595440699.850034,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'https://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21120,0.000000,1595440728.690356,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21121,0.000000,1595440868.920641,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(21122,0.000000,1595440876.450510,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21123,0.000000,1595440877.579314,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21124,0.000000,1595440878.645273,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=3','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21125,0.000000,1595440880.009774,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=4','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21126,0.000000,1595440881.262186,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=5','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21127,0.000000,1595440882.062910,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=6','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21128,0.000000,1595440883.190271,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21129,0.000000,1595440885.973341,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21130,0.000000,1595440887.473198,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=3','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21131,0.000000,1595440890.467786,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=4','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21132,0.000000,1595440893.537848,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,200,1,0,0,'https://chicagolandremodeling.com/?author=5','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21133,0.000000,1595440906.945950,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21134,0.000000,1595440910.160446,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":0}'),(21135,0.000000,1595440911.638355,_binary '\0\0\0\0\0\0\0\0\0\0\1\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":0}'),(21136,0.000000,1595440997.632252,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21137,0.000000,1595441323.483900,_binary '\0\0\0\0\0\0\0\0\0\06\\k',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21138,0.000000,1595441597.366349,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21139,0.000000,1595441603.328089,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21140,0.000000,1595442187.083433,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21141,0.000000,1595443293.979135,_binary '\0\0\0\0\0\0\0\0\0\0h-',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(21142,0.000000,1595443296.411054,_binary '\0\0\0\0\0\0\0\0\0\0h-',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/iwp-client/readme.txt','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(21143,0.000000,1595443309.957148,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&sorry=purim-gifts-uk&fever=1483032344','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21144,0.000000,1595443418.855988,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21145,0.000000,1595443485.221406,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21146,0.000000,1595443487.488083,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21147,0.000000,1595443487.410191,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21148,0.000000,1595443488.925977,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21149,0.000000,1595443488.991145,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21150,0.000000,1595443489.123688,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21151,0.000000,1595443489.991591,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21152,0.000000,1595443489.946745,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21153,0.000000,1595443559.616515,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_right.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21154,0.000000,1595443559.634052,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_left.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21155,0.000000,1595443564.221198,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21156,0.000000,1595443567.777997,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21157,0.000000,1595443567.078849,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21158,0.000000,1595443568.402694,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21159,0.000000,1595443568.412178,_binary '\0\0\0\0\0\0\0\0\0\0\"dA',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21160,0.000000,1595443756.330648,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&illness=nizoral-a-d-buy&road=1482903666','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21161,0.000000,1595443771.430993,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&coldly=benadryl-dosage-dog-ml&disabled=1482917751','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21162,0.000000,1595443792.320549,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&fit=albendazole-200-mg-dosage&biscuit=1482859305','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21163,0.000000,1595443947.458937,_binary '\0\0\0\0\0\0\0\0\0\0*\\nk',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider','',NULL,NULL),(21164,0.000000,1595444008.717413,_binary '\0\0\0\0\0\0\0\0\0\0\0j',0,301,0,0,0,'http://chicagolandremodeling.com/','','Apache-HttpClient/4.5.6 (Java/1.8.0_112)','',NULL,NULL),(21165,0.000000,1595444011.349146,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','',NULL,NULL),(21166,0.000000,1595444014.741111,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','',NULL,NULL),(21167,0.000000,1595444016.895486,_binary '\0\0\0\0\0\0\0\0\0\0<z8',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/83.0.4103.61 Safari/537.36','',NULL,NULL),(21168,0.000000,1595444020.866979,_binary '\0\0\0\0\0\0\0\0\0\0ߦKw',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/83.0.4103.61 Safari/537.36','',NULL,NULL),(21169,0.000000,1595444148.282390,_binary '\0\0\0\0\0\0\0\0\0\0ߦKw',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/83.0.4103.61 Safari/537.36','',NULL,NULL),(21170,0.000000,1595444148.287082,_binary '\0\0\0\0\0\0\0\0\0\0ߦKw',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/83.0.4103.61 Safari/537.36','',NULL,NULL),(21171,0.000000,1595444151.707798,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595444150.9424130916595458984375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21172,0.000000,1595444152.881914,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21173,0.000000,1595444154.179522,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21174,0.000000,1595444268.543074,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/living-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21175,0.000000,1595444270.797256,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/living-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21176,0.000000,1595444524.347310,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/home-remodeling-tips-chicago-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21177,0.000000,1595444617.542708,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21178,0.000000,1595444646.472563,_binary '\0\0\0\0\0\0\0\0\0\0\j5',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36','',NULL,NULL),(21179,0.000000,1595444732.504088,_binary '\0\0\0\0\0\0\0\0\0\0\.\ry',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21180,0.000000,1595444808.505050,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&unload=neurontin-400-mg-indications-for-tonsillectomy&pencil=1483075249','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21181,0.000000,1595444927.333603,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/bedroom','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21182,0.000000,1595444928.651376,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/bedroom/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21183,0.000000,1595445131.995685,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595445131.2406260967254638671875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21184,0.000000,1595445473.808074,_binary '\0\0\0\0\0\0\0\0\0\0Úz[',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21185,0.000000,1595445475.408784,_binary '\0\0\0\0\0\0\0\0\0\0Úz[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21186,0.000000,1595445476.108730,_binary '\0\0\0\0\0\0\0\0\0\0Úz[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21187,0.000000,1595445487.439141,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21188,0.000000,1595445488.386382,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21189,0.000000,1595445488.471603,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21190,0.000000,1595445488.721289,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21191,0.000000,1595445488.722128,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21192,0.000000,1595445488.729076,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21193,0.000000,1595445488.728885,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21194,0.000000,1595445488.721613,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21195,0.000000,1595445548.856500,_binary '\0\0\0\0\0\0\0\0\0\0.威',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21196,0.000000,1595445669.205617,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_left.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21197,0.000000,1595445669.207696,_binary '\0\0\0\0\0\0\0\0\0\0\b',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_right.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21198,0.000000,1595445674.440488,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21199,0.000000,1595445674.487836,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21200,0.000000,1595445674.556293,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21201,0.000000,1595445753.061713,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21202,0.000000,1595445753.007117,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21203,0.000000,1595445753.253378,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21204,0.000000,1595445753.313369,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21205,0.000000,1595445753.310502,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21206,0.000000,1595445753.305620,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21207,0.000000,1595445753.314437,_binary '\0\0\0\0\0\0\0\0\0\0\b',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21208,0.000000,1595445804.035573,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21209,0.000000,1595445999.743611,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&down=cheap-viagra-line&army=1483031705','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21210,0.000000,1595446200.567466,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','',NULL,NULL),(21211,0.000000,1595446204.174713,_binary '\0\0\0\0\0\0\0\0\0\0#\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://mcardleteam.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21212,0.000000,1595446358.293505,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595446357.5245020389556884765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21213,0.000000,1595446423.863816,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&silly=metformin-850-mg-stada&soap=1482757901','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21214,0.000000,1595446660.211805,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/strony-internetowe-chicago','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21215,0.000000,1595446730.508000,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595446729.6357200145721435546875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21216,0.000000,1595447039.929124,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21217,0.000000,1595447159.558299,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(21218,0.000000,1595447168.408927,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/doudakhayba.php','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(21219,0.000000,1595447171.660270,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/doudakhayba.php','','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(21220,0.000000,1595447418.010499,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/randal-jenkins','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21221,0.000000,1595447420.846526,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-jenkins/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21222,0.000000,1595447560.605594,_binary '\0\0\0\0\0\0\0\0\0\0.娔',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-galewood-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21223,0.000000,1595447899.685952,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?action=lostpassword','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21224,0.000000,1595447989.107778,_binary '\0\0\0\0\0\0\0\0\0\0-\z',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21225,0.000000,1595448188.107165,_binary '\0\0\0\0\0\0\0\0\0\0#',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21226,0.000000,1595448262.395994,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21227,0.000000,1595448705.561793,_binary '\0\0\0\0\0\0\0\0\0\0.娚',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/elmwood/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21228,0.000000,1595448708.356949,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/basements-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21229,0.000000,1595448709.888393,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/basements-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21230,0.000000,1595448725.345184,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/photo-1495433324511-bf8e92934d90/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21231,0.000000,1595448828.672896,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/family-rooms/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21232,0.000000,1595449256.233628,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/category/blog/feed/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21233,0.000000,1595449285.565872,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595449284.6537990570068359375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21234,0.000000,1595449348.163376,_binary '\0\0\0\0\0\0\0\0\0\0*\\nr',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(21235,0.000000,1595449349.787121,_binary '\0\0\0\0\0\0\0\0\0\0*\\nr',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(21236,0.000000,1595449350.299806,_binary '\0\0\0\0\0\0\0\0\0\0*\\nr',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(21237,0.000000,1595449370.228784,_binary '\0\0\0\0\0\0\0\0\0\0*\\n}',0,301,0,0,0,'https://www.chicagolandremodeling.com/','http://baidu.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(21238,0.000000,1595449372.864556,_binary '\0\0\0\0\0\0\0\0\0\0*\\n}',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; U; Android 8.1.0; zh-CN; EML-AL00 Build/HUAWEIEML-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 baidu.sogo.uc.UCBrowser/11.9.4.974 UWS/2.13.1.48 Mobile Safari/537.36 AliApp(DingTalk/4.5.11) com.alibaba.android.rimet/10487439 Channel/227200 language/zh-CN','',NULL,NULL),(21239,0.000000,1595449387.064506,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595449386.1758160591125488281250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21240,0.000000,1595449450.754777,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21241,0.000000,1595449483.409330,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595449482.5466990470886230468750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21242,0.000000,1595449968.648717,_binary '\0\0\0\0\0\0\0\0\0\0.娎',0,200,0,0,0,'https://chicagolandremodeling.com/seminary-bath/seminarybath3/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21243,0.000000,1595450267.314551,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&reading=canada-nexday-amoxicillin&rude=1483075660','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21244,0.000000,1595450390.443506,_binary '\0\0\0\0\0\0\0\0\0\0_',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21245,0.000000,1595450674.186347,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21246,0.000000,1595450792.137924,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&bowl=betamethasone-cream-price&proof=1482889403','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21247,0.000000,1595450804.808507,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&memory=inderal-quando-si-usa&favour=1483033417','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21248,0.000000,1595450819.959015,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&rich=prozac-cost-generic&tourist=1483077957','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21249,0.000000,1595451082.798617,_binary '&0\n\0P#\0\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21250,0.000000,1595451084.104271,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21251,0.000000,1595451084.035397,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21252,0.000000,1595451084.205547,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21253,0.000000,1595451084.063734,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21254,0.000000,1595451084.099514,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21255,0.000000,1595451084.102400,_binary '&0\n\0P#\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21256,0.000000,1595451084.082297,_binary '&0\n\0P#\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21257,0.000000,1595451091.687155,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_right.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21258,0.000000,1595451091.861149,_binary '&0\n\0P#\0\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_left.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(21259,0.000000,1595451394.760694,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/stairs-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21260,0.000000,1595451398.449945,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/stairs-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21261,0.000000,1595451635.197972,_binary '\0\0\0\0\0\0\0\0\0\0.娔',0,301,0,0,0,'http://chicagolandremodeling.com/offices-commercial-spaces/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21262,0.000000,1595451710.172229,_binary '\0\0\0\0\0\0\0\0\0\0=\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(21263,0.000000,1595451712.719943,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/dinning-rooms/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21264,0.000000,1595451857.628292,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21265,0.000000,1595452641.224302,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/amelia-sanchez','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21266,0.000000,1595453067.109128,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21267,0.000000,1595453218.775391,_binary '&AT0c!	\\Z',0,301,0,0,0,'https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','https://www.google.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21268,0.000000,1595453220.123382,_binary '&AT0c!	\\Z',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21269,0.000000,1595453220.825604,_binary '&AT0c!	\\Z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21270,0.000000,1595453220.810249,_binary '&AT0c!	\\Z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21271,0.000000,1595453220.824480,_binary '&AT0c!	\\Z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21272,0.000000,1595453236.650490,_binary '&AT0c!	\\Z',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21273,0.000000,1595453250.960431,_binary '&AT0c!	\\Z',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21274,0.000000,1595453251.696681,_binary '&AT0c!	\\Z',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21275,0.000000,1595453353.050655,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home/dining_room','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21276,0.000000,1595453355.526567,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/home/dining_room/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21277,0.000000,1595453571.285751,_binary '\0\0\0\0\0\0\0\0\0\0.娆',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/open-kitchen-living-room-small-kitchen-decorating-ideas-for-apartment-open-kitchen-living-room-decorating-ideas-interior-design-ideas-kitchen-family-room-within-contemporary-apartment-kitchen-white-co/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21278,0.000000,1595453664.660582,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21279,0.000000,1595453666.130919,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21280,0.000000,1595453810.494360,_binary '&AT0\^\/vr',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21281,0.000000,1595453817.245073,_binary '&AT0\^\/vr',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21282,0.000000,1595453817.275500,_binary '&AT0\^\/vr',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21283,0.000000,1595453819.086952,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21284,0.000000,1595453819.083121,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21285,0.000000,1595453819.117691,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21286,0.000000,1595453819.124477,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21287,0.000000,1595453819.127812,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21288,0.000000,1595453846.880539,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_right.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21289,0.000000,1595453846.852493,_binary '&AT0\^\/vr',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/arrow_left.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21290,0.000000,1595453852.071990,_binary '&AT0\^\/vr',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','',NULL,NULL),(21291,0.000000,1595453980.913850,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/roofing-1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21292,0.000000,1595453982.916064,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21293,0.000000,1595454180.139577,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595454178.3196570873260498046875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21294,0.000000,1595454245.931724,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21295,0.000000,1595454406.786771,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21296,0.000000,1595454884.300292,_binary '\0\0\0\0\0\0\0\0\0\0.娅',0,200,0,0,0,'https://chicagolandremodeling.com/home/bedroom/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21297,0.000000,1595455037.855810,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/square-facebook-512','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21298,0.000000,1595455039.823020,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/square-facebook-512/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21299,0.000000,1595455357.375741,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/feed','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21300,0.000000,1595455436.076368,_binary '\0\0\0\0\0\0\0\0\0\0.娍',0,301,0,0,0,'http://chicagolandremodeling.com/about-us/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21301,0.000000,1595455460.873134,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21302,0.000000,1595455568.236286,_binary '&\0\5ħ',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21303,0.000000,1595455575.566683,_binary '&\0\5ħ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21304,0.000000,1595455575.591967,_binary '&\0\5ħ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21305,0.000000,1595455575.665256,_binary '&\0\5ħ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21306,0.000000,1595455575.629668,_binary '&\0\5ħ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21307,0.000000,1595455575.567766,_binary '&\0\5ħ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21308,0.000000,1595455575.730159,_binary '&\0\5ħ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21309,0.000000,1595455575.524385,_binary '&\0\5ħ',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/84.0.4147.71 Mobile/15E148 Safari/604.1','',NULL,NULL),(21310,0.000000,1595455671.891001,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21311,0.000000,1595455699.664023,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-wheaton-il/image-9/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21312,0.000000,1595455788.243751,_binary '\0\0\0\0\0\0\0\0\0\0|C',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(21313,0.000000,1595455790.269149,_binary '\0\0\0\0\0\0\0\0\0\0|C',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(21314,0.000000,1595455987.706411,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/author/admin/page/2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21315,0.000000,1595456049.700262,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,404,0,0,0,'https://chicagolandremodeling.com/free-estimates/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21316,0.000000,1595456244.341606,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&purchase=zocor-price&pitch=1482758277','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21317,0.000000,1595456304.316753,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/roselle-image-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21318,0.000000,1595456310.497660,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/roselle-image-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21319,0.000000,1595456422.041882,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595456420.9226109981536865234375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21320,0.000000,1595456616.804393,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/bernice-carson','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21321,0.000000,1595456673.891891,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21322,0.000000,1595456935.308011,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home/kitchen_remodeling','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21323,0.000000,1595456938.076628,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/home/kitchen_remodeling/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21324,0.000000,1595457247.875235,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21325,0.000000,1595457249.718219,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery/?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21326,0.000000,1595457382.905132,_binary '\0\0\0\0\0\0\0\0\0\0.娊',0,200,0,0,0,'https://chicagolandremodeling.com/locations/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21327,0.000000,1595457689.808722,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21328,0.000000,1595457693.462861,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21329,0.000000,1595457693.449883,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21330,0.000000,1595457762.341824,_binary '\0\0\0\0\0\0\0\0\0\0.威',0,200,0,0,0,'https://chicagolandremodeling.com/home/bathroom_remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21331,0.000000,1595457790.955154,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21332,0.000000,1595457893.739644,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21333,0.000000,1595457898.712140,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/bedrooms/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21334,0.000000,1595457911.869692,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/micheal-nguyen/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21335,0.000000,1595457916.082338,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/mendota-hall-bath/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21336,0.000000,1595457953.861179,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21337,0.000000,1595458107.811990,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/badgem-1-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21338,0.000000,1595458109.479437,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/badgem-1-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21339,0.000000,1595458225.257524,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/category/kitchen-menu/feed/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21340,0.000000,1595458311.121042,_binary '\0\0\0\0\0\0\0\0\0\0S\\^',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','',NULL,NULL),(21341,0.000000,1595458313.839212,_binary '\0\0\0\0\0\0\0\0\0\0S\\^',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','',NULL,NULL),(21342,0.000000,1595458340.911880,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595458339.9918849468231201171875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21343,0.000000,1595458340.940363,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595458340.0337491035461425781250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21344,0.000000,1595458396.183534,_binary '\0\0\0\0\0\0\0\0\0\0.娏',0,200,0,0,0,'https://chicagolandremodeling.com/home/mapquest_tall_logo_large/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21345,0.000000,1595458422.070301,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/2014-11-04-kitchenremodel','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21346,0.000000,1595458423.553266,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/2014-11-04-kitchenremodel/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21347,0.000000,1595458469.794264,_binary '\0\0\0\0\0\0\0\0\0\0.娍',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath6/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21348,0.000000,1595459157.139856,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21349,0.000000,1595459278.992482,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595459278.0215969085693359375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21350,0.000000,1595459279.983926,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21351,0.000000,1595459282.098885,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21352,0.000000,1595459839.083210,_binary '\0\0\0\0\0\0\0\0\0\0MQh\',0,200,0,0,0,'https://chicagolandremodeling.com/contact-us/','https://chicagolandremodeling.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','',NULL,NULL),(21353,0.000000,1595460335.650184,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21354,0.000000,1595460336.992573,_binary '\0\0\0\0\0\0\0\0\0\0.娓',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-wood-dale-il/image-10/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21355,0.000000,1595460348.376647,_binary '\0\0\0\0\0\0\0\0\0\0.娔',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21356,0.000000,1595460677.860353,_binary '\0\0\0\0\0\0\0\0\0\0\\0\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21357,0.000000,1595460686.824093,_binary '\0\0\0\0\0\0\0\0\0\0\\0\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21358,0.000000,1595460726.811566,_binary '\0\0\0\0\0\0\0\0\0\0\\0\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21359,0.000000,1595461492.977567,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21360,0.000000,1595461496.568953,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21361,0.000000,1595461497.336650,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21362,0.000000,1595461580.255236,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21363,0.000000,1595461912.037538,_binary '&\0\00Pi	ʲ\^',0,301,0,0,0,'https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','https://www.google.com/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21364,0.000000,1595461914.162522,_binary '&\0\00Pi	ʲ\^',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21365,0.000000,1595461915.114757,_binary '&\0\00Pi	ʲ\^',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21366,0.000000,1595461915.094873,_binary '&\0\00Pi	ʲ\^',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21367,0.000000,1595461914.925493,_binary '&\0\00Pi	ʲ\^',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=ChicagoPortagePark','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21368,0.000000,1595461939.659261,_binary '&\0\00Pi	ʲ\^',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21369,0.000000,1595461969.103807,_binary '&\0\00Pi	ʲ\^',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21370,0.000000,1595461969.100568,_binary '&\0\00Pi	ʲ\^',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21371,0.000000,1595461969.114822,_binary '&\0\00Pi	ʲ\^',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21372,0.000000,1595462009.353887,_binary '\0\0\0\0\0\0\0\0\0\0A|',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21373,0.000000,1595462011.549211,_binary '\0\0\0\0\0\0\0\0\0\0A|',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21374,0.000000,1595462011.755921,_binary '&\0\00Pi	ʲ\^',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (Linux; Android 10; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36','',NULL,NULL),(21375,0.000000,1595462013.007123,_binary '\0\0\0\0\0\0\0\0\0\0A|',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21376,0.000000,1595462013.103676,_binary '\0\0\0\0\0\0\0\0\0\0A|',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21377,0.000000,1595462066.802191,_binary '\0\0\0\0\0\0\0\0\0\0.娄',0,200,0,0,0,'https://chicagolandremodeling.com/sample-page-2/page/2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21378,0.000000,1595462318.888394,_binary '\0\0\0\0\0\0\0\0\0\06$',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21379,0.000000,1595462787.510666,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21380,0.000000,1595463012.770560,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery?page_number_0=4','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21381,0.000000,1595463014.768217,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=4','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21382,0.000000,1595463129.203058,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&delight=colofac-135mg-ukiah&he=1482932808','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21383,0.000000,1595463140.755794,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&soap=abilify-in-parkinsons&football=1482861070','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21384,0.000000,1595463343.709028,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(21385,0.000000,1595463402.734243,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(21386,0.000000,1595463447.049063,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&emergency=erythromycin-500-mg-twice-day&encourage=1483046919','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21387,0.000000,1595463457.967488,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&target=diazepam-10-mg-dosierung-aspirin&die=1483004269','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21388,0.000000,1595463467.591641,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&economic=ibuprofen-illegal-in-japan&criminal=1482804060','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21389,0.000000,1595463480.742224,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&perform=medicament-kerlone-20-mg-prednisone&shop=1482801173','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21390,0.000000,1595463557.239720,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595463556.2214999198913574218750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21391,0.000000,1595463558.322740,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21392,0.000000,1595463559.674363,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21393,0.000000,1595463644.516956,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/g','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21394,0.000000,1595463645.895436,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/g/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21395,0.000000,1595463646.304572,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595463645.1624400615692138671875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21396,0.000000,1595463647.424445,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21397,0.000000,1595463648.692820,_binary '\0\0\0\0\0\0\0\0\0\0Ve',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21398,0.000000,1595463658.015609,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21399,0.000000,1595463658.475750,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php?rsd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21400,0.000000,1595463658.951781,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-ads-manager/js/slider/tmpl.js','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21401,0.000000,1595463659.464948,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/resize.php?src=http://www.relationshiptips.club/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21402,0.000000,1595463659.972394,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21403,0.000000,1595463660.487559,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/formcraft/file-upload/server/php/upload.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21404,0.000000,1595463662.224973,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21405,0.000000,1595463663.548900,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21406,0.000000,1595463664.079912,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/recent-backups/download-file.php?file_link=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21407,0.000000,1595463664.608223,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21408,0.000000,1595463665.092223,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21409,0.000000,1595463665.529832,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21410,0.000000,1595463665.996759,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-ecommerce-shop-styling/includes/download.php?filename=../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21411,0.000000,1595463666.709831,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/index.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21412,0.000000,1595463667.167687,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/tHzrNOxhACYKxd.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21413,0.000000,1595463667.681725,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21414,0.000000,1595463668.161618,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21415,0.000000,1595463950.442953,_binary '&\0\0\0pd<\r0',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21416,0.000000,1595463951.921471,_binary '&\0\0\0pd<\r0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21417,0.000000,1595463951.901097,_binary '&\0\0\0pd<\r0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21418,0.000000,1595463951.717860,_binary '&\0\0\0pd<\r0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21419,0.000000,1595463951.758480,_binary '&\0\0\0pd<\r0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21420,0.000000,1595463952.387092,_binary '&\0\0\0pd<\r0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21421,0.000000,1595463951.750677,_binary '&\0\0\0pd<\r0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21422,0.000000,1595463951.700160,_binary '&\0\0\0pd<\r0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(21423,0.000000,1595463958.512136,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/powder-room/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21424,0.000000,1595463961.363621,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21425,0.000000,1595464256.814032,_binary '\0\0\0\0\0\0\0\0\0\0t I',0,301,0,0,0,'http://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(21426,0.000000,1595464273.761547,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/target','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21427,0.000000,1595464275.109631,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/target/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21428,0.000000,1595464412.715564,_binary '\0\0\0\0\0\0\0\0\0\0#',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21429,0.000000,1595464589.655132,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/5540543936_423e37dae4_b','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21430,0.000000,1595464591.028597,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/5540543936_423e37dae4_b/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21431,0.000000,1595464843.594204,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21432,0.000000,1595464848.737544,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21433,0.000000,1595464859.450906,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21434,0.000000,1595464863.147471,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21435,0.000000,1595464873.022233,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21436,0.000000,1595464876.557591,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21437,0.000000,1595464886.493434,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/modules/autoupgrade/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21438,0.000000,1595464890.040997,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/modules/autoupgrade/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21439,0.000000,1595464898.985952,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21440,0.000000,1595464902.768784,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21441,0.000000,1595464911.274083,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21442,0.000000,1595464915.248272,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21443,0.000000,1595464924.539543,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21444,0.000000,1595464928.756830,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21445,0.000000,1595464939.448686,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/modules/ps_facetedsearch/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21446,0.000000,1595464943.814054,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/modules/ps_facetedsearch/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21447,0.000000,1595464952.282269,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21448,0.000000,1595464956.509144,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21449,0.000000,1595464967.266040,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/system/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21450,0.000000,1595464971.062177,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/system/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21451,0.000000,1595464980.342693,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/modules/gamification/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21452,0.000000,1595464984.401900,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/modules/gamification/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21453,0.000000,1595464992.505933,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/shop/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21454,0.000000,1595464997.269637,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/category/bathroom/feed/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21455,0.000000,1595464997.443156,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/shop/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21456,0.000000,1595465007.512027,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21457,0.000000,1595465011.953723,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21458,0.000000,1595465021.932378,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/laravel/click_e_money/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21459,0.000000,1595465026.128551,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/laravel/click_e_money/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21460,0.000000,1595465037.428818,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/mahara/auth/saml/extlib/simplesamlphp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21461,0.000000,1595465041.101007,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/mahara/auth/saml/extlib/simplesamlphp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21462,0.000000,1595465053.738683,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/concrete/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21463,0.000000,1595465057.283466,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/concrete/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21464,0.000000,1595465068.830252,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/wbs/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21465,0.000000,1595465072.569028,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/wbs/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21466,0.000000,1595465081.070206,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/app1/_lib/libraries/sys/dom_pdf/dompdf/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21467,0.000000,1595465084.733735,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/app1/_lib/libraries/sys/dom_pdf/dompdf/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21468,0.000000,1595465095.196527,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/enfold-child/update_script/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21469,0.000000,1595465099.866871,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/enfold-child/update_script/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21470,0.000000,1595465109.558223,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/proguard/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21471,0.000000,1595465113.036302,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/proguard/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21472,0.000000,1595465113.208503,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/locations/remodeling-contractors-northbrook-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21473,0.000000,1595465120.996322,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/mapa/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21474,0.000000,1595465125.025050,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/mapa/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21475,0.000000,1595465134.270055,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/cambio/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21476,0.000000,1595465138.598216,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/cambio/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21477,0.000000,1595465148.564439,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/__MACOSX/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21478,0.000000,1595465152.544679,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/__MACOSX/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21479,0.000000,1595465164.445962,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/quotation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21480,0.000000,1595465168.198535,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/quotation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21481,0.000000,1595465179.429219,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/mm-plugin/inc/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21482,0.000000,1595465182.708951,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21483,0.000000,1595465183.605735,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/mm-plugin/inc/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21484,0.000000,1595465192.885749,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/onefolder/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21485,0.000000,1595465196.494682,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/onefolder/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21486,0.000000,1595465204.167088,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/pro/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21487,0.000000,1595465207.553766,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/pro/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21488,0.000000,1595465215.826534,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/staff/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21489,0.000000,1595465220.394746,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/staff/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21490,0.000000,1595465228.972514,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/supervision/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21491,0.000000,1595465232.563865,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/supervision/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21492,0.000000,1595465242.187532,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/icms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21493,0.000000,1595465245.515403,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/icms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21494,0.000000,1595465254.813379,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/services/lib/pusher-http-php/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21495,0.000000,1595465258.809514,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/services/lib/pusher-http-php/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21496,0.000000,1595465268.454329,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/release/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21497,0.000000,1595465272.487664,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/release/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21498,0.000000,1595465282.403129,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/backend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21499,0.000000,1595465286.864347,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/backend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21500,0.000000,1595465297.537128,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/freelance039/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21501,0.000000,1595465301.256753,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/freelance039/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21502,0.000000,1595465310.241978,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/sistema/dompdf-master/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21503,0.000000,1595465313.931862,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/sistema/dompdf-master/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21504,0.000000,1595465321.451605,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/tms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21505,0.000000,1595465325.569045,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/tms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21506,0.000000,1595465333.461993,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/old/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21507,0.000000,1595465337.541818,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/old/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21508,0.000000,1595465348.192033,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/cnishopping/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21509,0.000000,1595465352.009740,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/cnishopping/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21510,0.000000,1595465362.246907,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/protected/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21511,0.000000,1595465365.978660,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/protected/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21512,0.000000,1595465375.719121,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/2020/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21513,0.000000,1595465379.131537,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/2020/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21514,0.000000,1595465387.740426,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/2019/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21515,0.000000,1595465391.522338,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/2019/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21516,0.000000,1595465402.223240,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21517,0.000000,1595465406.223395,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21518,0.000000,1595465418.001626,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/Code/snippets/html2pdf-master/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21519,0.000000,1595465421.132782,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/Code/snippets/html2pdf-master/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21520,0.000000,1595465431.521573,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/pp/basic/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21521,0.000000,1595465435.153863,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/pp/basic/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21522,0.000000,1595465445.700373,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/web.public/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21523,0.000000,1595465447.211538,_binary '&\0\0A\M~v\0vO',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21524,0.000000,1595465448.974026,_binary '&\0\0A\M~v\0vO',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21525,0.000000,1595465448.947073,_binary '&\0\0A\M~v\0vO',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21526,0.000000,1595465449.023926,_binary '&\0\0A\M~v\0vO',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21527,0.000000,1595465449.034484,_binary '&\0\0A\M~v\0vO',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21528,0.000000,1595465449.050898,_binary '&\0\0A\M~v\0vO',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21529,0.000000,1595465449.057749,_binary '&\0\0A\M~v\0vO',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21530,0.000000,1595465449.078048,_binary '&\0\0A\M~v\0vO',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21531,0.000000,1595465450.170620,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/web.public/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21532,0.000000,1595465458.792745,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/servicecommon/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21533,0.000000,1595465461.825797,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/servicecommon/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21534,0.000000,1595465473.497953,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/woodfieldestates/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21535,0.000000,1595465477.116337,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/woodfieldestates/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21536,0.000000,1595465487.252668,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/old_stuff/meihome/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21537,0.000000,1595465490.829302,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/old_stuff/meihome/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21538,0.000000,1595465497.901579,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/dacol/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21539,0.000000,1595465502.558452,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/dacol/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21540,0.000000,1595465511.461579,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/freelandadm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21541,0.000000,1595465514.632847,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/freelandadm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21542,0.000000,1595465524.930625,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/Bank_bak/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21543,0.000000,1595465528.123589,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/Bank_bak/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21544,0.000000,1595465535.853680,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/watern/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21545,0.000000,1595465540.444683,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/watern/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21546,0.000000,1595465549.653863,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/test/med-decision/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21547,0.000000,1595465554.098052,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/test/med-decision/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21548,0.000000,1595465565.286255,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/site/PortalEscolar/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21549,0.000000,1595465568.618677,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/site/PortalEscolar/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21550,0.000000,1595465580.720527,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/dev/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21551,0.000000,1595465584.261530,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/dev/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21552,0.000000,1595465593.086098,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/admin_temp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21553,0.000000,1595465597.020870,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/admin_temp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21554,0.000000,1595465605.734311,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/Yii/basic/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21555,0.000000,1595465609.005986,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/Yii/basic/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21556,0.000000,1595465619.330596,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/MyProject/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21557,0.000000,1595465623.025387,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/MyProject/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21558,0.000000,1595465632.976862,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/en/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21559,0.000000,1595465636.748008,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/en/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21560,0.000000,1595465645.213193,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/administration/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21561,0.000000,1595465649.182648,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/administration/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21562,0.000000,1595465659.386471,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/google/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21563,0.000000,1595465662.781435,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/google/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21564,0.000000,1595465671.645930,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/prensa.api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21565,0.000000,1595465675.042082,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/prensa.api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21566,0.000000,1595465681.311548,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/assets/translation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21567,0.000000,1595465685.521355,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/assets/translation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21568,0.000000,1595465692.949521,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/site/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21569,0.000000,1595465696.330692,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/site/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21570,0.000000,1595465707.026426,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/assets/translation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21571,0.000000,1595465710.710175,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/assets/translation/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21572,0.000000,1595465721.565940,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/assets/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21573,0.000000,1595465725.232738,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/assets/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21574,0.000000,1595465734.709482,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/cpntest/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21575,0.000000,1595465739.049423,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/cpntest/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21576,0.000000,1595465746.976873,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21577,0.000000,1595465750.386805,_binary '\0\0\0\0\0\0\0\0\0\0Rv',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','python-requests/2.24.0','',NULL,NULL),(21578,0.000000,1595465821.401187,_binary '*\0\0\0\0\0\0\0)',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(21579,0.000000,1595465984.284845,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&barrier=fluoxetine-10-mg-r1479&pace=1483091227','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21580,0.000000,1595466319.272396,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&deaf=donde-comprar-benadryl-en-mexico&umbrella=1482988595','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21581,0.000000,1595466359.048753,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&reader=orlistat-free-prescription-uk&safe=1483091873','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21582,0.000000,1595466388.608578,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&drama=facebook-runned-buy-cialis&disapproval=1482962398','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21583,0.000000,1595466420.219663,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&individual=medicamento-citalopram-40-mg&leader=1482961526','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21584,0.000000,1595466433.427595,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21585,0.000000,1595466587.554086,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/do-it-yourself-bathroom-ideas','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21586,0.000000,1595466742.629498,_binary '\0\0\0\0\0\0\0\0\0\0.娇',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-master-bath/mendotamasterbath3/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21587,0.000000,1595467441.548599,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21588,0.000000,1595467604.248063,_binary '\0\0\0\0\0\0\0\0\0\0Vb',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21589,0.000000,1595467605.751708,_binary '\0\0\0\0\0\0\0\0\0\0Vb',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21590,0.000000,1595467613.544028,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21591,0.000000,1595467756.617817,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21592,0.000000,1595467758.716468,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21593,0.000000,1595467779.047671,_binary '\0\0\0\0\0\0\0\0\0\064\',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','',NULL,NULL),(21594,0.000000,1595468071.376138,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595468068.0881640911102294921875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21595,0.000000,1595468303.247573,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/comments/feed/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21596,0.000000,1595468668.165084,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/2018/09','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21597,0.000000,1595468671.073447,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/2018/09/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21598,0.000000,1595468854.300032,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21599,0.000000,1595468913.471326,_binary '\0\0\0\0\0\0\0\0\0\0\"Kt\',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21600,0.000000,1595469019.777287,_binary '\0\0\0\0\0\0\0\0\0\0\"Kt\',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21601,0.000000,1595469114.032023,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/services','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21602,0.000000,1595469490.929848,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21603,0.000000,1595469492.261725,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21604,0.000000,1595469492.240595,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21605,0.000000,1595469521.305974,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,404,0,0,0,'https://chicagolandremodeling.com/category/kitchen-menu/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21606,0.000000,1595469552.319065,_binary '\0\0\0\0\0\0\0\0\0\0.娓',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/mattesonbath12/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21607,0.000000,1595469807.282197,_binary '\0\0\0\0\0\0\0\0\0\0\"Kt\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21608,0.000000,1595469860.610789,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&saving=ciproxin-500-mg-somministrazione&change=1482758341','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21609,0.000000,1595469877.270999,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&bunch=cytotec-online-australia-pharmacy&root=1482973743','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21610,0.000000,1595469890.499222,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&tone=buy-viagra-safely-online-uk-visa&colour=1482946346','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21611,0.000000,1595469907.022245,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&tear=300-mg-of-gabapentin-for-back-pain&impressive=1483031431','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21612,0.000000,1595469931.738222,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/call-answer','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21613,0.000000,1595469932.994362,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/call-answer/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21614,0.000000,1595470067.222810,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21615,0.000000,1595470399.341137,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21616,0.000000,1595470402.307675,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21617,0.000000,1595470403.323660,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21618,0.000000,1595470436.510452,_binary '\0\0\0\0\0\0\0\0\0\0hi\r',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','',NULL,NULL),(21619,0.000000,1595470437.791998,_binary '\0\0\0\0\0\0\0\0\0\0hi\r',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://trondsmarine.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21620,0.000000,1595470505.312014,_binary '\0\0\0\0\0\0\0\0\0\0gv6',0,301,0,0,0,'http://chicagolandremodeling.com/old/wp-admin/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(21621,0.000000,1595470507.755822,_binary '\0\0\0\0\0\0\0\0\0\0gv6',0,404,0,0,0,'https://chicagolandremodeling.com/old/wp-admin/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(21622,0.000000,1595470545.994027,_binary '\0\0\0\0\0\0\0\0\0\0.娇',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/mattesonbath9/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21623,0.000000,1595470557.638238,_binary '\0\0\0\0\0\0\0\0\0\0\"Kt\',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php?rsd','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21624,0.000000,1595470684.787336,_binary '\0\0\0\0\0\0\0\0\0\0\"Kt\',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(21625,0.000000,1595470739.187116,_binary '\0\0\0\0\0\0\0\0\0\0%xT',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(21626,0.000000,1595470741.156811,_binary '\0\0\0\0\0\0\0\0\0\0%xT',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','',NULL,NULL),(21627,0.000000,1595470863.701367,_binary '&@K	M/ ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','',NULL,NULL),(21628,0.000000,1595471005.126575,_binary '\0\0\0\0\0\0\0\0\0\0.娄',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/bathroom-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21629,0.000000,1595471055.319091,_binary '\0\0\0\0\0\0\0\0\0\0.娇',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen6/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21630,0.000000,1595471084.532923,_binary '&@K	M/ ',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php?rsd','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','',NULL,NULL),(21631,0.000000,1595471084.981450,_binary '&@K	M/ ',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','',NULL,NULL),(21632,0.000000,1595471215.213201,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/printers-row/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21633,0.000000,1595471252.615245,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21634,0.000000,1595471302.899388,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/shingles','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21635,0.000000,1595471305.186493,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/shingles/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21636,0.000000,1595471682.666169,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21637,0.000000,1595471686.944366,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php?rsd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21638,0.000000,1595471687.839831,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-ads-manager/js/slider/tmpl.js','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21639,0.000000,1595471688.390579,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/resize.php?src=http://www.relationshiptips.club/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21640,0.000000,1595471689.134190,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21641,0.000000,1595471689.639247,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/formcraft/file-upload/server/php/upload.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21642,0.000000,1595471691.203195,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21643,0.000000,1595471693.151678,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21644,0.000000,1595471693.769182,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/recent-backups/download-file.php?file_link=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21645,0.000000,1595471694.530041,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21646,0.000000,1595471695.116272,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21647,0.000000,1595471695.553232,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21648,0.000000,1595471696.115454,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-ecommerce-shop-styling/includes/download.php?filename=../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21649,0.000000,1595471696.868502,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/index.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21650,0.000000,1595471697.478736,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/CoAEeZHOBPpWJb.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21651,0.000000,1595471698.041255,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21652,0.000000,1595471698.963463,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21653,0.000000,1595472366.044165,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','',NULL,NULL),(21654,0.000000,1595472441.883771,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21655,0.000000,1595472443.135326,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21656,0.000000,1595472494.512525,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21657,0.000000,1595472529.390896,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595472528.3454320430755615234375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21658,0.000000,1595472530.682946,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21659,0.000000,1595472533.048591,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21660,0.000000,1595472597.604288,_binary '\0\0\0\0\0\0\0\0\0\0\@m',0,301,0,0,0,'http://chicagolandremodeling.com/','http://www.chicagolandremodeling.net/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36','',NULL,NULL),(21661,0.000000,1595472599.494270,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595472598.4913899898529052734375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21662,0.000000,1595472660.337781,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595472659.3480041027069091796875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21663,0.000000,1595472720.692576,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595472719.6406519412994384765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21664,0.000000,1595472780.200813,_binary '\0\0\0\0\0\0\0\0\0\0\"\*',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21665,0.000000,1595473020.697968,_binary '&AT0c!	\\Z',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21666,0.000000,1595473021.371044,_binary '&AT0c!	\\Z',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/bathroom-remodeling/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(21667,0.000000,1595473110.110887,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&song=generic-form-maxalt&awful=1483004493','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21668,0.000000,1595473119.248076,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&institute=vardenafil-hcl-sale&fly=1482945154','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21669,0.000000,1595473137.911281,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&doctor=pantoprazole-400-mg-tablets&bin=1482872974','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21670,0.000000,1595473708.660427,_binary '\0\0\0\0\0\0\0\0\0\0`\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2751.22 Safari/537.36','',NULL,NULL),(21671,0.000000,1595473728.217817,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21672,0.000000,1595473952.328159,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/seminary-bath/seminarybath1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21673,0.000000,1595474303.131732,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,404,0,0,0,'https://chicagolandremodeling.com/reviews/leah-howard/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21674,0.000000,1595474381.155195,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=3','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21675,0.000000,1595474641.737644,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&tent=plavix-75mg-price-in-south-africa&language=1483077165','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21676,0.000000,1595474947.874463,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21677,0.000000,1595475367.390797,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/beast3x/3xup.php','','python-requests/2.23.0','',NULL,NULL),(21678,0.000000,1595475367.389936,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(21679,0.000000,1595475405.820151,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(21680,0.000000,1595475406.627801,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/beast3x/3xup.php','','python-requests/2.23.0','',NULL,NULL),(21681,0.000000,1595475462.083293,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen4/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21682,0.000000,1595475712.381633,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&maintain=buy-viagra-easy&piece=1483046710','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21683,0.000000,1595475722.365382,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&source=carbamazepine-in-pain&funny=1482916794','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21684,0.000000,1595475739.408394,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&middle=buy-generic-zoloft-online&near=1482873515','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21685,0.000000,1595475848.740715,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/randal-parker','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21686,0.000000,1595475850.256509,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-parker/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21687,0.000000,1595476160.711021,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home/3654978-50x50','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21688,0.000000,1595476162.638322,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/home/3654978-50x50/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21689,0.000000,1595476212.331795,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21690,0.000000,1595476457.907773,_binary '\0\0\0\0\0\0\0\0\0\0_U\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(21691,0.000000,1595476461.439532,_binary '\0\0\0\0\0\0\0\0\0\0_U\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','',NULL,NULL),(21692,0.000000,1595476467.556505,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/offices-commercial-spaces/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21693,0.000000,1595476579.509767,_binary '\0\0\0\0\0\0\0\0\0\06$1',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&celebrate=reciprocity-states-for-texas-chl&island=1483031205','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21694,0.000000,1595476657.330657,_binary '\0\0\0\0\0\0\0\0\0\02',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21695,0.000000,1595476657.330452,_binary '\0\0\0\0\0\0\0\0\0\02',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21696,0.000000,1595476657.328749,_binary '\0\0\0\0\0\0\0\0\0\02',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21697,0.000000,1595476658.416999,_binary '\0\0\0\0\0\0\0\0\0\06\&',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21698,0.000000,1595476658.413863,_binary '\0\0\0\0\0\0\0\0\0\06\&',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21699,0.000000,1595476658.275543,_binary '\0\0\0\0\0\0\0\0\0\06\&',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21700,0.000000,1595476659.703706,_binary '\0\0\0\0\0\0\0\0\0\0#',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21701,0.000000,1595476659.587087,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/.well-known/security.txt','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21702,0.000000,1595476659.814250,_binary '\0\0\0\0\0\0\0\0\0\06\&',0,404,0,0,0,'https://chicagolandremodeling.com/jQBHedWWpkPW/8DC9dFkaITS0LeLi5kJL/XrIlWL8y41vgXXYGEC/ffZwy28DxbbER/8rE4wyDoXtXod4b6Ag','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21703,0.000000,1595476660.176462,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21704,0.000000,1595476660.035792,_binary '\0\0\0\0\0\0\0\0\0\06',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21705,0.000000,1595476660.233838,_binary '\0\0\0\0\0\0\0\0\0\02',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21706,0.000000,1595476662.235473,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21707,0.000000,1595476662.387401,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21708,0.000000,1595476662.366072,_binary '\0\0\0\0\0\0\0\0\0\02',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21709,0.000000,1595476662.332066,_binary '\0\0\0\0\0\0\0\0\0\02',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21710,0.000000,1595476662.346136,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21711,0.000000,1595476662.339011,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21712,0.000000,1595476662.302929,_binary '\0\0\0\0\0\0\0\0\0\02',0,301,0,0,0,'https://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21713,0.000000,1595476662.329405,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/sitemap.xml.gz','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21714,0.000000,1595476662.910121,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21715,0.000000,1595476662.364130,_binary '\0\0\0\0\0\0\0\0\0\06',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21716,0.000000,1595476662.397102,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21717,0.000000,1595476662.649919,_binary '\0\0\0\0\0\0\0\0\0\06',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21718,0.000000,1595476662.288135,_binary '\0\0\0\0\0\0\0\0\0\06',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21719,0.000000,1595476662.393217,_binary '\0\0\0\0\0\0\0\0\0\06',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21720,0.000000,1595476662.358492,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21721,0.000000,1595476662.584886,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21722,0.000000,1595476662.917026,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21723,0.000000,1595476664.283034,_binary '\0\0\0\0\0\0\0\0\0\06',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21724,0.000000,1595476664.283382,_binary '\0\0\0\0\0\0\0\0\0\06',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21725,0.000000,1595476664.317863,_binary '\0\0\0\0\0\0\0\0\0\06',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21726,0.000000,1595476665.278491,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21727,0.000000,1595476665.332731,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21728,0.000000,1595476665.362243,_binary '\0\0\0\0\0\0\0\0\0\02',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21729,0.000000,1595476666.257388,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,302,0,0,0,'https://chicagolandremodeling.com/favicon.ico','','Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)','',NULL,NULL),(21730,0.000000,1595476766.648660,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595476765.4981369972229003906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21731,0.000000,1595476768.332872,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/roofing-2/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21732,0.000000,1595476790.521611,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/category/kitchen/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21733,0.000000,1595476808.854049,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/do-it-yourself-bathroom-ideas/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21734,0.000000,1595476986.546426,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/slide-white','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21735,0.000000,1595476987.872761,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/slide-white/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21736,0.000000,1595477443.180254,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21737,0.000000,1595477516.034807,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595477514.8954629898071289062500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21738,0.000000,1595477517.800532,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21739,0.000000,1595477520.560636,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21740,0.000000,1595477920.953872,_binary '\0\0\0\0\0\0\0\0\0\0.',0,301,0,0,0,'http://chicagolandremodeling.com/feed','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','',NULL,NULL),(21741,0.000000,1595477927.698788,_binary '\0\0\0\0\0\0\0\0\0\0.',0,301,0,0,0,'http://chicagolandremodeling.com/feed/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','',NULL,NULL),(21742,0.000000,1595477948.615126,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21743,0.000000,1595477951.090643,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21744,0.000000,1595478124.298050,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&biscuit=20-mg-bayer-levitra&turn=1482931064','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21745,0.000000,1595478137.252320,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&handle=fluconazole-ireland-otc&exactly=1483075337','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21746,0.000000,1595478341.966849,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&channel=home-banking-bco-macrobid&grandparents=1482902073','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21747,0.000000,1595478382.414002,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&beard=side-effects-tizanidine-2-mg&coal=1482889959','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21748,0.000000,1595478417.549351,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&son=prasugrel-vs-clopidogrel-cost&noisy=1482759335','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21749,0.000000,1595478449.876078,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=1&sch=1&visit=indomethacin-50-mg-capsule-coupon&scheme=1482845338','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21750,0.000000,1595478484.139296,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&box=cipro-hc-otic-how-many-drops-in-1&error=1483060378','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21751,0.000000,1595478519.038234,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&breathing=world-socialist-party-of-the-usa&down=1482918381','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21752,0.000000,1595478556.939695,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&ideal=garcinia-cambogia-common-name-in-hindi&speak=1484939398','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21753,0.000000,1595478668.785715,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&thirsty=wellbutrin-xl-150-mg-and-adderall-and-alcohol&unusual=1482901734','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21754,0.000000,1595478701.035450,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&powder=allopurinol-brand-names-philippines-weather&dancing=1483045815','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21755,0.000000,1595478717.690948,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21756,0.000000,1595478734.885506,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&skilful=fluticasone-furoate-27-5mcg-equal-how-many-mg&beak=1482858385','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21757,0.000000,1595478843.879053,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595478842.4113221168518066406250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21758,0.000000,1595478846.277073,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&buggy=provera-stanja-na-racunu-aik-banke&lose=1482903119','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21759,0.000000,1595478929.347605,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595478927.9489688873291015625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21760,0.000000,1595479276.406678,_binary '\0\0\0\0\0\0\0\0\0\0$d',0,200,0,0,0,'https://chicagolandremodeling.com/contact-us/','https://chicagolandremodeling.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','',NULL,NULL),(21761,0.000000,1595479730.546188,_binary '\0\0\0\0\0\0\0\0\0\0BI\',0,200,1,0,0,'https://chicagolandremodeling.com/bwg_gallery-sitemap.xml','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(21762,0.000000,1595479976.275248,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21763,0.000000,1595480083.535623,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen5/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21764,0.000000,1595480767.195099,_binary '\0\0\0\0\0\0\0\0\0\0E',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(21765,0.000000,1595480771.938191,_binary '\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(21766,0.000000,1595480778.335603,_binary '\0\0\0\0\0\0\0\0\0\0E',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/feedback','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(21767,0.000000,1595480867.411115,_binary '\0\0\0\0\0\0\0\0\0\0.娖',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen7/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21768,0.000000,1595481289.037259,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21769,0.000000,1595481305.189989,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&humour=cetirizine-hcl-1-mgml-syrup-what-is-for&shelf=1482902529','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21770,0.000000,1595481313.714252,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&riding=mesalamine-asacol-mr-tablets-on-sale&relation=1482947411','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21771,0.000000,1595481325.281974,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&volume=zovirax-200-mg-comprimidos-viagra&knee=1483032080','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21772,0.000000,1595481336.163500,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&gamble=nolvadex-kaufen-deutschland&stroke=1483106003','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21773,0.000000,1595481349.958059,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&note=get-generic-viagra-prescription-online&writing=1483103618','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21774,0.000000,1595481369.652010,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&proud=two-100mm-viagra-in-one-day&restricted=1482802356','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21775,0.000000,1595481570.434779,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&swell=viagra-kamagra-cheap-malta&coast=1482760940','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21776,0.000000,1595481636.081206,_binary '*\\0\0\0\0\0\0\0',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','',NULL,NULL),(21777,0.000000,1595481643.295909,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&wrapping=why-take-protonix-first-thing-in-the-morning&report=1482757536','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21778,0.000000,1595481653.128670,_binary '\0\0\0\0\0\0\0\0\0\0\"\+\"',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21779,0.000000,1595481669.303913,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&boil=how-far-in-advaince-to-take-cialis-36-hour-20-mg&signature=1482960758','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21780,0.000000,1595481686.601323,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&listen=prednisone-10mg-dose-pack-21-tablets-sale&examine=1482859908','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21781,0.000000,1595482012.975645,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.9.1','',NULL,NULL),(21782,0.000000,1595482025.267514,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/category/decks-menu','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21783,0.000000,1595482033.525719,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595482032.4390799999237060546875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21784,0.000000,1595482325.267817,_binary '\0\0\0\0\0\0\0\0\0\06$0',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21785,0.000000,1595482544.349587,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21786,0.000000,1595482611.679744,_binary '\0\0\0\0\0\0\0\0\0\06$Z',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=2&sch=1&counter=flomax-available-in-generic&explode=1483019548','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21787,0.000000,1595482698.235567,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/exceptional-home-remodeling-image','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21788,0.000000,1595482699.993099,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/exceptional-home-remodeling-image/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21789,0.000000,1595482716.383504,_binary '\0\0\0\0\0\0\0\0\0\0\C*',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21790,0.000000,1595482717.469881,_binary '\0\0\0\0\0\0\0\0\0\0PV',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21791,0.000000,1595483317.768281,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/lauren-gross','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21792,0.000000,1595483320.904849,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/lauren-gross/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21793,0.000000,1595483776.360432,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21794,0.000000,1595484103.481830,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&employment=anastrozole-kaufen&yellow=1483047032','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21795,0.000000,1595484115.270724,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&arrive=warfarin-online-pharmacy&adult=1483002815','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21796,0.000000,1595484130.602623,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&vote=cialis-one-a-day-costs&earn=1483091429','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21797,0.000000,1595484152.921196,_binary '\0\0\0\0\0\0\0\0\0\0.娑',0,200,0,0,0,'https://chicagolandremodeling.com/log-in/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21798,0.000000,1595484180.155036,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/testimonials','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21799,0.000000,1595484223.914153,_binary '\0\0\0\0\0\0\0\0\0\0.娗',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-location-b/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21800,0.000000,1595484335.952804,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&whisper=grifulvin-rowcmoadreders-reviews&decoration=1482890503','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21801,0.000000,1595484343.632432,_binary '\0\0\0\0\0\0\0\0\0\06$Y',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&drum=costo-de-provera-en-mexico&door=1483005414','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21802,0.000000,1595484349.518428,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&revolution=keflex-500-mg-bula-pdf&exhibition=1482760387','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21803,0.000000,1595484359.454979,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&grow=how-can-i-get-cialis-in-new-york&sum=1483089164','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21804,0.000000,1595484372.868347,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&funny=amerindians-pronunciation-of-acai&apologize=1482919579','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21805,0.000000,1595484394.293416,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&throw=mometasone-spray-nasale-generico&intellegent=1482917372','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21806,0.000000,1595484411.089046,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&embarrassment=discount-vardenafil-online&charity=1483075529','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21807,0.000000,1595484426.943877,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&mom=azithromycin-in-otitis-media&effort=1482859175','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21808,0.000000,1595484444.907970,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21809,0.000000,1595484445.899628,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21810,0.000000,1595484446.508490,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21811,0.000000,1595484447.023471,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21812,0.000000,1595484447.588825,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21813,0.000000,1595484448.199145,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','',NULL,NULL),(21814,0.000000,1595484448.688202,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21815,0.000000,1595484451.842776,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com//wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":0}'),(21816,0.000000,1595484687.452402,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&shake=is-taking-30mg-prednisone-for-six-days-safe&leader=1482904975','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21817,0.000000,1595484715.122136,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&pot=beacita-capsules-hard-orlistat-120-mg-capsules-buy&guy=1482988640','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21818,0.000000,1595484740.014157,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&transfer=diflucan-over-the-counter-in-new-york&disapproval=1483061248','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21819,0.000000,1595484769.464398,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&bandage=nikon-lithium-ion-battery-pack-en-el14-best-buy&rail=1482861439','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21820,0.000000,1595485062.651852,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21821,0.000000,1595485119.556565,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/harry-chapman','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21822,0.000000,1595485121.823999,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/harry-chapman/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21823,0.000000,1595485459.145246,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/category/roofing/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21824,0.000000,1595485538.437834,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21825,0.000000,1595485540.661600,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21826,0.000000,1595485599.741410,_binary '\0\0\0\0\0\0\0\0\0\0r}',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21827,0.000000,1595485856.894436,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,404,0,0,0,'https://chicagolandremodeling.com/author/admin/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21828,0.000000,1595485947.930491,_binary '&h\t\N\"{E',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/5-design-tips-know-remodeling-bathroom/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1','',NULL,NULL),(21829,0.000000,1595486338.674041,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-1597027_1920','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21830,0.000000,1595486340.778930,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-1597027_1920/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21831,0.000000,1595486361.947249,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21832,0.000000,1595486397.525121,_binary '\0\0\0\0\0\0\0\0\0\0Ϯ\~',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(21833,0.000000,1595486599.856540,_binary '\0\0\0\0\0\0\0\0\0\0gVk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(21834,0.000000,1595486731.636445,_binary '\0\0\0\0\0\0\0\0\0\0)A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(21835,0.000000,1595486925.345408,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&sample=where-to-buy-orlistat-pills&nurse=1482803649','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21836,0.000000,1595486993.199998,_binary '\0\0\0\0\0\0\0\0\0\0.娎',0,200,0,0,0,'https://chicagolandremodeling.com/home/kitchen_remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21837,0.000000,1595487211.783383,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/author/admin/page/4/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21838,0.000000,1595487223.888195,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595487223.5170218944549560546875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21839,0.000000,1595487224.879830,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21840,0.000000,1595487226.317695,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21841,0.000000,1595487339.244841,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595487338.8198359012603759765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21842,0.000000,1595487389.560587,_binary '\0\0\0\0\0\0\0\0\0\0.娇',0,200,0,0,0,'https://chicagolandremodeling.com/basements/living/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21843,0.000000,1595487536.180562,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&range=how-much-does-cialis-cost-in-europe&explore=1482803407','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21844,0.000000,1595487654.491859,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21845,0.000000,1595487992.157390,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21846,0.000000,1595487995.952122,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21847,0.000000,1595487996.024431,_binary '\0\0\0\0\0\0\0\0\0\0Ú{',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21848,0.000000,1595488206.720533,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/icon_patios','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21849,0.000000,1595488208.036655,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/icon_patios/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21850,0.000000,1595488476.691960,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21851,0.000000,1595488478.912297,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21852,0.000000,1595488479.833429,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21853,0.000000,1595488933.574390,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21854,0.000000,1595489179.309814,_binary '\0\0\0\0\0\0\0\0\0\0.娒',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-glen-ellyn-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21855,0.000000,1595489295.805675,_binary '\0\0\0\0\0\0\0\0\0\0hi\r',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','',NULL,NULL),(21856,0.000000,1595489297.273269,_binary '\0\0\0\0\0\0\0\0\0\0hi\r',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.omgstrategy.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21857,0.000000,1595489684.080389,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21858,0.000000,1595489686.876843,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21859,0.000000,1595490210.671105,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21860,0.000000,1595490389.787955,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595490389.3612229824066162109375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21861,0.000000,1595490474.755979,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595490474.4228260517120361328125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21862,0.000000,1595490475.939569,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21863,0.000000,1595490477.973631,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21864,0.000000,1595490562.571426,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595490562.2287700176239013671875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21865,0.000000,1595490563.560812,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21866,0.000000,1595490564.812599,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21867,0.000000,1595490799.116577,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&pure=cheap-viagra-co-uk&statue=1482787866','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21868,0.000000,1595490844.929518,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595490844.5913760662078857421875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21869,0.000000,1595490856.949470,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&union=nebenwirkungen-metoprolol-100-mg&farmer=1482760868','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21870,0.000000,1595490869.760968,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&cloud=spironolactone-reviews-side-effects&bathroom=1483003598','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21871,0.000000,1595490881.284383,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&pale=plavix-assistance-at-walmart&exciting=1482789355','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21872,0.000000,1595490892.245401,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&silly=trademarks-that-are-now-generic-viagra&war=1482788024','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21873,0.000000,1595490905.525999,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&building=acyclovir-200-mg-preis&building=1482959937','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21874,0.000000,1595490917.125087,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&urgent=no-prior-prescription-us-cheap-trazodone&baby=1482875730','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21875,0.000000,1595490950.325960,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&convention=indian-mixer-grinder-for-sale-in-uk-zithromax&eye=1482890019','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21876,0.000000,1595490960.951794,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&pain=teva-product-generic-for-paxil-and-where-i-can-buy-it&revision=1483089599','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21877,0.000000,1595491098.350681,_binary '\0\0\0\0\0\0\0\0\0\0\S',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21878,0.000000,1595491103.960580,_binary '\0\0\0\0\0\0\0\0\0\0\S',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21879,0.000000,1595491157.778740,_binary '\0\0\0\0\0\0\0\0\0\0\S',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(21880,0.000000,1595491545.321973,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21881,0.000000,1595492271.426084,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595492270.0117299556732177734375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21882,0.000000,1595492272.262849,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21883,0.000000,1595492274.592849,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21884,0.000000,1595492552.864277,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21885,0.000000,1595492554.096093,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21886,0.000000,1595492800.220757,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21887,0.000000,1595493464.061278,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21888,0.000000,1595493650.766692,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/mattesonbath1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21889,0.000000,1595493787.228674,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&concert=rigid-bonds-in-aspirin&chat=1482786385','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21890,0.000000,1595493798.223915,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&unexpected=abilify-generic-yet&small=1482804064','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21891,0.000000,1595493960.863034,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/bathroom-gallery/?page_number_0=2','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21892,0.000000,1595494117.554493,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21893,0.000000,1595494250.679668,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595494250.3060369491577148437500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21894,0.000000,1595494442.564046,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/ico','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21895,0.000000,1595494444.518619,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/ico/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21896,0.000000,1595494666.263991,_binary '\0\0\0\0\0\0\0\0\0\06d',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; houzzbot; +http://www.houzz.com/)','',NULL,NULL),(21897,0.000000,1595494753.229353,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2018/08/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21898,0.000000,1595494915.862513,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/home/stairs-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21899,0.000000,1595495010.479499,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21900,0.000000,1595495011.729929,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21901,0.000000,1595495012.492521,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21902,0.000000,1595495013.267975,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21903,0.000000,1595495014.129480,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21904,0.000000,1595495014.627601,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21905,0.000000,1595495315.526695,_binary '\0\0\0\0\0\0\0\0\0\0\Yal',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21906,0.000000,1595495379.480101,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21907,0.000000,1595495613.362169,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/matteson-illinois','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21908,0.000000,1595495798.870309,_binary '\0\0\0\0\0\0\0\0\0\0\.Z',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.9.1','',NULL,NULL),(21909,0.000000,1595495802.786192,_binary '\0\0\0\0\0\0\0\0\0\0.娊',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-2/roofing2_1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21910,0.000000,1595496629.893466,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21911,0.000000,1595496679.082199,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/basements/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21912,0.000000,1595496750.035584,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','',NULL,NULL),(21913,0.000000,1595496751.249851,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://marxmarine.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21914,0.000000,1595496851.067925,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&jam=order-flagyl-dergboadre&favorite=1482905162','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21915,0.000000,1595496860.394785,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&beneath=75-mg-risperidone-consta&or=1483046770','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21916,0.000000,1595496875.478140,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&ministry=buy-innopran-xl-now&place=1482760174','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21917,0.000000,1595496889.943121,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&compete=cialis-in-lahore&class=1482861251','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21918,0.000000,1595496903.102877,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&great=amiodarone-in-sheep&partnership=1482874325','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21919,0.000000,1595496941.607493,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&elegant=super-acai-berry-reviews-yahoo&initial=1483047618','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21920,0.000000,1595496957.964327,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&refuse=buy-estrace-2mg-tablets&countryside=1482933527','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21921,0.000000,1595496982.308244,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&sweet=furosemide-brand-names-in-bangladesh&middle=1483031811','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21922,0.000000,1595497041.031724,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/services/service_thumb1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21923,0.000000,1595497146.618669,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&extension=corners-of-mouth-cracked-accutane-generic&indoor=1482988752','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21924,0.000000,1595497168.474393,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&teach=allegra-side-effects-in-adults-weight-gain&pepper=1482788843','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21925,0.000000,1595497186.358787,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&couple=metformin-500-mg-sr-prediabetes-yahoo&revision=1482802865','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21926,0.000000,1595497207.486231,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&success=is-it-safe-to-switch-from-citalopram-to-paxil&elbow=1482803185','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21927,0.000000,1595497294.003984,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21928,0.000000,1595497296.235169,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21929,0.000000,1595497296.934769,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21930,0.000000,1595497698.092382,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/soffit-fascia','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21931,0.000000,1595497700.676970,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(21932,0.000000,1595497821.204432,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&tin=cost-of-lexapro-20mg-without-insurance&warn=1483077495','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21933,0.000000,1595497973.788025,_binary '\0\0\0\0\0\0\0\0\0\0>',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','loginFailValidUsername',NULL,NULL),(21934,0.000000,1595498653.907244,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/rick-flores/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21935,0.000000,1595499169.262191,_binary '\0\0\0\0\0\0\0\0\0\0(JD',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(21936,0.000000,1595499268.513206,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21937,0.000000,1595499445.051393,_binary '\0\0\0\0\0\0\0\0\0\0%U',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21938,0.000000,1595499447.963976,_binary '\0\0\0\0\0\0\0\0\0\0%U',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(21939,0.000000,1595499752.896101,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=2','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21940,0.000000,1595499781.524140,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&surface=metformin-in-dogs&tap=1482903789','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21941,0.000000,1595499786.517486,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&fold=quetiapine-25-mg-for-sleep&hide=1482758353','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21942,0.000000,1595499795.951987,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&tube=can-zoloft-work-in-4-days&soldier=1482945794','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21943,0.000000,1595499857.027996,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21944,0.000000,1595499881.956363,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&sea=shelf-life-of-ibuprofen-600-mg-pharmacy&exit=1483089795','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21945,0.000000,1595499909.999596,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&marketing=thoughts-on-generic-propecia&patient=1483104385','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21946,0.000000,1595499935.576871,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&elevator=depakote-sprinkle-500-mg&offer=1482804110','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21947,0.000000,1595499956.732189,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&hot=30-mg-adderall-xr-beads-under-tongue&litre=1484940566','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21948,0.000000,1595500091.673488,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&rider=in-welchen-l?ndern-kann-man-viagra-rezeptfrei-kaufen&yawn=1483046634','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21949,0.000000,1595500114.669522,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&video=amoxicillin-capsules-in-applesauce-cinnamon&disapproval=1482760265','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21950,0.000000,1595500133.352694,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&flying=can-you-buy-zovirax-cream-otc-in-toronto&worker=1483060044','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21951,0.000000,1595500133.707226,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21952,0.000000,1595500134.177741,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php?rsd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21953,0.000000,1595500134.679092,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-ads-manager/js/slider/tmpl.js','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21954,0.000000,1595500135.170949,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/resize.php?src=http://www.relationshiptips.club/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21955,0.000000,1595500135.621052,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-mobile-detector/cache/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21956,0.000000,1595500135.884391,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/home/basement_remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21957,0.000000,1595500136.093198,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/formcraft/file-upload/server/php/upload.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21958,0.000000,1595500137.487035,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/revslider/temp/update_extract/revslider/db.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21959,0.000000,1595500138.437593,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21960,0.000000,1595500139.184852,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/recent-backups/download-file.php?file_link=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21961,0.000000,1595500139.676994,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21962,0.000000,1595500140.093156,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=/etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21963,0.000000,1595500140.594004,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21964,0.000000,1595500141.028459,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-ecommerce-shop-styling/includes/download.php?filename=../../../../../../../../../etc/passwd','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21965,0.000000,1595500141.749140,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/index.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21966,0.000000,1595500142.279412,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/wp-symposium/server/php/PBjlPBSkTtERlr.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21967,0.000000,1595500142.791386,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21968,0.000000,1595500143.061019,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21969,0.000000,1595500143.333839,_binary '\0\0\0\0\0\0\0\0\0\0\"E',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32','',NULL,NULL),(21970,0.000000,1595500146.351048,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21971,0.000000,1595500146.742755,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/?author=2','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21972,0.000000,1595500147.236703,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21973,0.000000,1595500147.753273,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=https://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21974,0.000000,1595500148.196204,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21975,0.000000,1595500148.826806,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','',NULL,NULL),(21976,0.000000,1595500149.352676,_binary '\0\0\0\0\0\0\0\0\0\0\rZ\',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21977,0.000000,1595500151.727674,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&stressed=trileptal-300-mg-contraindicaciones&strategy=1483075077','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21978,0.000000,1595500154.063331,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595500153.6108438968658447265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21979,0.000000,1595500155.399934,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21980,0.000000,1595500157.599256,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21981,0.000000,1595500276.793642,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595500276.3538100719451904296875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21982,0.000000,1595500277.907528,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21983,0.000000,1595500280.670827,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21984,0.000000,1595500578.149949,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21985,0.000000,1595501205.700869,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595501204.0662040710449218750000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(21986,0.000000,1595501206.374363,_binary '\0\0\0\0\0\0\0\0\0\0Vh',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21987,0.000000,1595501209.645258,_binary '\0\0\0\0\0\0\0\0\0\0Vh',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(21988,0.000000,1595501514.890884,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/testimonials/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21989,0.000000,1595501589.267426,_binary '\0\0\0\0\0\0\0\0\0\0\"\X\'',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; houzzbot; +http://www.houzz.com/)','',NULL,NULL),(21990,0.000000,1595501662.781201,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21991,0.000000,1595501685.046430,_binary '\0\0\0\0\0\0\0\0\0\0z',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(21992,0.000000,1595501869.365313,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21993,0.000000,1595501893.242061,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/?m=201202','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(21994,0.000000,1595502051.754900,_binary '\0\0\0\0\0\0\0\0\0\0.娘',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen6/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(21995,0.000000,1595502274.753032,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/author/admin/page/4','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(21996,0.000000,1595502353.619439,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,200,0,0,0,'https://chicagolandremodeling.com/log-in/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21997,0.000000,1595502427.207835,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&worship=effects-of-glucophage-in-a-nondiabetic&biology=1482787490','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(21998,0.000000,1595502441.644734,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'https://chicagolandremodeling.com/wr_cf_post_type/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(21999,0.000000,1595502746.020809,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=1&sch=1&painter=order-cialis-c20&flour=1482844534','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22000,0.000000,1595502773.421648,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&impressed=alfuzosin-er-10-mg&promote=1482789537','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22001,0.000000,1595502799.596275,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-blog-content.php?sh=1&pr=3&ct=4&mt=1&sch=2&price=dexamethasone-in-nose&sharp=1484940897','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22002,0.000000,1595502855.857451,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=1&movie=naltrexone-hcl-tablets-review&major=1482818087','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22003,0.000000,1595502878.951027,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=1&secretary=walgreens-generic-levitra&route=1482818092','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22004,0.000000,1595502902.788918,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&fashion=price-of-one-fluconazole-tablet&awake=1482890369','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22005,0.000000,1595502922.316312,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&interpretation=montelukast-10mg-tab-price&opinion=1482989480','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22006,0.000000,1595502942.628460,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&gate=teleskopauszug-baclofen-miele-uk&party=1483004619','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22007,0.000000,1595502958.681922,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&range=paroxetine-10-mg-kairos-cross&princess=1483005751','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22008,0.000000,1595502973.725051,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&bury=alli-weight-loss-safe&photographer=1483089233','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22009,0.000000,1595502987.770780,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&manufacturer=ebay-glimepiride-4-mg&register=1483091327','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22010,0.000000,1595503000.876787,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&get=minocycline-100-mg-capsules-side-effects&mum=1483103267','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22011,0.000000,1595503013.140674,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&amuse=lamisil-cream-dosage-ringworm-in-humans&bear=1483074978','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22012,0.000000,1595503025.230859,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&chemist=organi-honey-peel-ingredients-in-aleve&town=1483076393','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22013,0.000000,1595503032.715035,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/patios','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22014,0.000000,1595503036.404287,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&calculate=order-metronidazole-tqeovertoz&mathematics=1482803384','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22015,0.000000,1595503045.472725,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&household=mylan-naproxen-ec-375-mg-tab&battle=1482859381','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22016,0.000000,1595503053.511493,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&secondary=adderall-pink-20-mg-images&great=1484942338','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22017,0.000000,1595503062.029076,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&institution=what-is-meloxicam-15-mg-tablets-used-for&command=1482904045','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22018,0.000000,1595503068.061317,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&feeling=tegretol-xr-to-tegretol-conversion-disorder&parallel=1482801870','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22019,0.000000,1595503306.921293,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/mendotahallbath7/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22020,0.000000,1595503360.855120,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22021,0.000000,1595503456.196371,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22022,0.000000,1595503457.299492,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22023,0.000000,1595503457.866533,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/oembed/1.0/embed?url=http://chicagolandremodeling.com','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22024,0.000000,1595503458.467087,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22025,0.000000,1595503462.112728,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22026,0.000000,1595503462.640665,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22027,0.000000,1595503463.241448,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22028,0.000000,1595503463.893030,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22029,0.000000,1595503465.234834,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22030,0.000000,1595503465.838387,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22031,0.000000,1595503466.479882,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22032,0.000000,1595503467.123321,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22033,0.000000,1595503467.657886,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22034,0.000000,1595503468.352328,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22035,0.000000,1595503469.009693,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22036,0.000000,1595503469.637009,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22037,0.000000,1595503470.258051,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22038,0.000000,1595503470.839077,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22039,0.000000,1595503471.456551,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22040,0.000000,1595503472.327604,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22041,0.000000,1595503472.936901,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22042,0.000000,1595503473.534054,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22043,0.000000,1595503474.128101,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22044,0.000000,1595503474.752738,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','',NULL,NULL),(22045,0.000000,1595503475.232547,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,200,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(22046,0.000000,1595503475.844976,_binary '\0\0\0\0\0\0\0\0\0\0٠[',0,503,0,0,0,'http://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','lockedOut','Exceeded the maximum number of login failures which is: 20. The last username they tried to sign in with was: \'elreynoso\'',NULL),(22047,0.000000,1595503964.669301,_binary '\0\0\0\0\0\0\0\0\0\06$K',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&remain=roaccutane-gel-prix&choice=1482788718','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22048,0.000000,1595504610.487342,_binary '\0\0\0\0\0\0\0\0\0\0h\G',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22049,0.000000,1595504613.649896,_binary '\0\0\0\0\0\0\0\0\0\0h\G',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22050,0.000000,1595504618.014137,_binary '\0\0\0\0\0\0\0\0\0\0h\G',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22051,0.000000,1595504618.085801,_binary '\0\0\0\0\0\0\0\0\0\0h\G',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22052,0.000000,1595504692.728519,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22053,0.000000,1595504774.014056,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22054,0.000000,1595504776.029398,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22055,0.000000,1595505213.715585,_binary '\0\0\0\0\0\0\0\0\0\0.娔',0,200,0,0,0,'https://chicagolandremodeling.com/home/badgem-1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22056,0.000000,1595505356.438886,_binary '\0\0\0\0\0\0\0\0\0\0.娈',0,200,0,0,0,'https://chicagolandremodeling.com/home/square-facebook-512/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22057,0.000000,1595505470.712173,_binary '\0\0\0\0\0\0\0\0\0\0.r',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','',NULL,NULL),(22058,0.000000,1595505472.840486,_binary '\0\0\0\0\0\0\0\0\0\0.r',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','',NULL,NULL),(22059,0.000000,1595505493.633064,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22060,0.000000,1595505495.162541,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22061,0.000000,1595505495.202847,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22062,0.000000,1595505575.283387,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&box=flagyl-dogs-liquid&drug=1482859513','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22063,0.000000,1595505764.285606,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&vote=generic-viagra-from-canada-reviews&mix=1482991497','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22064,0.000000,1595505772.668335,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&salt=pet-amoxil-500-sale-non-prescription&lid=1482788115','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22065,0.000000,1595505780.111472,_binary '*\\"\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/trx_addons/v2/get/sc_layout?sc=print_r','','python-requests/2.18.4','',NULL,NULL),(22066,0.000000,1595505789.227090,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&ease=ibuprofen-abz-600-mg-fta-20-st&infection=1482947619','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22067,0.000000,1595505801.112225,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&suffering=real-cialis-professional&temperature=1483031628','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22068,0.000000,1595505812.059418,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&insurance=best-way-to-taper-off-lamictal&sail=1483075805','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22069,0.000000,1595505968.927701,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&goal=diclac-75-mg-beipackzettel-ciprofloxacin&meeting=1482757949','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22070,0.000000,1595505976.711374,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22071,0.000000,1595505978.582943,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&police=best-time-to-test-progesterone-levels&threatening=1483005886','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22072,0.000000,1595505986.453583,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&perform=sildenafil-in-pulmonary-hypertension-dose&shave=1482931453','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22073,0.000000,1595505993.075375,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&majority=prednisolone-acis-50-mg-nebenwirkungen-der&upward=1483031449','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22074,0.000000,1595505998.771869,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&expected=genericos-de-viagra-en-farmacias-similares&studio=1482875510','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22075,0.000000,1595506007.762027,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-blog-content.php?sh=1&pr=3&ct=4&mt=1&sch=2&disapprove=buy-viagra-cheap-online-uk-stores&excuse=1484939917','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22076,0.000000,1595506179.239198,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22077,0.000000,1595506181.740987,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22078,0.000000,1595506184.063881,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22079,0.000000,1595506192.216836,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/dsc05754','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22080,0.000000,1595506193.536686,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/dsc05754/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22081,0.000000,1595506244.874052,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://chicagolandremodeling.com/roofing-location-b/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22082,0.000000,1595506335.044708,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&engineering=misoprostol-costo-en-farmacias-del-ahorro-telefono&countryside=1482947070','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22083,0.000000,1595506357.068626,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&pregnant=allegra-via-research-data-collection-documented-in-nar&pride=1482861780','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22084,0.000000,1595506954.850073,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/2018/08','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22085,0.000000,1595506956.744501,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2018/08/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22086,0.000000,1595507011.858517,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22087,0.000000,1595507319.098040,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22088,0.000000,1595507513.109892,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://chicagolandremodeling.com/services/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22089,0.000000,1595508227.437621,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595508226.3415880203247070312500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22090,0.000000,1595508228.425331,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22091,0.000000,1595508230.397545,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22092,0.000000,1595508252.974135,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22093,0.000000,1595508254.304401,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22094,0.000000,1595508315.122428,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595508314.6112079620361328125000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22095,0.000000,1595508316.186931,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22096,0.000000,1595508317.366864,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22097,0.000000,1595508323.881466,_binary '\0\0\0\0\0\0\0\0\0\0.娒',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/mattesonbath10/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22098,0.000000,1595508520.747585,_binary '\0\0\0\0\0\0\0\0\0\0>ҽ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','',NULL,NULL),(22099,0.000000,1595508522.056507,_binary '\0\0\0\0\0\0\0\0\0\0>ҽ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','',NULL,NULL),(22100,0.000000,1595508647.707972,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22101,0.000000,1595508726.742998,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&pay=amitriptyline-5-mg-migraine-medication&musical=1483092048','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22102,0.000000,1595508737.537747,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&down=viagra-for-postmenopausal-women&bargain=1483032255','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22103,0.000000,1595508758.773216,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&march=dexamethasone-0-75mg-tablets-walmart&garbage=1483032800','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22104,0.000000,1595508776.123619,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&dog=how-to-write-xanax-prescriptions&belt=1484942429','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22105,0.000000,1595508798.174615,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&result=is-it-safe-to-take-fish-oil-with-zoloft-generic-name&traffic=1483005997','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22106,0.000000,1595508963.732859,_binary '\0\0\0\0\0\0\0\0\0\04',0,301,0,0,0,'http://www.chicagolandremodeling.com/','','','',NULL,NULL),(22107,0.000000,1595509940.880365,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22108,0.000000,1595510074.059308,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595510073.4614191055297851562500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22109,0.000000,1595510269.514966,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/sarah-huff','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22110,0.000000,1595510271.480058,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/sarah-huff/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22111,0.000000,1595510590.003495,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22112,0.000000,1595511190.445966,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22113,0.000000,1595511256.418283,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22114,0.000000,1595511621.209151,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&horn=manufacturer-diltiazem-india&dangerous=1482861124','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22115,0.000000,1595511691.842499,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&faintly=do-you-need-a-prescription-to-buy-flagyl&performance=1483046892','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22116,0.000000,1595511708.727100,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&slight=telephone-numbers-of-people-selling-cialis-in-hackney&coal=1482789764','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22117,0.000000,1595511728.076934,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&stroke=olmesartan-medoxomil-generico-colombia-earthquake&needle=1483091685','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22118,0.000000,1595511743.171557,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&pleasure=pantoprazole-actavis-20-mg-und-pillars&household=1482947998','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22119,0.000000,1595511763.538271,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&compete=how-long-does-ativan-stay-in-your-system-for&rob=1484941363','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22120,0.000000,1595511836.610581,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-companies-lake-view-east-chicago-il','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22121,0.000000,1595512159.939858,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2017/11/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22122,0.000000,1595512430.747688,_binary '\0\0\0\0\0\0\0\0\0\0UN',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36 OPR/53.0.2907.37','',NULL,NULL),(22123,0.000000,1595512478.428130,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/frank-morris','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22124,0.000000,1595512479.791085,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/frank-morris/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22125,0.000000,1595512607.066080,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22126,0.000000,1595512799.071783,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22127,0.000000,1595512801.027315,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22128,0.000000,1595513403.864156,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/category/blog','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22129,0.000000,1595513846.785848,_binary '\0\0\0\0\0\0\0\0\0\0(JD',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(22130,0.000000,1595513872.745926,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22131,0.000000,1595514077.067818,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22132,0.000000,1595514521.081972,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=1&silk=circulan-4-in-1-dosage-for-amoxicillin&emphasis=1482816584','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22133,0.000000,1595514556.994402,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&spin=side-effects-of-fenofibrate-54-mg-tablet&remain=1482903571','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22134,0.000000,1595514587.936738,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&regulation=nome-generico-do-aldactone&tap=1482757957','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22135,0.000000,1595514621.502283,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&cast=50-mg-diclofenac-potassium&machine=1482945972','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22136,0.000000,1595514653.337020,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&meet=medroxyprogesterone-acetate-price&major=1483075505','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22137,0.000000,1595514680.950365,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&fortune=where-can-i-buy-alli-pills&calculate=1482861469','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22138,0.000000,1595514710.916883,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&couple=dosage-of-levothyroxine-in-humans&holy=1482875600','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22139,0.000000,1595514738.521802,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&property=ezede-loratadine-10-mg-dosage&fixed=1482872956','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22140,0.000000,1595514765.217066,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&interested=is-voltaren-emulgel-over-the-counter&achieve=1482861811','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22141,0.000000,1595514812.315235,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&trip=para-que-serve-o-remedio-clorhidrato-de-diltiazem-60-mg&cupboard=1483077475','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22142,0.000000,1595514836.973743,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&responsibility=prednisolone-acetate-ophthalmic-suspension-usp-1-prices&leader=1482859268','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22143,0.000000,1595514937.693017,_binary '\0\0\0\0\0\0\0\0\0\0.娏',0,200,0,0,0,'https://chicagolandremodeling.com/home-remodeling-tips-chicago-il/home-remodeling/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22144,0.000000,1595515138.596555,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22145,0.000000,1595515511.369319,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/service-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22146,0.000000,1595515514.272854,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/service-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22147,0.000000,1595515593.366037,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22148,0.000000,1595515594.656828,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22149,0.000000,1595515595.605567,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22150,0.000000,1595515733.968625,_binary '\0\0\0\0\0\0\0\0\0\0.娍',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/mattesonbath2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22151,0.000000,1595516123.261841,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/roofing1_2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22152,0.000000,1595516130.579035,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22153,0.000000,1595516131.837546,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22154,0.000000,1595516245.918307,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595516245.2930150032043457031250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22155,0.000000,1595516247.079353,_binary '\0\0\0\0\0\0\0\0\0\0Vb',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22156,0.000000,1595516248.347242,_binary '\0\0\0\0\0\0\0\0\0\0Vb',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22157,0.000000,1595516254.458233,_binary '&0\n\0L`\nKR',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22158,0.000000,1595516255.164172,_binary '&0\n\0L`\nKR',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22159,0.000000,1595516255.202380,_binary '&0\n\0L`\nKR',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22160,0.000000,1595516255.214733,_binary '&0\n\0L`\nKR',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22161,0.000000,1595516255.236067,_binary '&0\n\0L`\nKR',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22162,0.000000,1595516255.217876,_binary '&0\n\0L`\nKR',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22163,0.000000,1595516255.244684,_binary '&0\n\0L`\nKR',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22164,0.000000,1595516255.267473,_binary '&0\n\0L`\nKR',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22165,0.000000,1595516267.319652,_binary '&0\n\0L`\nKR',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22166,0.000000,1595516267.333214,_binary '&0\n\0L`\nKR',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22167,0.000000,1595516267.364321,_binary '&0\n\0L`\nKR',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22168,0.000000,1595516392.282930,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22169,0.000000,1595516646.898743,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/family-rooms','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22170,0.000000,1595516968.246679,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/2013/01/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22171,0.000000,1595517356.733020,_binary '\0\0\0\0\0\0\0\0\0\0>\SN',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36','',NULL,NULL),(22172,0.000000,1595517388.678627,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=1&sch=1&opening=cialis-5-mg-quando-assumerlo&grave=1482844894','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22173,0.000000,1595517395.840363,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&pupil=oral-jelly-kamagra-100-mg&respond=1482789856','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22174,0.000000,1595517481.803709,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&total=where-can-you-buy-acai-berry-pills-in-singapore&global=1482991450','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22175,0.000000,1595517550.058925,_binary '\0\0\0\0\0\0\0\0\0\0.娣',0,200,0,0,0,'https://chicagolandremodeling.com/home/bannnn/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22176,0.000000,1595517653.686439,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22177,0.000000,1595517678.425382,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595517677.6367890834808349609375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22178,0.000000,1595517680.029453,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22179,0.000000,1595517682.309990,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22180,0.000000,1595517691.490481,_binary '\0\0\0\0\0\0\0\0\0\0;b\S',0,301,0,0,0,'http://chicagolandremodeling.com/','http://anti-crisis-seo.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(22181,0.000000,1595517766.702843,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595517766.0615079402923583984375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22182,0.000000,1595517767.948413,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22183,0.000000,1595517769.551761,_binary '\0\0\0\0\0\0\0\0\0\0Vk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22184,0.000000,1595518436.989552,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/roofing-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22185,0.000000,1595518565.897402,_binary '\0\0\0\0\0\0\0\0\0\0:aN',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22186,0.000000,1595518890.492328,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595518888.2195599079132080078125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22187,0.000000,1595518980.875757,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22188,0.000000,1595519421.671076,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595519415.5492620468139648437500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22189,0.000000,1595519421.671293,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/matteson-illinois/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22190,0.000000,1595519790.781447,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,301,0,0,0,'http://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22191,0.000000,1595519808.833038,_binary '\0\0\0\0\0\0\0\0\0\0Pv',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22192,0.000000,1595519809.991331,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22193,0.000000,1595519810.038029,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22194,0.000000,1595519810.071739,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22195,0.000000,1595519810.131786,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22196,0.000000,1595519810.233909,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22197,0.000000,1595519810.111405,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22198,0.000000,1595519810.235644,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22199,0.000000,1595519839.768329,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22200,0.000000,1595519913.268625,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22201,0.000000,1595519913.702312,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22202,0.000000,1595519912.856362,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22203,0.000000,1595519913.837427,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22204,0.000000,1595519932.186423,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22205,0.000000,1595519933.298800,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22206,0.000000,1595519933.858777,_binary '\0\0\0\0\0\0\0\0\0\0Ú{[',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22207,0.000000,1595520097.891827,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/stairs','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22208,0.000000,1595520105.881722,_binary '\0\0\0\0\0\0\0\0\0\03',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','',NULL,NULL),(22209,0.000000,1595520236.715118,_binary '\0\0\0\0\0\0\0\0\0\0:f\n',0,301,0,0,0,'http://www.chicagolandremodeling.com/kitchen-remodeling','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22210,0.000000,1595520237.691425,_binary '\0\0\0\0\0\0\0\0\0\0:f\n',0,301,0,0,0,'http://chicagolandremodeling.com/kitchen-remodeling/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22211,0.000000,1595520264.698967,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22212,0.000000,1595520331.736239,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&branch=what-is-the-best-codeine-syrup&sea=1484940059','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22213,0.000000,1595520367.047284,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&joint=how-to-counteract-drowsiness-from-codeine&fix=1484942285','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22214,0.000000,1595520370.898311,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22215,0.000000,1595520401.319075,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22216,0.000000,1595520403.650764,_binary '\0\0\0\0\0\0\0\0\0\0Pv',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/thankyou/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22217,0.000000,1595520740.220501,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,404,0,0,0,'https://chicagolandremodeling.com/powder-room/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22218,0.000000,1595521055.968056,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/elena-daniels','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22219,0.000000,1595521379.930787,_binary '\0\0\0\0\0\0\0\0\0\0\"\\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(22220,0.000000,1595521407.545616,_binary '\0\0\0\0\0\0\0\0\0\0rw',1,200,0,0,0,'https://chicagolandremodeling.com/2018/03/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.163 Safari/537.36','',NULL,NULL),(22221,0.000000,1595521411.502229,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/2018/03/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/80.0.3987.163 Safari/537.36','',NULL,NULL),(22222,0.000000,1595521499.408828,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22223,0.000000,1595522063.269409,_binary '\0\0\0\0\0\0\0\0\0\0\6x\',0,301,0,0,0,'http://chicagolandremodeling.com/backup/wp-admin/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(22224,0.000000,1595522069.130535,_binary '\0\0\0\0\0\0\0\0\0\0\6x\',0,404,0,0,0,'https://chicagolandremodeling.com/backup/wp-admin/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','',NULL,NULL),(22225,0.000000,1595522097.697955,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22226,0.000000,1595522099.980827,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22227,0.000000,1595522100.284594,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22228,0.000000,1595522100.283291,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22229,0.000000,1595522100.276655,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22230,0.000000,1595522100.284792,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22231,0.000000,1595522100.278175,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22232,0.000000,1595522100.278483,_binary '\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22233,0.000000,1595522111.414946,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22234,0.000000,1595522112.618455,_binary '\0\0\0\0\0\0\0\0\0\0',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22235,0.000000,1595522576.362079,_binary '\0\0\0\0\0\0\0\0\0\0(M\',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-glen-ellyn-il/image-8/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22236,0.000000,1595522576.134404,_binary '\0\0\0\0\0\0\0\0\0\0.娡',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-remodeling/img1b/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22237,0.000000,1595522797.458456,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22238,0.000000,1595522987.041151,_binary '\0\0\0\0\0\0\0\0\0\0',0,302,0,0,0,'https://chicagolandremodeling.com/wp-login.php?action=register','https://chicagolandremodeling.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/66.0.3359.181 Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22239,0.000000,1595522991.047509,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?registration=disabled','https://chicagolandremodeling.com/wp-login.php?action=register','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/66.0.3359.181 Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22240,0.000000,1595523120.310245,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&publicity=furadantin-50-mg-gravidarum&mild=1483049094','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22241,0.000000,1595523137.406715,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&problem=natural-over-counter-viagra-substitute&exit=1482959254','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22242,0.000000,1595523158.435513,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&date=is-fluconazole-over-the-counter-in-usa&sour=1482875557','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22243,0.000000,1595523194.844024,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&construction=lithium-ion-battery-pack-prices&planning=1482916565','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22244,0.000000,1595523227.821320,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&rubbish=weaning-yourself-off-of-celexa-generic&thinking=1482861457','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22245,0.000000,1595523279.252618,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36','',NULL,NULL),(22246,0.000000,1595523281.604363,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,200,0,0,0,'https://chicagolandremodeling.com/locations/home-remodeling-contractors-portage-park-chicago-il/','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36','',NULL,NULL),(22247,0.000000,1595523296.999671,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-jenkins/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22248,0.000000,1595523306.842091,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36','',NULL,NULL),(22249,0.000000,1595523323.040055,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/2013/02/page/2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22250,0.000000,1595523327.306379,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/page/2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22251,0.000000,1595523626.746311,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/seminary-bath','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22252,0.000000,1595523932.855404,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/customcherrywoodoffice','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22253,0.000000,1595523938.251413,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/customcherrywoodoffice/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22254,0.000000,1595524130.909796,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22255,0.000000,1595524427.534648,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22256,0.000000,1595524429.928109,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22257,0.000000,1595524431.206718,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22258,0.000000,1595524542.060112,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/offices-commercial-spaces/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22259,0.000000,1595524851.475423,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2018/08/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22260,0.000000,1595525032.325826,_binary '\0\0\0\0\0\0\0\0\0\06$5',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&joint=how-to-counteract-drowsiness-from-codeine&fix=1484942285','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22261,0.000000,1595525156.501148,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22262,0.000000,1595525414.777457,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22263,0.000000,1595525462.704177,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/roselle-image-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22264,0.000000,1595525465.735433,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/roselle-image-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22265,0.000000,1595525513.071692,_binary '\0\0\0\0\0\0\0\0\0\0Nq\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','',NULL,NULL),(22266,0.000000,1595525515.089850,_binary '\0\0\0\0\0\0\0\0\0\0Nq\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','',NULL,NULL),(22267,0.000000,1595525698.846370,_binary '\0\0\0\0\0\0\0\0\0\0\T\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(22268,0.000000,1595525701.093200,_binary '\0\0\0\0\0\0\0\0\0\0\T\',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(22269,0.000000,1595525701.325690,_binary '\0\0\0\0\0\0\0\0\0\0\T\',0,404,0,0,0,'https://chicagolandremodeling.com/apple-touch-icon-precomposed.png','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(22270,0.000000,1595525701.191807,_binary '\0\0\0\0\0\0\0\0\0\0\T\',0,302,0,0,0,'https://chicagolandremodeling.com/favicon.ico','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0 like Mac OS X) AppleWebKit/602.1.38 (KHTML, like Gecko) Version/10.0 Mobile/14A5297c Safari/602.1','',NULL,NULL),(22271,0.000000,1595525849.645345,_binary '\0\0\0\0\0\0\0\0\0\0\.\r',0,404,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-glen-ellyn-il/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22272,0.000000,1595525954.897088,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=1&wrap=lyteshow-ingredients-in-benadryl&baby=1482818434','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22273,0.000000,1595525982.957212,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&conference=metronidazole-2g-comprar-oro&concert=1482889834','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22274,0.000000,1595526016.844441,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&review=comprar-misoprostol-en-colombia&climbing=1483062838','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22275,0.000000,1595526048.819703,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&hate=les-sorciers-celebrex-generic-name&environment=1482918755','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22276,0.000000,1595526072.291083,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22277,0.000000,1595526074.258079,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery/?page_number_0=1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22278,0.000000,1595526080.734715,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&timetable=laurie-zoloft-phd-in-psychology&peak=1482918531','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22279,0.000000,1595526112.312992,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=1&sch=1&thinking=how-do-i-know-what-mg-of-cialis-to-take&magazine=1482846556','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22280,0.000000,1595526422.461017,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595526417.2910640239715576171875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22281,0.000000,1595526422.462138,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22282,0.000000,1595526428.597381,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22283,0.000000,1595526504.676038,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595526503.5121231079101562500000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22284,0.000000,1595526506.267199,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22285,0.000000,1595526509.375894,_binary '\0\0\0\0\0\0\0\0\0\0Vo',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22286,0.000000,1595526639.226284,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-parker/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22287,0.000000,1595526687.474601,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/g','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22288,0.000000,1595526692.133516,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/g/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22289,0.000000,1595526781.867029,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22290,0.000000,1595526787.320572,_binary '\0\0\0\0\0\0\0\0\0\0.威',0,200,0,0,0,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22291,0.000000,1595527290.828001,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/icon_kitchens','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22292,0.000000,1595527300.820973,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/icon_kitchens/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22293,0.000000,1595527395.277333,_binary '\0\0\0\0\0\0\0\0\0\0.娚',0,200,0,0,0,'https://chicagolandremodeling.com/home/dining_room/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22294,0.000000,1595527964.738551,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595527963.0393071174621582031250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22295,0.000000,1595527965.909262,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22296,0.000000,1595527967.267649,_binary '\0\0\0\0\0\0\0\0\0\0Vg',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22297,0.000000,1595528038.905921,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22298,0.000000,1595528189.616868,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/kitchen_remodeling','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22299,0.000000,1595528192.012050,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/kitchen_remodeling/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22300,0.000000,1595528290.305599,_binary '\0\0\0\0\0\0\0\0\0\0(M\n',0,200,0,0,0,'https://chicagolandremodeling.com/page-sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22301,0.000000,1595528361.830695,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'https://chicagolandremodeling.com/sitemap.xml','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22302,0.000000,1595528365.045463,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://chicagolandremodeling.com/category/bathroom-menu/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22303,0.000000,1595528429.442196,_binary '\0\0\0\0\0\0\0\0\0\0(M\n',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22304,0.000000,1595528490.484812,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/category/roofing-menu','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22305,0.000000,1595528791.753604,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22306,0.000000,1595528916.152790,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22307,0.000000,1595529004.593536,_binary '\0\0\0\0\0\0\0\0\0\0\޸',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36','',NULL,NULL),(22308,0.000000,1595529018.978993,_binary '\0\0\0\0\0\0\0\0\0\0.娐',0,200,0,0,0,'https://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22309,0.000000,1595529131.847018,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&excite=stent-farmacologico-clopidogrel-generic&month=1483088903','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22310,0.000000,1595529223.674167,_binary '\0\0\0\0\0\0\0\0\0\0.娖',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen3/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22311,0.000000,1595529344.473904,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22312,0.000000,1595529391.668671,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/2017/11/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22313,0.000000,1595529695.228989,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/2018/03','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22314,0.000000,1595529907.334059,_binary '\0\0\0\0\0\0\0\0\0\06$J',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=3','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22315,0.000000,1595529996.649409,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22316,0.000000,1595530013.161136,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22317,0.000000,1595530015.875998,_binary '\0\0\0\0\0\0\0\0\0\0\"\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22318,0.000000,1595530303.623794,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/roselle-image-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22319,0.000000,1595530306.030678,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/roselle-image-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22320,0.000000,1595530464.126132,_binary '\0\0\0\0\0\0\0\0\0\0>Ҽ\',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','',NULL,NULL),(22321,0.000000,1595530608.648919,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/2013/01/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22322,0.000000,1595530701.119801,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22323,0.000000,1595530916.791119,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/author/admin/page/3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22324,0.000000,1595531227.255885,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/icon_paintingindoor','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22325,0.000000,1595531234.220400,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/icon_paintingindoor/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22326,0.000000,1595531531.776971,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22327,0.000000,1595531535.020048,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22328,0.000000,1595531796.967056,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/author/admin/feed/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22329,0.000000,1595531835.809715,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/category/uncategorized','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22330,0.000000,1595531837.185470,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22331,0.000000,1595531981.994633,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22332,0.000000,1595532083.731644,_binary '\0\0\0\0\0\0\0\0\0\0m',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(22333,0.000000,1595532086.560734,_binary '\0\0\0\0\0\0\0\0\0\0m',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','',NULL,NULL),(22334,0.000000,1595532098.457330,_binary '\0\0\0\0\0\0\0\0\0\0.娐',0,200,0,0,0,'https://chicagolandremodeling.com/shingles/shingles2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22335,0.000000,1595532142.265884,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/icon_roofing','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22336,0.000000,1595532143.522555,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/icon_roofing/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22337,0.000000,1595532450.638009,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/soffit-fascia','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22338,0.000000,1595532453.041011,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22339,0.000000,1595532629.178264,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595532628.1345219612121582031250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22340,0.000000,1595532675.405201,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/page/2/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22341,0.000000,1595532692.763866,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/comments/feed/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22342,0.000000,1595532695.813807,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/gutters-downspouts/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22343,0.000000,1595532703.639426,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22344,0.000000,1595532711.115834,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-hall-bath/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22345,0.000000,1595532714.268253,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-master-bath/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22346,0.000000,1595532721.531243,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row-bath-2/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22347,0.000000,1595532735.240831,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/dwayne-vega/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22348,0.000000,1595532738.045717,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/harry-chapman/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22349,0.000000,1595532740.993191,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/kelly-osborne/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22350,0.000000,1595532748.017539,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-jenkins/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22351,0.000000,1595532750.607320,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/randal-parker/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22352,0.000000,1595532754.100320,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/rick-flores/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22353,0.000000,1595532754.778716,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/2013/02','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22354,0.000000,1595532756.096119,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/2013/02/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22355,0.000000,1595532757.174726,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/sarah-huff/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22356,0.000000,1595532761.238055,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22357,0.000000,1595532771.745741,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-location-b/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22358,0.000000,1595532777.502435,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/shingles/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22359,0.000000,1595532779.447519,_binary '\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','',NULL,NULL),(22360,0.000000,1595532790.379886,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&injure=ivermectin-treatment-for-mites-in-dogs&link=1482903751','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22361,0.000000,1595532824.057082,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&brick=flordis-celexa-reviews-webmd&knitting=1483047869','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22362,0.000000,1595532853.990259,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&left=cialis-online-lloyds-pharmacy-better&register=1482787385','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22363,0.000000,1595532881.584944,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&pilot=can-you-safely-take-vicodin-and-viagra&fever=1482918317','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22364,0.000000,1595532912.915929,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&tin=cost-of-lexapro-20mg-without-insurance&warn=1483077495','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22365,0.000000,1595532938.618341,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&alone=metformin-in-gestation-diabetes-trial-program&cinema=1483047711','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22366,0.000000,1595532966.177660,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&cancer=promethazine-pills-12-5-mg-mix-with-sprite&urgent=1483088949','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22367,0.000000,1595532989.828867,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&citizen=why-sildenafil-is-cheaper-than-viagra&matching=1482933812','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22368,0.000000,1595533012.512379,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&queen=ketoconazole-pastillas-para-pie-de-atleta-causas&fair=1483031518','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22369,0.000000,1595533034.171116,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=1&mt=1&sch=1&clerk=montelukast-sodium-and-fexofenadine-hydrochloride-price&bury=1482832950','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22370,0.000000,1595533060.688177,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22371,0.000000,1595533062.485747,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-il-bath/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22372,0.000000,1595533117.866495,_binary '\0\0\0\0\0\0\0\0\0\06$O',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/rick-flores/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22373,0.000000,1595533325.054473,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22374,0.000000,1595533369.818964,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/dwayne-vega','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22375,0.000000,1595533372.365568,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/dwayne-vega/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22376,0.000000,1595533675.021251,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/cr1','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22377,0.000000,1595533677.075581,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/cr1/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22378,0.000000,1595534010.433562,_binary '\0\0\0\0\0\0\0\0\0\0:a\',0,301,0,0,0,'http://www.chicagolandremodeling.com/offices-commercial-spaces','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22379,0.000000,1595534011.709073,_binary '\0\0\0\0\0\0\0\0\0\0:a\',0,301,0,0,0,'http://chicagolandremodeling.com/offices-commercial-spaces/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22380,0.000000,1595534428.064913,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/5-design-tips-know-remodeling-bathroom/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22381,0.000000,1595534617.393151,_binary '\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22382,0.000000,1595534768.654317,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&retire=enalapril-5-mg-precio-espa%E5%8D%98a&application=1483060699','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22383,0.000000,1595534914.830664,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595534914.0093998908996582031250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22384,0.000000,1595535116.761091,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595535115.9428949356079101562500','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22385,0.000000,1595535116.766192,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595535115.9135959148406982421875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22386,0.000000,1595535292.686298,_binary '\0\0\0\0\0\0\0\0\0\0:a\',0,301,0,0,0,'https://chicagolandremodeling.com/stairs','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22387,0.000000,1595535297.603384,_binary '\0\0\0\0\0\0\0\0\0\0',0,302,0,0,0,'http://www.chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22388,0.000000,1595535298.051892,_binary '\0\0\0\0\0\0\0\0\0\0\',0,302,0,0,0,'http://www.chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22389,0.000000,1595535299.994043,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','https://chicagolandremodeling.com/wp-admin/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22390,0.000000,1595535300.687357,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22391,0.000000,1595535301.047415,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&bore=baclofen-dura-25-mg&intellegent=1482758953','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22392,0.000000,1595535302.046526,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22393,0.000000,1595535306.158674,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php?redirect_to=https%3A%2F%2Fchicagolandremodeling.com%2Fwp-admin%2F&reauth=1','https://chicagolandremodeling.com/wp-admin/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22394,0.000000,1595535310.298300,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&train=clopidogrel-australia&cough=1482802591','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22395,0.000000,1595535313.097033,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://www.chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22396,0.000000,1595535316.676110,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'http://www.chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22397,0.000000,1595535329.225273,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&milk=zoloft-best-taken-with-food&coast=1482861344','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22398,0.000000,1595535400.616562,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&parallel=generic-celexa-medication&infect=1482904893','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22399,0.000000,1595535417.536094,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&waist=omeprazole-20-mg-instrucciones-en-espanol&here=1483088982','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22400,0.000000,1595535437.494959,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&senior=acai-berry-14-day-cleanse-costco-hours&line=1483104696','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22401,0.000000,1595535482.146556,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&lawyer=can-prednisone-cause-diarrhea-in-toddlers&income=1482788166','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22402,0.000000,1595535501.396995,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&diamond=other-drugs-similar-to-plavix-generic&quality=1482916524','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22403,0.000000,1595535620.760330,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595535619.7478470802307128906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22404,0.000000,1595535621.937511,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22405,0.000000,1595535623.374268,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22406,0.000000,1595535707.500728,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595535706.6887240409851074218750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22407,0.000000,1595535708.651802,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22408,0.000000,1595535710.015260,_binary '\0\0\0\0\0\0\0\0\0\0Vl',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22409,0.000000,1595535831.855546,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22410,0.000000,1595535832.477474,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22411,0.000000,1595535833.017915,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22412,0.000000,1595535833.727323,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22413,0.000000,1595535847.439294,_binary '\0\0\0\0\0\0\0\0\0\0ŃB',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22414,0.000000,1595535848.062763,_binary '\0\0\0\0\0\0\0\0\0\0ŃB',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22415,0.000000,1595535848.605010,_binary '\0\0\0\0\0\0\0\0\0\0ŃB',0,200,0,0,0,'http://chicagolandremodeling.com/?author=1','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22416,0.000000,1595535849.476598,_binary '\0\0\0\0\0\0\0\0\0\0ŃB',0,200,0,0,0,'http://chicagolandremodeling.com/wp-json/wp/v2/users/','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22417,0.000000,1595536020.586623,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/?attachment_id=815','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22418,0.000000,1595536396.618305,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22419,0.000000,1595536399.489236,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22420,0.000000,1595536399.851386,_binary '\0\0\0\0\0\0\0\0\0\0Úz*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22421,0.000000,1595536657.124510,_binary '\0\0\0\0\0\0\0\0\0\06$a',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&couple=zofran-medication-cost-at-walmart&region=1483045875','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22422,0.000000,1595536808.283192,_binary '\0\0\0\0\0\0\0\0\0\0#\y',0,301,0,0,0,'https://chicagolandremodeling.com/bedrooms','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(22423,0.000000,1595536889.482416,_binary '\0\0\0\0\0\0\0\0\0\0#\y',0,200,0,0,0,'https://chicagolandremodeling.com/remodeling-painting/','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(22424,0.000000,1595537040.126172,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595537039.3134860992431640625000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22425,0.000000,1595537250.783119,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/5_stelle','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22426,0.000000,1595537252.076182,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/5_stelle/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22427,0.000000,1595537437.360219,_binary '\0\0\0\0\0\0\0\0\0\0.娘',0,200,0,0,0,'https://chicagolandremodeling.com/matteson-illinois/mattesonkitchen3/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22428,0.000000,1595537593.804860,_binary '\0\0\0\0\0\0\0\0\0\0#\y',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(22429,0.000000,1595537707.310160,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22430,0.000000,1595537823.948749,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595537823.1456720829010009765625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22431,0.000000,1595538249.269923,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&season=wellbutrin-sr-150-mg-uses&safe=1482758367','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22432,0.000000,1595538265.364682,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&crowded=prednisolone-16-mg&information=1483033422','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22433,0.000000,1595538277.127871,_binary '\0\0\0\0\0\0\0\0\0\0#\y',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php?rsd','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(22434,0.000000,1595538280.741628,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&result=low-dose-naltrexone-costs&pool=1482803783','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22435,0.000000,1595538336.963601,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&display=betamox-plus-875-125-mg-amoxicillin&anxiety=1482789917','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22436,0.000000,1595538349.272674,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&jealous=reviews-on-paxil-for-hot-flashes&fashionable=1482945336','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22437,0.000000,1595538358.691191,_binary '*(\0\Z\0\0\0\0ΰ',0,301,0,0,0,'http://chicagolandremodeling.com/about-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(22438,0.000000,1595538359.430183,_binary '*(\0\Z\0\0\0\0ΰ',0,301,0,0,0,'http://chicagolandremodeling.com/about-us/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(22439,0.000000,1595538360.540030,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&fund=lipitor-10-mg-bijsluiter-nolvadex&lazy=1483106448','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22440,0.000000,1595538360.936675,_binary '*(\0\0\0\0\0ΰ',0,301,0,0,0,'http://chicagolandremodeling.com/contact-us','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(22441,0.000000,1595538361.663950,_binary '*(\0\0\0\0\0ΰ',0,301,0,0,0,'http://chicagolandremodeling.com/contact-us/','','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','',NULL,NULL),(22442,0.000000,1595538375.778966,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&beard=reuzel-pink-ingredients-in-aleve&closed=1482875645','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22443,0.000000,1595538388.273754,_binary '\0\0\0\0\0\0\0\0\0\0#\y',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','ZoominfoBot (zoominfobot at zoominfo dot com)','',NULL,NULL),(22444,0.000000,1595538404.762748,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&swelling=what-is-the-generic-name-for-wellbutrin&aloud=1483074835','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22445,0.000000,1595538423.545667,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&atom=revista-de-indias-research-jorge-de-hoyos-puente&interview=1482873917','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22446,0.000000,1595538685.104886,_binary '&A4\4P\a\\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22447,0.000000,1595538686.438565,_binary '&A4\4P\a\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22448,0.000000,1595538686.922571,_binary '&A4\4P\a\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22449,0.000000,1595538686.702442,_binary '&A4\4P\a\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22450,0.000000,1595538686.988836,_binary '&A4\4P\a\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22451,0.000000,1595538686.986941,_binary '&A4\4P\a\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22452,0.000000,1595538687.018437,_binary '&A4\4P\a\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22453,0.000000,1595538687.183760,_binary '&A4\4P\a\\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/?utm_source=GoogleMaps&utm_campaign=ElmwoodPark&utm_medium=GoogleMaps','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22454,0.000000,1595538691.641167,_binary '&A4\4P\a\\',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/gallery/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','',NULL,NULL),(22455,0.000000,1595538802.366179,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/basement_remodeling','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22456,0.000000,1595538803.659651,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/basement_remodeling/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22457,0.000000,1595539427.157434,_binary '\0\0\0\0\0\0\0\0\0\0:aN',0,301,0,0,0,'http://chicagolandremodeling.com/kitchen-remodeling','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22458,0.000000,1595539430.516809,_binary '\0\0\0\0\0\0\0\0\0\0:aN',0,301,0,0,0,'http://chicagolandremodeling.com/kitchen-remodeling/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22459,0.000000,1595539534.854014,_binary '\0\0\0\0\0\0\0\0\0\0\"kv\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','',NULL,NULL),(22460,0.000000,1595539535.922060,_binary '\0\0\0\0\0\0\0\0\0\0\"kv\',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://barte.eu/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22461,0.000000,1595539593.694403,_binary '\0\0\0\0\0\0\0\0\0\0.娄',0,200,0,0,0,'https://chicagolandremodeling.com/kitchen-gallery/kitchen-remodeling-orange-county-1/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22462,0.000000,1595539667.431703,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/home/5540543936_423e37dae4_b','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22463,0.000000,1595539668.746358,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/home/5540543936_423e37dae4_b/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22464,0.000000,1595539741.135095,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595539740.3110930919647216796875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22465,0.000000,1595539829.914940,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595539829.1017289161682128906250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22466,0.000000,1595540297.672823,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/printers-row','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22467,0.000000,1595540309.469076,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/sarah-huff/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22468,0.000000,1595540511.408106,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22469,0.000000,1595540512.840894,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22470,0.000000,1595540512.942128,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22471,0.000000,1595540512.902468,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22472,0.000000,1595540512.941568,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22473,0.000000,1595540512.962957,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22474,0.000000,1595540512.952844,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22475,0.000000,1595540512.963025,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22476,0.000000,1595540560.717117,_binary '\0\0\0\0\0\0\0\0\0\0:f\n',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22477,0.000000,1595540567.371165,_binary '\0\0\0\0\0\0\0\0\0\0G\j\',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','',NULL,NULL),(22478,0.000000,1595540791.959137,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36','',NULL,NULL),(22479,0.000000,1595540808.041468,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595540807.2255399227142333984375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22480,0.000000,1595541033.764557,_binary '\0\0\0\0\0\0\0\0\0\0.娖',0,200,0,0,0,'https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-irving-park-chicago-il/chicago60618/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22481,0.000000,1595541050.211954,_binary '\0\0\0\0\0\0\0\0\0\07\'',0,301,0,0,0,'http://chicagolandremodeling.com/?page_id=2','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22482,0.000000,1595541111.019633,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&beneath=lithium-titanate-price&young=1483062007','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22483,0.000000,1595541122.828149,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&thumb=generic-online-zyrtec&torment=1483105381','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22484,0.000000,1595541202.429827,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&breath=esomeprazole-baownbeuv-reviews&forest=1482975346','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22485,0.000000,1595541222.654098,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&instrument=orlistat-generico-brasil&red=1482801291','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22486,0.000000,1595541267.603099,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&honour=alendros-70-mg-effetti-collaterali-zoloft&pole=1483105700','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22487,0.000000,1595541293.582429,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,404,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22488,0.000000,1595541612.232166,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22489,0.000000,1595541849.847833,_binary '\0\0\0\0\0\0\0\0\0\0ϴ\Y',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','',NULL,NULL),(22490,0.000000,1595541921.572144,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22491,0.000000,1595541922.817209,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=3','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22492,0.000000,1595542788.827654,_binary '$1\"I=\0\\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22493,0.000000,1595542793.367598,_binary '$1\"I=\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/refill','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22494,0.000000,1595542917.336357,_binary '$1\"I=\0\\',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/feedback','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22495,0.000000,1595542949.789521,_binary '$1\"I=\0\\',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1113/feedback','https://chicagolandremodeling.com/contact-us/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22496,0.000000,1595542953.433491,_binary '$1\"I=\0\\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/thankyou/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22497,0.000000,1595542956.474603,_binary '$1\"I=\0\\',1,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/thankyou/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22498,0.000000,1595543140.127088,_binary '\0\0\0\0\0\0\0\0\0\0A/\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.net/','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22499,0.000000,1595543143.053974,_binary '\0\0\0\0\0\0\0\0\0\0A/\',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (X11; Datanyze; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','',NULL,NULL),(22500,0.000000,1595543459.721651,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&rain=norvasc-amlodipina-5-mg&wild=1483106779','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22501,0.000000,1595543471.444725,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22502,0.000000,1595543472.681041,_binary '\0\0\0\0\0\0\0\0\0\04',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22503,0.000000,1595543472.767408,_binary '\0\0\0\0\0\0\0\0\0\0Vc',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22504,0.000000,1595543883.241913,_binary '\0\0\0\0\0\0\0\0\0\0.娌',0,200,0,0,0,'https://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-roselle-il/roselle2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22505,0.000000,1595543955.502386,_binary '\0\0\0\0\0\0\0\0\0\0ϔ',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(22506,0.000000,1595544114.265719,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/gallery/?page_number_0=2','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22507,0.000000,1595544116.522810,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/dwayne-vega/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22508,0.000000,1595544117.475282,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595544116.5984249114990234375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22509,0.000000,1595544120.519223,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&jewelery=amitriptyline-25-mg-for-depression&identify=1482760486','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22510,0.000000,1595544128.279658,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&limit=is-trazodone-available-in-the-uk&guest=1483004469','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22511,0.000000,1595544143.248700,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&trousers=lansor-lansoprazole-30-mg&goods=1483089445','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22512,0.000000,1595544161.802492,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&fly=propecia-1-mg-tablets-usa-buy-online&music=1482948051','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22513,0.000000,1595544179.822542,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&laboratory=is-levaquin-safe-for-kids&soap=1482875943','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22514,0.000000,1595544201.415456,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-blog-content.php?sh=1&pr=3&ct=4&mt=1&sch=2&female=clindamycin-capsules-price&climbing=1484940228','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22515,0.000000,1595544212.503217,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&crash=lisinopril,-no-prescription,-3-day-delivery&calculate=1483031434','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22516,0.000000,1595544230.327922,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&dancer=where-they-sell-lisinopril-in-south-america&quietly=1482873410','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22517,0.000000,1595544327.102242,_binary '\0\0\0\0\0\0\0\0\0\03+Q',0,301,0,0,0,'http://chicagolandremodeling.com/ajax-index.php?url=http://anagocremations.net/short3.css','chicagolandremodeling.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(22518,0.000000,1595544328.001828,_binary '\0\0\0\0\0\0\0\0\0\03+Q',0,404,0,0,0,'https://chicagolandremodeling.com/ajax-index.php?url=http://anagocremations.net/short3.css','chicagolandremodeling.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(22519,0.000000,1595545464.954650,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595545463.1939730644226074218750','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22520,0.000000,1595545695.095798,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/additional-roofing','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22521,0.000000,1595545700.615215,_binary '\0\0\0\0\0\0\0\0\0\0lY',0,200,0,0,0,'https://chicagolandremodeling.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(22522,0.000000,1595545792.628656,_binary '\0\0\0\0\0\0\0\0\0\06$E',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=2&mt=1&sch=2&boil=how-far-in-advaince-to-take-cialis-36-hour-20-mg&signature=1482960758','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22523,0.000000,1595545910.148421,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36','',NULL,NULL),(22524,0.000000,1595545949.033437,_binary '\0\0\0\0\0\0\0\0\0\0.娙',0,200,0,0,0,'https://chicagolandremodeling.com/home/family_room/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22525,0.000000,1595546338.805349,_binary '\0\0\0\0\0\0\0\0\0\0Up',0,301,0,0,0,'https://chicagolandremodeling.com/reviews','https://chicagolandremodeling.com/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; JuziBrowser)','',NULL,NULL),(22526,0.000000,1595546626.120983,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&irritating=best-alternative-to-risperdal&acid=1482787436','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22527,0.000000,1595546830.514109,_binary '\0\0\0\0\0\0\0\0\0\0.娖',0,200,0,0,0,'https://chicagolandremodeling.com/mendota-master-bath/mendotamasterbath2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22528,0.000000,1595546893.294271,_binary '\0\0\0\0\0\0\0\0\0\0\	\"',0,301,0,0,0,'http://chicagolandremodeling.com/vendor/phpunit/phpunit/phpunit.xsd','','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(22529,0.000000,1595546901.261744,_binary '\0\0\0\0\0\0\0\0\0\0\	\"',0,404,0,0,0,'https://chicagolandremodeling.com/vendor/phpunit/phpunit/phpunit.xsd','','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(22530,0.000000,1595546901.136266,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&around=toradol-10-mg-uso-tours&ear=1483048846','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22531,0.000000,1595546919.218783,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&hire=viagra-achat-montreal&closed=1483091868','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22532,0.000000,1595547018.072107,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/gallery/?page_number_0=4','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22533,0.000000,1595547040.291725,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&mate=cost-benicar-without-insurance&engineering=1482760314','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22534,0.000000,1595547063.825717,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=2&sch=2&understand=can-u-take-2-viagra-in-same-day&sticky=1483003258','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22535,0.000000,1595547111.618448,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&achieve=theophylline-600-mg-side-effects&punch=1483076291','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22536,0.000000,1595547130.438137,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&earn=vifort-vigor-450-mg-diphenhydramine&habit=1482874202','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22537,0.000000,1595547148.257099,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&potato=list-of-foods-rich-in-vitamin-k-coumadin&upper=1483046058','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22538,0.000000,1595547165.106680,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&favour=cheap-albuterol-inhaler-no-prescription-needed&ideal=1482859948','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22539,0.000000,1595547189.814846,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22540,0.000000,1595547191.148040,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/micheal-nguyen/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22541,0.000000,1595547365.845261,_binary '\0\0\0\0\0\0\0\0\0\06$1',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&magazine=is-zantac-safe-in-3rd-trimester&village=1482876371','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22542,0.000000,1595547503.029921,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/slide-white','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22543,0.000000,1595547505.172668,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/slide-white/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22544,0.000000,1595547816.990288,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/author/admin/page/2/#content','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22545,0.000000,1595547879.597632,_binary '&\0f4\0\0\0L[O',0,301,0,0,0,'http://chicagolandremodeling.com/','','Dalvik/2.1.0 (Linux; U; Android 9; SM-J337V Build/PPR1.180610.011)','',NULL,NULL),(22546,0.000000,1595547880.038436,_binary '&\0f4\0\0\0L[O',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22547,0.000000,1595547880.893347,_binary '&\0f4\0\0\0L[O',0,301,0,0,0,'http://chicagolandremodeling.com/','','Dalvik/2.1.0 (Linux; U; Android 9; SM-J337V Build/PPR1.180610.011)','',NULL,NULL),(22548,0.000000,1595547881.621759,_binary '&\0f4\0\0\0L[O',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22549,0.000000,1595547881.605544,_binary '&\0f4\0\0\0L[O',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22550,0.000000,1595547881.814998,_binary '&\0f4\0\0\0L[O',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22551,0.000000,1595547881.814138,_binary '&\0f4\0\0\0L[O',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22552,0.000000,1595547881.720314,_binary '&\0f4\0\0\0L[O',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22553,0.000000,1595547881.691483,_binary '&\0f4\0\0\0L[O',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22554,0.000000,1595547881.883560,_binary '&\0f4\0\0\0L[O',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Linux; Android 9; SM-J337V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','',NULL,NULL),(22555,0.000000,1595547983.741404,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/harry-chapman/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22556,0.000000,1595548462.319290,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595548460.8648970127105712890625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22557,0.000000,1595548514.216009,_binary '\0\0\0\0\0\0\0\0\0\0(M\n',0,301,0,0,0,'https://chicagolandremodeling.com/home-remodeling-contractors-schaumburg-il','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22558,0.000000,1595548563.763387,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/bernice-carson','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22559,0.000000,1595548791.396022,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/locations/kitchen-remodeling-contractors-galewood-il/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22560,0.000000,1595548991.848475,_binary '\0\0\0\0\0\0\0\0\0\0.娉',0,200,0,0,0,'https://chicagolandremodeling.com/?attachment_id=919','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22561,0.000000,1595549207.604464,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(22562,0.000000,1595549330.474556,_binary '\0\0\0\0\0\0\0\0\0\0.娎',0,404,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-irving-park-chicago-il/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22563,0.000000,1595549502.142222,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/reviews/edmund-newton/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22564,0.000000,1595549813.509658,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=2&sch=1&goal=cialis-generic-uk-paypal&stage=1482887935','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22565,0.000000,1595549835.848454,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&cycling=zithromax-300-mg-tablet&bomb=1482932656','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22566,0.000000,1595549923.152422,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&spread=prix-robe-berengere-cardura-4mg&rapid=1482947304','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22567,0.000000,1595549982.073053,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&winter=vendita-cialis-generico-online-banking&milk=1483104907','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22568,0.000000,1595550016.307583,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&drugstore=mexican-prednisone-versus-usa&cow=1483075930','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22569,0.000000,1595550049.076954,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&government=does-gabapentin-come-in-tablets&poetry=1482874577','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22570,0.000000,1595550076.656287,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/wp-xmlrpc.php?sh=1&pr=3&ct=4&mt=1&sch=2&crime=where-to-get-garcinia-cambogia-in-stores&plot=1484942666','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22571,0.000000,1595550103.377726,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&finance=amiodarone-hydrochloridum-50-mgml-pyrantel&young=1482758690','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22572,0.000000,1595550129.911173,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=1&mt=1&sch=1&parallel=zyprexa-borderline-personality-disorder&emphasize=1482975187','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22573,0.000000,1595550158.542474,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&little=mama-mio-shrink-to-fit-ingredients-in-aleve&faith=1483034685','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22574,0.000000,1595550390.454297,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595550389.2781779766082763671875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22575,0.000000,1595550589.869268,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/mapquest_tall_logo_large','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22576,0.000000,1595550592.977020,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/mapquest_tall_logo_large/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22577,0.000000,1595550920.689128,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595550918.8644540309906005859375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22578,0.000000,1595550921.868306,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22579,0.000000,1595550923.780578,_binary '\0\0\0\0\0\0\0\0\0\0U\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodeling.net/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22580,0.000000,1595551323.701668,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/gutters-downspouts','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22581,0.000000,1595551326.352982,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/gutters-downspouts/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22582,0.000000,1595551609.924162,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/taylor-weaver/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22583,0.000000,1595551632.328816,_binary '\0\0\0\0\0\0\0\0\0\06:',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22584,0.000000,1595551882.362395,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/reviews/amelia-sanchez','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22585,0.000000,1595551884.214648,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22586,0.000000,1595551885.096461,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22587,0.000000,1595551885.166974,_binary '\0\0\0\0\0\0\0\0\0\0Ú{A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22588,0.000000,1595552005.502830,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/attachment/60606/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22589,0.000000,1595552193.279865,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/service-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22590,0.000000,1595552194.771907,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/service-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22591,0.000000,1595552508.298658,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/customcherrywoodoffice','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22592,0.000000,1595552511.399322,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/customcherrywoodoffice/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22593,0.000000,1595552557.756695,_binary '\0\0\0\0\0\0\0\0\0\0ܵlK',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(22594,0.000000,1595552631.288380,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&drum=viagra-indianapolis&minimum=1482990670','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22595,0.000000,1595552656.100111,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&pen=doxycycline-price-in-mercury&egg=1482758624','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22596,0.000000,1595552675.821385,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=2&sch=1&trip=order-doxycycline-on-line&tail=1483019117','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22597,0.000000,1595552736.353355,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&old-fashioner=sausages-smell-vinegar-aspirin&rhythm=1483062117','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22598,0.000000,1595552754.533053,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&spicy=latisse-generic-version-of-cialis&lie=1483060248','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22599,0.000000,1595552771.571828,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&stretch=panadol-australian-made-sandals&embarrassing=1483034158','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22600,0.000000,1595552790.823537,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&uncertain=how-much-is-xenical-in-dischem&infection=1483034298','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22601,0.000000,1595552809.651594,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&grey=new-medication-in-place-of-coumadin&flavour=1483104650','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22602,0.000000,1595552824.035818,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&hang=generic-name-for-promethazine&tidy=1482873384','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22603,0.000000,1595552837.582676,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=1&mt=1&sch=1&world=naltrexone-e-bupropiona-onde-comprar-celular&farmer=1482847520','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22604,0.000000,1595552849.806125,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&winner=buy-azithromycin-medication-to-cure-clymedia&ring=1482786476','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22605,0.000000,1595552863.779654,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&restore=cryselle-28-inactive-ingredients-in-synthroid&governor=1483075238','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22606,0.000000,1595553131.323061,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595553127.2616329193115234375000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22607,0.000000,1595553468.855424,_binary '\0\0\0\0\0\0\0\0\0\0.娘',0,200,0,0,0,'https://chicagolandremodeling.com/printers-row/printerskitchen4/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22608,0.000000,1595553509.440826,_binary '&\0\\0\0\0\0_',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','',NULL,NULL),(22609,0.000000,1595553510.048687,_binary '&\0\\0\0\0\0_',0,200,0,1,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),(22610,0.000000,1595554033.590341,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595554031.8168110847473144531250','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22611,0.000000,1595554120.518382,_binary '&\0B\0\0\0E;',0,301,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/cosmick-star-rating/asset/main.js?ver=1.1.0','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','',NULL,NULL),(22612,0.000000,1595554122.521207,_binary '&\0B\0\0\0E;',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','',NULL,NULL),(22613,0.000000,1595554122.515727,_binary '&\0B\0\0\0E;',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','',NULL,NULL),(22614,0.000000,1595554122.596095,_binary '&\0B\0\0\0E;',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/1382/refill','https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/?utm_source=GoogleMaps&utm_medium=GoogleMaps&utm_campaign=Chicago-60606','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','',NULL,NULL),(22615,0.000000,1595554397.955989,_binary '\0\0\0\0\0\0\0\0\0\0.娂',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-contractors-elmwood-park-il/chicago60618-2/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22616,0.000000,1595554547.166741,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/author/admin/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22617,0.000000,1595554608.847231,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/2018/03/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22618,0.000000,1595554886.035130,_binary '&I0Iнr',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22619,0.000000,1595554886.035073,_binary '&I0Iнr',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8137/refill','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22620,0.000000,1595554886.035058,_binary '&I0Iнr',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/refill','https://chicagolandremodeling.com/?utm_source=GoogleMapsContacts&utm_medium=GoogleMapsContacts&utm_campaign=Elmwood%20Park','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22621,0.000000,1595554886.035155,_binary '&I0Iнr',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_left.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22622,0.000000,1595554886.035034,_binary '&I0Iнr',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/big_transparent.gif','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22623,0.000000,1595554887.831078,_binary '&I0Iнr',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.png','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22624,0.000000,1595554887.881202,_binary '&I0Iнr',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/themes/images/cursors/cursor_arrow_right.cur','https://chicagolandremodeling.com/wp-content/themes/chimod/style.css','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','',NULL,NULL),(22625,0.000000,1595555148.221571,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595555147.2475769519805908203125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22626,0.000000,1595555176.756105,_binary '\0\0\0\0\0\0\0\0\0\0\',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(22627,0.000000,1595555178.832016,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-json/contact-form-7/v1/contact-forms/8136/feedback','https://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','',NULL,NULL),(22628,0.000000,1595555393.071994,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&butter=il-cialis-5-mg&cell=1483090363','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22629,0.000000,1595555520.243699,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=2&mt=1&sch=2&offend=metacrin-25-mg-benadryl&junior=1482904732','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22630,0.000000,1595555533.502496,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&object=cialis-in-europe&split=1482989832','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22631,0.000000,1595555551.454047,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&transport=levitra-online-com&taxi=1482787659','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22632,0.000000,1595555629.635015,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&fridge=lithium-orotate-for-bi-polar-disorder&steal=1482991323','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22633,0.000000,1595555631.500985,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22634,0.000000,1595555633.639490,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22635,0.000000,1595555634.543540,_binary '\0\0\0\0\0\0\0\0\0\0Vn',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22636,0.000000,1595555639.657802,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&occupy=obat-lasgan-lansoprazole-30-mg&journey=1482917298','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22637,0.000000,1595555653.112231,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&abandoned=viagra-kaufen-magdeburg&league=1483076090','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22638,0.000000,1595555667.762993,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&nut=amoxicillin-100-mg-for-dogs-no-imprint&inch=1482802860','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22639,0.000000,1595555685.134089,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&organ=lacri-lube-ointment-generic-nexium&fear=1482801937','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22640,0.000000,1595555697.887941,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=3&sch=1&time=how-much-liquid-benadryl-for-10-pound-dog&band=1482861453','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22641,0.000000,1595555731.504810,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&infectious=jolly-time-healthy-pop-ingredients-in-benadryl&candidate=1482800979','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22642,0.000000,1595555891.630188,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,200,0,0,0,'https://chicagolandremodeling.com/bathroom-gallery/?page_number_0=1','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22643,0.000000,1595556160.014813,_binary '\0\0\0\0\0\0\0\0\0\06$\',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/kelly-osborne/','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22644,0.000000,1595556208.169222,_binary '\0\0\0\0\0\0\0\0\0\0:=1',0,301,0,0,0,'http://chicagolandremodeling.com/','http://chicagolandremodeling.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','',NULL,NULL),(22645,0.000000,1595557160.694607,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/custom-kitchen-remodel-dallas-tx-joseph-and-berry','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22646,0.000000,1595557163.266672,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/custom-kitchen-remodel-dallas-tx-joseph-and-berry/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22647,0.000000,1595557479.252985,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/lake-shore-drive-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22648,0.000000,1595557517.604570,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(22649,0.000000,1595557548.472728,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/apikey/f0x.php','','python-requests/2.23.0','',NULL,NULL),(22650,0.000000,1595557795.188095,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,404,0,0,0,'https://chicagolandremodeling.com/reviews/leah-howard/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22651,0.000000,1595557899.814178,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&tie=low-cost-paroxetine&light=1482788412','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22652,0.000000,1595557904.552752,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&upstairs=lasix-in-mumbai&impress=1482918494','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22653,0.000000,1595557926.582603,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=1&mt=2&sch=1&soldier=safer-macrobid-or-keflex&pension=1482775114','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22654,0.000000,1595557935.239506,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&ancient=asacol-generic-form-of-nexium&blue=1483062308','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22655,0.000000,1595557947.687933,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&thickness=arjuna-statue-in-mumbai-tv&button=1483089410','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22656,0.000000,1595557970.321261,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=1&mt=3&sch=2&praise=3-7v-lithium-battery-walmart&embarrassment=1482919485','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22657,0.000000,1595557987.883886,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&tomato=wellbutrin-hair-loss-in-front&tone=1483033760','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22658,0.000000,1595558008.220943,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&unkind=burana-400-mg-ibuprofen-dosage&ask=1483103969','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22659,0.000000,1595558023.920971,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&financial=1000-mg-prednisone-in-iv&fetch=1482801564','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22660,0.000000,1595558043.589314,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&mystery=20-mg-to-40-mg-of-cymbalta-for-pain&knit=1482801022','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22661,0.000000,1595558062.229156,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&knitting=xenical-available-in-us&suffer=1482875467','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22662,0.000000,1595558084.956391,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&scare=amoxicillin-tablets-50-mg-buy-online&metre=1482875078','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22663,0.000000,1595558108.343651,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/badgem-1-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22664,0.000000,1595558109.808854,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/badgem-1-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22665,0.000000,1595558121.056954,_binary '\0\0\0\0\0\0\0\0\0\0\'e=',0,301,0,0,0,'http://chicagolandremodeling.com/data/admin/allowurl.txt','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(22666,0.000000,1595558122.698642,_binary '\0\0\0\0\0\0\0\0\0\0\'e=',0,404,0,0,0,'https://chicagolandremodeling.com/data/admin/allowurl.txt','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(22667,0.000000,1595558205.079225,_binary '\0\0\0\0\0\0\0\0\0\06$',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=3&mt=1&sch=2&partner=azilsartan-conversion-to-valsartan-generic&preserve=1483088949','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22668,0.000000,1595558421.687596,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/home/bannnn','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22669,0.000000,1595558425.294356,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/home/bannnn/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22670,0.000000,1595558460.183647,_binary '\0\0\0\0\0\0\0\0\0\06ȴ',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22671,0.000000,1595558772.002626,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22672,0.000000,1595558774.278427,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22673,0.000000,1595558775.187952,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,503,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(22674,0.000000,1595559113.890245,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595559111.1544570922851562500000','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22675,0.000000,1595559287.073874,_binary '\0\0\0\0\0\0\0\0\0\0.娍',0,200,0,0,0,'https://chicagolandremodeling.com/reviews/jeremy-wong/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22676,0.000000,1595559325.366330,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/strony-internetowe-chicago','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22677,0.000000,1595559577.058425,_binary '\0\0\0\0\0\0\0\0\0\0.娋',0,200,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago/chicagoland-home-remodeling-contractors-logo/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22678,0.000000,1595559978.652272,_binary '&S\0\0`(\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22679,0.000000,1595559985.975504,_binary '&S\0\0`(\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22680,0.000000,1595559988.814430,_binary '&S\0\0`(\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22681,0.000000,1595560034.034225,_binary '\0\0\0\0\0\0\0\0\0\0\\01',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22682,0.000000,1595560038.449079,_binary '\0\0\0\0\0\0\0\0\0\0\\01',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22683,0.000000,1595560042.622060,_binary '\0\0\0\0\0\0\0\0\0\0\\01',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22684,0.000000,1595560045.980759,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/roofing-location-a','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22685,0.000000,1595560063.730015,_binary '\0\0\0\0\0\0\0\0\0\0<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22686,0.000000,1595560067.147614,_binary '\0\0\0\0\0\0\0\0\0\0<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22687,0.000000,1595560075.309111,_binary '\0\0\0\0\0\0\0\0\0\0<',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22688,0.000000,1595560099.333684,_binary '\0\0\0\0\0\0\0\0\0\0\F',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22689,0.000000,1595560103.373026,_binary '\0\0\0\0\0\0\0\0\0\0\F',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22690,0.000000,1595560108.736212,_binary '\0\0\0\0\0\0\0\0\0\0\F',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22691,0.000000,1595560597.796215,_binary '\0\0\0\0\0\0\0\0\0\0hҖn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22692,0.000000,1595560597.451254,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22693,0.000000,1595560607.038788,_binary '\0\0\0\0\0\0\0\0\0\0hҖn',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22694,0.000000,1595560607.864559,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22695,0.000000,1595560616.784835,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22696,0.000000,1595560615.713798,_binary '\0\0\0\0\0\0\0\0\0\0hҖn',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22697,0.000000,1595560627.799873,_binary '\0\0\0\0\0\0\0\0\0\04\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(22698,0.000000,1595560662.488517,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595560661.2801001071929931640625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22699,0.000000,1595560696.204720,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22700,0.000000,1595560700.536967,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22701,0.000000,1595560705.193134,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22702,0.000000,1595560710.818706,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22703,0.000000,1595560713.378986,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22704,0.000000,1595560717.909435,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22705,0.000000,1595560836.528002,_binary '\0\0\0\0\0\0\0\0\0\04\\',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.24.0','',NULL,NULL),(22706,0.000000,1595560842.278936,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595560840.1904981136322021484375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22707,0.000000,1595560845.383300,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22708,0.000000,1595560849.702480,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://chicagolandremodelinginc.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22709,0.000000,1595560930.392346,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595560928.5991170406341552734375','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22710,0.000000,1595560932.856267,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,302,0,0,0,'http://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22711,0.000000,1595560934.917709,_binary '\0\0\0\0\0\0\0\0\0\0Vm',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','http://www.mychicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(22712,0.000000,1595561121.838791,_binary '\0\0\0\0\0\0\0\0\0\0jx',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22713,0.000000,1595561127.351617,_binary '\0\0\0\0\0\0\0\0\0\0jx',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22714,0.000000,1595561132.326678,_binary '\0\0\0\0\0\0\0\0\0\0jx',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22715,0.000000,1595561139.434543,_binary ' A\v\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22716,0.000000,1595561147.192633,_binary ' A\v\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22717,0.000000,1595561152.175999,_binary ' A\v\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22718,0.000000,1595561167.120815,_binary '\0\0\0\0\0\0\0\0\0\0G+\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22719,0.000000,1595561172.310157,_binary '\0\0\0\0\0\0\0\0\0\0G+\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22720,0.000000,1595561186.423230,_binary '\0\0\0\0\0\0\0\0\0\0G+\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22721,0.000000,1595561193.312172,_binary '\0\0\0\0\0\0\0\0\0\0;\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22722,0.000000,1595561202.431936,_binary '\0\0\0\0\0\0\0\0\0\0;\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22723,0.000000,1595561212.694331,_binary '\0\0\0\0\0\0\0\0\0\0;\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22724,0.000000,1595561562.477005,_binary '\0\0\0\0\0\0\0\0\0\0#ÇC',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22725,0.000000,1595561570.008184,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22726,0.000000,1595561571.928452,_binary '\0\0\0\0\0\0\0\0\0\0#ÇC',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22727,0.000000,1595561578.179948,_binary '\0\0\0\0\0\0\0\0\0\0#ÇC',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22728,0.000000,1595561577.314519,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22729,0.000000,1595561581.356394,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22730,0.000000,1595561588.112228,_binary '\0\0\0\0\0\0\0\0\0\0q6N',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22731,0.000000,1595561593.548993,_binary '\0\0\0\0\0\0\0\0\0\0q6N',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22732,0.000000,1595561602.361708,_binary '\0\0\0\0\0\0\0\0\0\0ec9',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22733,0.000000,1595561645.297676,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&sale=mundipharma-mst-10-mg-prednisone&thinking=1483060632','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22734,0.000000,1595561683.931616,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&lake=dramamine-liquid-for-kids&insurance=1482873541','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22735,0.000000,1595561715.326138,_binary '\0\0\0\0\0\0\0\0\0\0C͐A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22736,0.000000,1595561724.789322,_binary '\0\0\0\0\0\0\0\0\0\0C͐A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22737,0.000000,1595561727.821431,_binary '\0\0\0\0\0\0\0\0\0\0C͐A',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22738,0.000000,1595561931.629219,_binary '\0\0\0\0\0\0\0\0\0\0\\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22739,0.000000,1595561944.854055,_binary '\0\0\0\0\0\0\0\0\0\0\\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22740,0.000000,1595561948.300728,_binary '\0\0\0\0\0\0\0\0\0\0\\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22741,0.000000,1595562006.831550,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22742,0.000000,1595562009.801358,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22743,0.000000,1595562012.536783,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22744,0.000000,1595562075.876090,_binary '\0\0\0\0\0\0\0\0\0\0C͡;',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22745,0.000000,1595562088.783536,_binary '\0\0\0\0\0\0\0\0\0\0C͡;',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22746,0.000000,1595562104.165873,_binary '\0\0\0\0\0\0\0\0\0\0C͡;',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22747,0.000000,1595562136.580797,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595562134.4262840747833251953125','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22748,0.000000,1595562388.016787,_binary '\0\0\0\0\0\0\0\0\0\0O}',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22749,0.000000,1595562391.891062,_binary '\0\0\0\0\0\0\0\0\0\0O}',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22750,0.000000,1595562398.441101,_binary '\0\0\0\0\0\0\0\0\0\0O}',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22751,0.000000,1595562402.836497,_binary '\0\0\0\0\0\0\0\0\0\0c',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22752,0.000000,1595562406.581256,_binary '\0\0\0\0\0\0\0\0\0\0c',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22753,0.000000,1595562409.953062,_binary '\0\0\0\0\0\0\0\0\0\0c',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22754,0.000000,1595562439.329825,_binary '\0\0\0\0\0\0\0\0\0\0.e_A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22755,0.000000,1595562441.443168,_binary '\0\0\0\0\0\0\0\0\0\0.e_A',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22756,0.000000,1595562447.225882,_binary '\0\0\0\0\0\0\0\0\0\0.e_A',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22757,0.000000,1595562558.758065,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,404,0,0,0,'https://chicagolandremodeling.com/powder-room/tel:7085839904','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22758,0.000000,1595562792.884660,_binary '*\0\0FPVF`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22759,0.000000,1595562798.437882,_binary '\0\0\0\0\0\0\0\0\0\0)]0H',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22760,0.000000,1595562800.570401,_binary '*\0\0FPVF`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22761,0.000000,1595562804.292906,_binary '\0\0\0\0\0\0\0\0\0\0)]0H',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22762,0.000000,1595562804.225894,_binary '\0\0\0\0\0\0\0\0\0\0q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22763,0.000000,1595562806.510428,_binary '*\0\0FPVF`',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22764,0.000000,1595562808.281152,_binary '\0\0\0\0\0\0\0\0\0\0)]0H',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22765,0.000000,1595562808.711716,_binary '\0\0\0\0\0\0\0\0\0\0q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22766,0.000000,1595562814.399790,_binary '\0\0\0\0\0\0\0\0\0\0q',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22767,0.000000,1595562845.308621,_binary '\0\0\0\0\0\0\0\0\0\0D(',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22768,0.000000,1595562850.593201,_binary '\0\0\0\0\0\0\0\0\0\0D(',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22769,0.000000,1595562863.027928,_binary '\0\0\0\0\0\0\0\0\0\0D(',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22770,0.000000,1595563172.234249,_binary '\0\0\0\0\0\0\0\0\0\0^\	',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22771,0.000000,1595563189.129586,_binary '\0\0\0\0\0\0\0\0\0\0#\%\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22772,0.000000,1595563192.861078,_binary '\0\0\0\0\0\0\0\0\0\0#\%\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22773,0.000000,1595563197.691389,_binary '\0\0\0\0\0\0\0\0\0\0#\%\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22774,0.000000,1595563189.607253,_binary '\0\0\0\0\0\0\0\0\0\0^\	',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22775,0.000000,1595563206.456579,_binary '\0\0\0\0\0\0\0\0\0\0^\	',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22776,0.000000,1595563237.481568,_binary '\0\0\0\0\0\0\0\0\0\0@\*|',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22777,0.000000,1595563245.635003,_binary '\0\0\0\0\0\0\0\0\0\0@\*|',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22778,0.000000,1595563251.011661,_binary '\0\0\0\0\0\0\0\0\0\0@\*|',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22779,0.000000,1595563316.916927,_binary '\0\0\0\0\0\0\0\0\0\0.娢',0,301,0,0,0,'http://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22780,0.000000,1595563327.304179,_binary '\0\0\0\0\0\0\0\0\0\0.娅',0,200,0,0,0,'https://chicagolandremodeling.com/soffit-fascia/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22781,0.000000,1595563524.841378,_binary '\0\0\0\0\0\0\0\0\0\0\\\Z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22782,0.000000,1595563540.696234,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22783,0.000000,1595563545.518223,_binary '\0\0\0\0\0\0\0\0\0\0\\\Z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22784,0.000000,1595563553.027209,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22785,0.000000,1595563557.982641,_binary '\0\0\0\0\0\0\0\0\0\0\\\Z',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22786,0.000000,1595563569.440724,_binary '\0\0\0\0\0\0\0\0\0\0\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22787,0.000000,1595563576.536558,_binary '\0\0\0\0\0\0\0\0\0\0py',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22788,0.000000,1595563583.222624,_binary '\0\0\0\0\0\0\0\0\0\0py',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22789,0.000000,1595563596.877361,_binary '\0\0\0\0\0\0\0\0\0\0py',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22790,0.000000,1595563643.656264,_binary '\0\0\0\0\0\0\0\0\0\0=',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22791,0.000000,1595563647.851689,_binary '\0\0\0\0\0\0\0\0\0\0=',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22792,0.000000,1595563654.065390,_binary '\0\0\0\0\0\0\0\0\0\0=',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22793,0.000000,1595563879.632258,_binary '\0\0\0\0\0\0\0\0\0\0(M',0,200,0,0,0,'https://chicagolandremodeling.com/locations/bathroom-remodeling-contractors-wheaton-il/image-9/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22794,0.000000,1595563890.629806,_binary '\0\0\0\0\0\0\0\0\0\0B\=',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22795,0.000000,1595563891.736108,_binary '\0\0\0\0\0\0\0\0\0\0B\=',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22796,0.000000,1595563892.700273,_binary '\0\0\0\0\0\0\0\0\0\0B\=',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22797,0.000000,1595563906.362906,_binary '\0\0\0\0\0\0\0\0\0\0\"j',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22798,0.000000,1595563907.850372,_binary '\0\0\0\0\0\0\0\0\0\0\"j',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22799,0.000000,1595563909.232963,_binary '\0\0\0\0\0\0\0\0\0\0\"j',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22800,0.000000,1595563974.692103,_binary '\0\0\0\0\0\0\0\0\0\0D\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22801,0.000000,1595563978.087651,_binary '\0\0\0\0\0\0\0\0\0\0D\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22802,0.000000,1595563987.952606,_binary '\0\0\0\0\0\0\0\0\0\0D\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22803,0.000000,1595564082.596080,_binary '\0\0\0\0\0\0\0\0\0\0-(',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','',NULL,NULL),(22804,0.000000,1595564098.879173,_binary '\0\0\0\0\0\0\0\0\0\0-(',0,200,0,1,0,'https://chicagolandremodeling.com/wp-login.php','https://chicagolandremodeling.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','loginFailValidUsername',NULL,NULL),(22805,0.000000,1595564125.609720,_binary '\0\0\0\0\0\0\0\0\0\0e',0,301,0,0,0,'http://chicagolandremodeling.com/index.php?s=index/%5Cthink%5Capp/invokefunction&function=call_user_func_array&vars%5B0%5D=phpinfo&vars%5B1%5D%5B%5D=1','','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(22806,0.000000,1595564243.442340,_binary ' A\\0]\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22807,0.000000,1595564248.671695,_binary ' A\\0]\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22808,0.000000,1595564253.423990,_binary ' A\\0]\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22809,0.000000,1595564286.751924,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/locations/remodeling-companies-the-loop-chicago','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22810,0.000000,1595564295.015028,_binary '\0\0\0\0\0\0\0\0\0\0:aN',0,301,0,0,0,'https://chicagolandremodeling.com/basements','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','',NULL,NULL),(22811,0.000000,1595564322.516604,_binary '\0\0\0\0\0\0\0\0\0\0ˣk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22812,0.000000,1595564329.140475,_binary '\0\0\0\0\0\0\0\0\0\0ˣk',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22813,0.000000,1595564335.289196,_binary '\0\0\0\0\0\0\0\0\0\0ˣk',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22814,0.000000,1595564341.484681,_binary '\0\0\0\0\0\0\0\0\0\0\WJ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22815,0.000000,1595564346.482636,_binary '\0\0\0\0\0\0\0\0\0\0\WJ',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22816,0.000000,1595564352.695365,_binary '\0\0\0\0\0\0\0\0\0\0\WJ',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22817,0.000000,1595564552.571317,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/reviews/leah-howard/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22818,0.000000,1595564552.771895,_binary '&i\0\0\0\0\0\0N*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22819,0.000000,1595564557.150703,_binary '&i\0\0\0\0\0\0N*',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22820,0.000000,1595564557.381280,_binary '\0\0\0\0\0\0\0\0\0\02e',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22821,0.000000,1595564559.602873,_binary '&i\0\0\0\0\0\0N*',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22822,0.000000,1595564559.580957,_binary '\0\0\0\0\0\0\0\0\0\02e',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22823,0.000000,1595564563.264335,_binary '\0\0\0\0\0\0\0\0\0\02e',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22824,0.000000,1595564570.644750,_binary '\0\0\0\0\0\0\0\0\0\0MD\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22825,0.000000,1595564574.388703,_binary '\0\0\0\0\0\0\0\0\0\0MD\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22826,0.000000,1595564578.410789,_binary '\0\0\0\0\0\0\0\0\0\0MD\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22827,0.000000,1595564580.941444,_binary '\0\0\0\0\0\0\0\0\0\0#霝',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22828,0.000000,1595564585.846317,_binary '\0\0\0\0\0\0\0\0\0\0#霝',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22829,0.000000,1595564589.525864,_binary '\0\0\0\0\0\0\0\0\0\0#霝',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22830,0.000000,1595564604.896922,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/gallery?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22831,0.000000,1595564611.799783,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,200,0,0,0,'https://chicagolandremodeling.com/gallery/?page_number_0=2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22832,0.000000,1595564732.732433,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&grandchild=vegarra-sildenafil-50-mg-instrukciya&year=1483048497','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22833,0.000000,1595564772.413216,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&litre=comprar-clomid-espa%C3%B1a&singer=1482759660','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22834,0.000000,1595564814.135094,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&music=do-need-prescription-buy-mebendazole&prospect=1483063144','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22835,0.000000,1595564845.303747,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&preference=azithromycin-iv-generic&unknown=1483032382','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22836,0.000000,1595564877.310314,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&faith=priligy-generico-en-argentina&litre=1483077750','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22837,0.000000,1595564904.827177,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-includes/css/modules.php','','python-requests/2.23.0','',NULL,NULL),(22838,0.000000,1595564907.652105,_binary '\0\0\0\0\0\0\0\0\0\0\sv$',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22839,0.000000,1595564909.130821,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-includes/css/modules.php','','python-requests/2.23.0','',NULL,NULL),(22840,0.000000,1595564910.296515,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=3&mt=1&sch=1&landscape=topamax-50-mg-beipackzettel&ministry=1482876227','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22841,0.000000,1595564911.862524,_binary '\0\0\0\0\0\0\0\0\0\0\sv$',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22842,0.000000,1595564915.519188,_binary '\0\0\0\0\0\0\0\0\0\0\sv$',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22843,0.000000,1595564914.376429,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wso.php','','python-requests/2.23.0','',NULL,NULL),(22844,0.000000,1595564919.523336,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,301,0,0,0,'https://chicagolandremodeling.com/living-2','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22845,0.000000,1595564920.900768,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wso.php','','python-requests/2.23.0','',NULL,NULL),(22846,0.000000,1595564924.305327,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/upspy/index.php','','python-requests/2.23.0','',NULL,NULL),(22847,0.000000,1595564923.780340,_binary '\0\0\0\0\0\0\0\0\0\0rwi',0,200,0,0,0,'https://chicagolandremodeling.com/living-2/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; AspiegelBot)','',NULL,NULL),(22848,0.000000,1595564926.108743,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22849,0.000000,1595564926.373447,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/upspy/','','python-requests/2.23.0','',NULL,NULL),(22850,0.000000,1595564929.833432,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22851,0.000000,1595564929.787035,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/upspy/','','python-requests/2.23.0','',NULL,NULL),(22852,0.000000,1595564933.282073,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22853,0.000000,1595564934.991535,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ubh/index.php','','python-requests/2.23.0','',NULL,NULL),(22854,0.000000,1595564939.506779,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ubh/','','python-requests/2.23.0','',NULL,NULL),(22855,0.000000,1595564943.003971,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/ubh/','','python-requests/2.23.0','',NULL,NULL),(22856,0.000000,1595564947.942635,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/vwcleanerplugin/bump.php?cache','','python-requests/2.23.0','',NULL,NULL),(22857,0.000000,1595564948.857537,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&emphasis=when-is-the-best-time-to-take-cialis-before&influence=1483045872','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22858,0.000000,1595564951.710835,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/vwcleanerplugin/bump.php?cache','','python-requests/2.23.0','',NULL,NULL),(22859,0.000000,1595564957.811152,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/xichang/x.php?xi','','python-requests/2.23.0','',NULL,NULL),(22860,0.000000,1595564964.611670,_binary '\0\0\0\0\0\0\0\0\0\0]z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22861,0.000000,1595564965.024303,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/xichang/x.php?xi','','python-requests/2.23.0','',NULL,NULL),(22862,0.000000,1595564974.806312,_binary '\0\0\0\0\0\0\0\0\0\0]z',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22863,0.000000,1595564974.542055,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/html404/index.html','','python-requests/2.23.0','',NULL,NULL),(22864,0.000000,1595564980.573779,_binary '\0\0\0\0\0\0\0\0\0\0]z',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22865,0.000000,1595564980.574122,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=1&sch=2&restriction=lexapro-5-mg-effective-for-anxiety&security=1483031447','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22866,0.000000,1595564985.705817,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/html404/index.html','','python-requests/2.23.0','',NULL,NULL),(22867,0.000000,1595565005.591283,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/','','python-requests/2.23.0','',NULL,NULL),(22868,0.000000,1595565013.946729,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/upload.php','','python-requests/2.23.0','',NULL,NULL),(22869,0.000000,1595565022.955054,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/upload.php','','python-requests/2.23.0','',NULL,NULL),(22870,0.000000,1595565032.050255,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/shell.php','','python-requests/2.23.0','',NULL,NULL),(22871,0.000000,1595565021.526749,_binary '\0\0\0\0\0\0\0\0\0\0.娌',0,200,0,0,0,'https://chicagolandremodeling.com/roofing-1/blog_roofing_header/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22872,0.000000,1595565035.206684,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/shell.php','','python-requests/2.23.0','',NULL,NULL),(22873,0.000000,1595565044.120561,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-admin/network/wp-footer.php','','python-requests/2.23.0','',NULL,NULL),(22874,0.000000,1595565057.582627,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-admin/network/wp-footer.php','','python-requests/2.23.0','',NULL,NULL),(22875,0.000000,1595565061.873761,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-info.php','','python-requests/2.23.0','',NULL,NULL),(22876,0.000000,1595565066.706511,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-info.php','','python-requests/2.23.0','',NULL,NULL),(22877,0.000000,1595565075.937891,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/vuln.php','','python-requests/2.23.0','',NULL,NULL),(22878,0.000000,1595565083.080353,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/vuln.php','','python-requests/2.23.0','',NULL,NULL),(22879,0.000000,1595565088.694934,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/upel.php','','python-requests/2.23.0','',NULL,NULL),(22880,0.000000,1595565095.697868,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/upel.php','','python-requests/2.23.0','',NULL,NULL),(22881,0.000000,1595565102.321269,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/ppus/up.php','','python-requests/2.23.0','',NULL,NULL),(22882,0.000000,1595565105.974044,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/ppus/up.php','','python-requests/2.23.0','',NULL,NULL),(22883,0.000000,1595565111.341660,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/098.php','','python-requests/2.23.0','',NULL,NULL),(22884,0.000000,1595565114.602139,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/098.php','','python-requests/2.23.0','',NULL,NULL),(22885,0.000000,1595565116.173707,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/V5.php','','python-requests/2.23.0','',NULL,NULL),(22886,0.000000,1595565121.110827,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/V5.php','','python-requests/2.23.0','',NULL,NULL),(22887,0.000000,1595565128.533301,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/new_license.php','','python-requests/2.23.0','',NULL,NULL),(22888,0.000000,1595565140.721703,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/new_license.php','','python-requests/2.23.0','',NULL,NULL),(22889,0.000000,1595565145.213737,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/theme-configurator/mini.php','','python-requests/2.23.0','',NULL,NULL),(22890,0.000000,1595565153.700656,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/theme-configurator/mini.php','','python-requests/2.23.0','',NULL,NULL),(22891,0.000000,1595565156.649546,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,301,0,0,0,'http://chicagolandremodeling.com/wp-content/plugins/widget-logic/mini.php','','python-requests/2.23.0','',NULL,NULL),(22892,0.000000,1595565163.765306,_binary '\0\0\0\0\0\0\0\0\0\0\2',0,404,0,0,0,'https://chicagolandremodeling.com/wp-content/plugins/widget-logic/mini.php','','python-requests/2.23.0','',NULL,NULL),(22893,0.000000,1595565204.754903,_binary '\0\0\0\0\0\0\0\0\0\0%q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22894,0.000000,1595565209.555413,_binary '\0\0\0\0\0\0\0\0\0\0%q',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22895,0.000000,1595565213.483163,_binary '\0\0\0\0\0\0\0\0\0\0%q',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22896,0.000000,1595565221.585310,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22897,0.000000,1595565223.849260,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22898,0.000000,1595565227.898557,_binary '\0\0\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22899,0.000000,1595565240.202862,_binary '*\0\0\\0\0\0\0i',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22900,0.000000,1595565238.942843,_binary '\0\0\0\0\0\0\0\0\0\0rw',0,301,0,0,0,'https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22901,0.000000,1595565243.447315,_binary '\0\0\0\0\0\0\0\0\0\0Y\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22902,0.000000,1595565244.055918,_binary '*\0\0\\0\0\0\0i',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22903,0.000000,1595565246.851462,_binary '\0\0\0\0\0\0\0\0\0\0Y\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22904,0.000000,1595565249.826709,_binary '*\0\0\\0\0\0\0i',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22905,0.000000,1595565252.269597,_binary '\0\0\0\0\0\0\0\0\0\0Y\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22906,0.000000,1595565296.683876,_binary '\0\0\0\0\0\0\0\0\0\06$%',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=1&ct=3&mt=2&sch=1&human=greenstone-brand-azithromycin-for-oral-suspension&envelope=1483103385','','Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)','',NULL,NULL),(22907,0.000000,1595565522.413650,_binary '\0\0\0\0\0\0\0\0\0\0.娊',0,200,0,0,0,'https://chicagolandremodeling.com/do-it-yourself-bathroom-ideas/zz/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22908,0.000000,1595565529.084444,_binary '\0\0\0\0\0\0\0\0\0\0\]\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22909,0.000000,1595565532.526081,_binary '\0\0\0\0\0\0\0\0\0\0\]\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22910,0.000000,1595565535.640290,_binary '\0\0\0\0\0\0\0\0\0\0\]\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22911,0.000000,1595565537.916474,_binary '*\ $R\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22912,0.000000,1595565540.942417,_binary '*\ $R\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22913,0.000000,1595565545.007415,_binary '*\ $R\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22914,0.000000,1595565547.493544,_binary '\0\0\0\0\0\0\0\0\0\0\PC',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22915,0.000000,1595565549.686013,_binary '\0\0\0\0\0\0\0\0\0\0\PC',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22916,0.000000,1595565552.161822,_binary '\0\0\0\0\0\0\0\0\0\0\PC',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22917,0.000000,1595565554.456108,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,301,0,0,0,'https://chicagolandremodeling.com/icon_kitchens','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22918,0.000000,1595565559.685863,_binary '\0\0\0\0\0\0\0\0\0\0rw\',0,200,0,0,0,'https://chicagolandremodeling.com/icon_kitchens/','','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)','',NULL,NULL),(22919,0.000000,1595565592.591863,_binary '*\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22920,0.000000,1595565596.712854,_binary '*\0\0\0\0\0\0\0',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22921,0.000000,1595565601.343891,_binary '*\0\0\0\0\0\0\0',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22922,0.000000,1595565868.895059,_binary '\0\0\0\0\0\0\0\0\0\0H\	',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22923,0.000000,1595565875.698777,_binary '\0\0\0\0\0\0\0\0\0\0H\	',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22924,0.000000,1595565881.799807,_binary '\0\0\0\0\0\0\0\0\0\0H\	',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22925,0.000000,1595565919.876167,_binary '\0\0\0\0\0\0\0\0\0\0]B',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22926,0.000000,1595565935.900983,_binary '\0\0\0\0\0\0\0\0\0\0]B',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22927,0.000000,1595565951.902631,_binary '\0\0\0\0\0\0\0\0\0\0]B',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22928,0.000000,1595566266.354013,_binary '\0\0\0\0\0\0\0\0\0\0].',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22929,0.000000,1595566280.290769,_binary '\0\0\0\0\0\0\0\0\0\0].',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22930,0.000000,1595566286.826175,_binary '\0\0\0\0\0\0\0\0\0\0].',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22931,0.000000,1595566488.563856,_binary '\0\0\0\0\0\0\0\0\0\0c/',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22932,0.000000,1595566493.454965,_binary '\0\0\0\0\0\0\0\0\0\0c/',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22933,0.000000,1595566499.915249,_binary '\0\0\0\0\0\0\0\0\0\0c/',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22934,0.000000,1595566747.405115,_binary '\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22935,0.000000,1595566753.914810,_binary '\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22936,0.000000,1595566755.292713,_binary '\0\0\0\0\0\0\0\0\0\0BF',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22937,0.000000,1595566756.130523,_binary '\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(22938,0.000000,1595566758.786012,_binary '\0\0\0\0\0\0\0\0\0\0BF',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22939,0.000000,1595566761.593610,_binary '\0\0\0\0\0\0\0\0\0\0BF',0,200,0,0,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(22940,0.000000,1595566783.514878,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595566782.7513010501861572265625','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22941,0.000000,1595567035.304322,_binary '\0\0\0\0\0\0\0\0\0\04t6',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22942,0.000000,1595567035.233662,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22943,0.000000,1595567042.441489,_binary '\0\0\0\0\0\0\0\0\0\04t6',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22944,0.000000,1595567043.758099,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22945,0.000000,1595567045.432368,_binary '\0\0\0\0\0\0\0\0\0\04t6',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22946,0.000000,1595567048.050565,_binary '\0\0\0\0\0\0\0\0\0\0h\^<',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22947,0.000000,1595567080.095223,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22948,0.000000,1595567084.338938,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22949,0.000000,1595567091.459620,_binary '\0\0\0\0\0\0\0\0\0\0\\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22950,0.000000,1595567258.124490,_binary '\0\0\0\0\0\0\0\0\0\0(M\n',0,200,0,0,0,'https://chicagolandremodeling.com/category/uncategorized/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(22951,0.000000,1595567329.315423,_binary '\0\0\0\0\0\0\0\0\0\0#3\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22952,0.000000,1595567331.249996,_binary '\0\0\0\0\0\0\0\0\0\0#3\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22953,0.000000,1595567332.925740,_binary '\0\0\0\0\0\0\0\0\0\0#3\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22954,0.000000,1595567351.351644,_binary '\0\0\0\0\0\0\0\0\0\0Ϧ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22955,0.000000,1595567354.050868,_binary '\0\0\0\0\0\0\0\0\0\0Ϧ\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22956,0.000000,1595567357.193221,_binary '\0\0\0\0\0\0\0\0\0\0Ϧ\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22957,0.000000,1595567453.081928,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595567451.6740748882293701171875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22958,0.000000,1595567556.824362,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=2&ct=2&mt=1&sch=2&tidy=mexidol-125-mg-zoloft&economy=1483061417','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22959,0.000000,1595567587.905484,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&length=40-mg-atomoxetine&unable=1482802389','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22960,0.000000,1595567655.334440,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=1&ct=3&mt=1&sch=2&town=generic-spironolactone-rowcmoadreders&majority=1483046618','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22961,0.000000,1595567687.942385,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=1&pr=3&ct=2&mt=3&sch=1&god=can-i-take-2-150-mg-of-wellbutrin&earn=1482945957','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22962,0.000000,1595567698.634255,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22963,0.000000,1595567700.446953,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22964,0.000000,1595567702.138186,_binary '\0\0\0\0\0\0\0\0\0\0\\\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22965,0.000000,1595567718.756743,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=2&ct=3&mt=2&sch=1&hall=where-to-buy-doxycycline-in-sg&horror=1483077807','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22966,0.000000,1595567748.198930,_binary '\0\0\0\0\0\0\0\0\0\0\B\',0,301,0,0,0,'http://chicagolandremodeling.com/modern.php?sh=2&pr=3&ct=2&mt=2&sch=1&full=metronidazole-supplier-in-india&glue=1482803172','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(22967,0.000000,1595567884.031001,_binary '\0\0\0\0\0\0\0\0\0\0#t',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','',NULL,NULL),(22968,0.000000,1595567900.329619,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22969,0.000000,1595567901.311247,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22970,0.000000,1595567902.584217,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22971,0.000000,1595568183.807640,_binary '\0\0\0\0\0\0\0\0\0\0\.Q',0,200,0,0,0,'http://chicagolandremodeling.com/wp-cron.php?doing_wp_cron=1595568182.9042460918426513671875','','WordPress/4.2.10; http://chicagolandremodeling.com','',NULL,NULL),(22972,0.000000,1595568220.626316,_binary '\0\0\0\0\0\0\0\0\0\0\$/',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22973,0.000000,1595568222.876621,_binary '\0\0\0\0\0\0\0\0\0\0\$/',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22974,0.000000,1595568224.379452,_binary '\0\0\0\0\0\0\0\0\0\0\$/',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22975,0.000000,1595568258.047377,_binary '\0\0\0\0\0\0\0\0\0\0\1',0,301,0,0,0,'http://chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','',NULL,NULL),(22976,0.000000,1595568263.411901,_binary '\0\0\0\0\0\0\0\0\0\0#hE',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22977,0.000000,1595568264.584385,_binary '\0\0\0\0\0\0\0\0\0\0#hE',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22978,0.000000,1595568265.767158,_binary '\0\0\0\0\0\0\0\0\0\0#hE',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22979,0.000000,1595568375.735221,_binary '\0\0\0\0\0\0\0\0\0\0.娂',0,200,0,0,0,'https://chicagolandremodeling.com/home/angie-2015/','','Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)','',NULL,NULL),(22980,0.000000,1595568520.257051,_binary '\0\0\0\0\0\0\0\0\0\0\`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22981,0.000000,1595568528.460103,_binary '\0\0\0\0\0\0\0\0\0\0\`',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22982,0.000000,1595568533.142782,_binary '\0\0\0\0\0\0\0\0\0\0\`',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),(22983,0.000000,1595568758.584056,_binary '\0\0\0\0\0\0\0\0\0\0',0,301,0,0,0,'https://www.chicagolandremodeling.com/','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36','',NULL,NULL),(22984,0.000000,1595568790.045064,_binary '\0\0\0\0\0\0\0\0\0\0BF\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22985,0.000000,1595568790.705835,_binary '\0\0\0\0\0\0\0\0\0\0BF\',0,200,0,0,0,'https://chicagolandremodeling.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','',NULL,NULL),(22986,0.000000,1595568791.567335,_binary '\0\0\0\0\0\0\0\0\0\0BF\',0,200,0,1,0,'https://chicagolandremodeling.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL);
/*!40000 ALTER TABLE `wp_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfhoover`
--

DROP TABLE IF EXISTS `wp_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhoover`
--

LOCK TABLES `wp_wfhoover` WRITE;
/*!40000 ALTER TABLE `wp_wfhoover` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfhoover` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfissues`
--

DROP TABLE IF EXISTS `wp_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfissues`
--

LOCK TABLES `wp_wfissues` WRITE;
/*!40000 ALTER TABLE `wp_wfissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfknownfilelist`
--

DROP TABLE IF EXISTS `wp_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2328 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfknownfilelist`
--

LOCK TABLES `wp_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `wp_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `wp_wfknownfilelist` VALUES (1,'conflg.php'),(2,'index.php'),(3,'license.txt'),(4,'lndex2.php'),(5,'readme.html'),(6,'wp-activate.php'),(7,'wp-admin/about.php'),(8,'wp-admin/admin-ajax.php'),(9,'wp-admin/admin-footer.php'),(10,'wp-admin/admin-functions.php'),(11,'wp-admin/admin-header.php'),(12,'wp-admin/admin-post.php'),(13,'wp-admin/admin.php'),(14,'wp-admin/async-upload.php'),(15,'wp-admin/comment.php'),(16,'wp-admin/credits.php'),(17,'wp-admin/css/about-rtl.css'),(18,'wp-admin/css/about.css'),(19,'wp-admin/css/admin-menu-rtl.css'),(20,'wp-admin/css/admin-menu.css'),(21,'wp-admin/css/color-picker-rtl.css'),(22,'wp-admin/css/color-picker-rtl.min.css'),(23,'wp-admin/css/color-picker.css'),(24,'wp-admin/css/color-picker.min.css'),(25,'wp-admin/css/colors/_admin.scss'),(26,'wp-admin/css/colors/_mixins.scss'),(27,'wp-admin/css/colors/_variables.scss'),(28,'wp-admin/css/colors/blue/colors-rtl.css'),(29,'wp-admin/css/colors/blue/colors-rtl.min.css'),(30,'wp-admin/css/colors/blue/colors.css'),(31,'wp-admin/css/colors/blue/colors.min.css'),(32,'wp-admin/css/colors/blue/colors.scss'),(33,'wp-admin/css/colors/coffee/colors-rtl.css'),(34,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(35,'wp-admin/css/colors/coffee/colors.css'),(36,'wp-admin/css/colors/coffee/colors.min.css'),(37,'wp-admin/css/colors/coffee/colors.scss'),(38,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(39,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(40,'wp-admin/css/colors/ectoplasm/colors.css'),(41,'wp-admin/css/colors/ectoplasm/colors.min.css'),(42,'wp-admin/css/colors/ectoplasm/colors.scss'),(43,'wp-admin/css/colors/light/colors-rtl.css'),(44,'wp-admin/css/colors/light/colors-rtl.min.css'),(45,'wp-admin/css/colors/light/colors.css'),(46,'wp-admin/css/colors/light/colors.min.css'),(47,'wp-admin/css/colors/light/colors.scss'),(48,'wp-admin/css/colors/midnight/colors-rtl.css'),(49,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(50,'wp-admin/css/colors/midnight/colors.css'),(51,'wp-admin/css/colors/midnight/colors.min.css'),(52,'wp-admin/css/colors/midnight/colors.scss'),(53,'wp-admin/css/colors/ocean/colors-rtl.css'),(54,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(55,'wp-admin/css/colors/ocean/colors.css'),(56,'wp-admin/css/colors/ocean/colors.min.css'),(57,'wp-admin/css/colors/ocean/colors.scss'),(58,'wp-admin/css/colors/sunrise/colors-rtl.css'),(59,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(60,'wp-admin/css/colors/sunrise/colors.css'),(61,'wp-admin/css/colors/sunrise/colors.min.css'),(62,'wp-admin/css/colors/sunrise/colors.scss'),(63,'wp-admin/css/common-rtl.css'),(64,'wp-admin/css/common.css'),(65,'wp-admin/css/customize-controls-rtl.css'),(66,'wp-admin/css/customize-controls-rtl.min.css'),(67,'wp-admin/css/customize-controls.css'),(68,'wp-admin/css/customize-controls.min.css'),(69,'wp-admin/css/customize-widgets-rtl.css'),(70,'wp-admin/css/customize-widgets-rtl.min.css'),(71,'wp-admin/css/customize-widgets.css'),(72,'wp-admin/css/customize-widgets.min.css'),(73,'wp-admin/css/dashboard-rtl.css'),(74,'wp-admin/css/dashboard.css'),(75,'wp-admin/css/deprecated-media-rtl.css'),(76,'wp-admin/css/deprecated-media-rtl.min.css'),(77,'wp-admin/css/deprecated-media.css'),(78,'wp-admin/css/deprecated-media.min.css'),(79,'wp-admin/css/edit-rtl.css'),(80,'wp-admin/css/edit.css'),(81,'wp-admin/css/farbtastic-rtl.css'),(82,'wp-admin/css/farbtastic.css'),(83,'wp-admin/css/forms-rtl.css'),(84,'wp-admin/css/forms.css'),(85,'wp-admin/css/ie-rtl.css'),(86,'wp-admin/css/ie-rtl.min.css'),(87,'wp-admin/css/ie.css'),(88,'wp-admin/css/ie.min.css'),(89,'wp-admin/css/install-rtl.css'),(90,'wp-admin/css/install-rtl.min.css'),(91,'wp-admin/css/install.css'),(92,'wp-admin/css/install.min.css'),(93,'wp-admin/css/l10n-rtl.css'),(94,'wp-admin/css/l10n.css'),(95,'wp-admin/css/list-tables-rtl.css'),(96,'wp-admin/css/list-tables.css'),(97,'wp-admin/css/login-rtl.css'),(98,'wp-admin/css/login-rtl.min.css'),(99,'wp-admin/css/login.css'),(100,'wp-admin/css/login.min.css'),(101,'wp-admin/css/media-rtl.css'),(102,'wp-admin/css/media.css'),(103,'wp-admin/css/nav-menus-rtl.css'),(104,'wp-admin/css/nav-menus.css'),(105,'wp-admin/css/press-this-editor-rtl.css'),(106,'wp-admin/css/press-this-editor.css'),(107,'wp-admin/css/press-this-rtl.css'),(108,'wp-admin/css/press-this-rtl.min.css'),(109,'wp-admin/css/press-this.css'),(110,'wp-admin/css/press-this.min.css'),(111,'wp-admin/css/revisions-rtl.css'),(112,'wp-admin/css/revisions.css'),(113,'wp-admin/css/themes-rtl.css'),(114,'wp-admin/css/themes.css'),(115,'wp-admin/css/widgets-rtl.css'),(116,'wp-admin/css/widgets.css'),(117,'wp-admin/css/wp-admin-rtl.css'),(118,'wp-admin/css/wp-admin-rtl.min.css'),(119,'wp-admin/css/wp-admin.css'),(120,'wp-admin/css/wp-admin.min.css'),(121,'wp-admin/custom-background.php'),(122,'wp-admin/custom-header.php'),(123,'wp-admin/customize.php'),(124,'wp-admin/edit-comments.php'),(125,'wp-admin/edit-form-advanced.php'),(126,'wp-admin/edit-form-comment.php'),(127,'wp-admin/edit-link-form.php'),(128,'wp-admin/edit-tag-form.php'),(129,'wp-admin/edit-tags.php'),(130,'wp-admin/edit.php'),(131,'wp-admin/export.php'),(132,'wp-admin/freedoms.php'),(133,'wp-admin/images/align-center-2x.png'),(134,'wp-admin/images/align-center.png'),(135,'wp-admin/images/align-left-2x.png'),(136,'wp-admin/images/align-left.png'),(137,'wp-admin/images/align-none-2x.png'),(138,'wp-admin/images/align-none.png'),(139,'wp-admin/images/align-right-2x.png'),(140,'wp-admin/images/align-right.png'),(141,'wp-admin/images/arrows-2x.png'),(142,'wp-admin/images/arrows.png'),(143,'wp-admin/images/bubble_bg-2x.gif'),(144,'wp-admin/images/bubble_bg.gif'),(145,'wp-admin/images/comment-grey-bubble-2x.png'),(146,'wp-admin/images/comment-grey-bubble.png'),(147,'wp-admin/images/date-button-2x.gif'),(148,'wp-admin/images/date-button.gif'),(149,'wp-admin/images/generic.png'),(150,'wp-admin/images/icons32-2x.png'),(151,'wp-admin/images/icons32-vs-2x.png'),(152,'wp-admin/images/icons32-vs.png'),(153,'wp-admin/images/icons32.png'),(154,'wp-admin/images/imgedit-icons-2x.png'),(155,'wp-admin/images/imgedit-icons.png'),(156,'wp-admin/images/list-2x.png'),(157,'wp-admin/images/list.png'),(158,'wp-admin/images/loading.gif'),(159,'wp-admin/images/marker.png'),(160,'wp-admin/images/mask.png'),(161,'wp-admin/images/media-button-2x.png'),(162,'wp-admin/images/media-button-image.gif'),(163,'wp-admin/images/media-button-music.gif'),(164,'wp-admin/images/media-button-other.gif'),(165,'wp-admin/images/media-button-video.gif'),(166,'wp-admin/images/media-button.png'),(167,'wp-admin/images/menu-2x.png'),(168,'wp-admin/images/menu-vs-2x.png'),(169,'wp-admin/images/menu-vs.png'),(170,'wp-admin/images/menu.png'),(171,'wp-admin/images/no.png'),(172,'wp-admin/images/post-formats-vs.png'),(173,'wp-admin/images/post-formats.png'),(174,'wp-admin/images/post-formats32-vs.png'),(175,'wp-admin/images/post-formats32.png'),(176,'wp-admin/images/resize-2x.gif'),(177,'wp-admin/images/resize-rtl-2x.gif'),(178,'wp-admin/images/resize-rtl.gif'),(179,'wp-admin/images/resize.gif'),(180,'wp-admin/images/se.png'),(181,'wp-admin/images/sort-2x.gif'),(182,'wp-admin/images/sort.gif'),(183,'wp-admin/images/spinner-2x.gif'),(184,'wp-admin/images/spinner.gif'),(185,'wp-admin/images/stars-2x.png'),(186,'wp-admin/images/stars.png'),(187,'wp-admin/images/w-logo-blue.png'),(188,'wp-admin/images/w-logo-white.png'),(189,'wp-admin/images/wheel.png'),(190,'wp-admin/images/wordpress-logo-white.svg'),(191,'wp-admin/images/wordpress-logo.png'),(192,'wp-admin/images/wordpress-logo.svg'),(193,'wp-admin/images/wpspin_light-2x.gif'),(194,'wp-admin/images/wpspin_light.gif'),(195,'wp-admin/images/xit-2x.gif'),(196,'wp-admin/images/xit.gif'),(197,'wp-admin/images/yes.png'),(198,'wp-admin/import.php'),(199,'wp-admin/includes/admin.php'),(200,'wp-admin/includes/ajax-actions.php'),(201,'wp-admin/includes/bookmark.php'),(202,'wp-admin/includes/class-ftp-pure.php'),(203,'wp-admin/includes/class-ftp-sockets.php'),(204,'wp-admin/includes/class-ftp.php'),(205,'wp-admin/includes/class-pclzip.php'),(206,'wp-admin/includes/class-wp-comments-list-table.php'),(207,'wp-admin/includes/class-wp-filesystem-base.php'),(208,'wp-admin/includes/class-wp-filesystem-direct.php'),(209,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(210,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(211,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(212,'wp-admin/includes/class-wp-importer.php'),(213,'wp-admin/includes/class-wp-links-list-table.php'),(214,'wp-admin/includes/class-wp-list-table.php'),(215,'wp-admin/includes/class-wp-media-list-table.php'),(216,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(217,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(218,'wp-admin/includes/class-wp-ms-users-list-table.php'),(219,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(220,'wp-admin/includes/class-wp-plugins-list-table.php'),(221,'wp-admin/includes/class-wp-posts-list-table.php'),(222,'wp-admin/includes/class-wp-press-this.php'),(223,'wp-admin/includes/class-wp-terms-list-table.php'),(224,'wp-admin/includes/class-wp-theme-install-list-table.php'),(225,'wp-admin/includes/class-wp-themes-list-table.php'),(226,'wp-admin/includes/class-wp-upgrader-skins.php'),(227,'wp-admin/includes/class-wp-upgrader.php'),(228,'wp-admin/includes/class-wp-users-list-table.php'),(229,'wp-admin/includes/comment.php'),(230,'wp-admin/includes/continents-cities.php'),(231,'wp-admin/includes/dashboard.php'),(232,'wp-admin/includes/deprecated.php'),(233,'wp-admin/includes/export.php'),(234,'wp-admin/includes/file.php'),(235,'wp-admin/includes/image-edit.php'),(236,'wp-admin/includes/image.php'),(237,'wp-admin/includes/import.php'),(238,'wp-admin/includes/list-table.php'),(239,'wp-admin/includes/media.php'),(240,'wp-admin/includes/menu.php'),(241,'wp-admin/includes/meta-boxes.php'),(242,'wp-admin/includes/misc.php'),(243,'wp-admin/includes/ms-deprecated.php'),(244,'wp-admin/includes/ms.php'),(245,'wp-admin/includes/nav-menu.php'),(246,'wp-admin/includes/plugin-install.php'),(247,'wp-admin/includes/plugin.php'),(248,'wp-admin/includes/post.php'),(249,'wp-admin/includes/revision.php'),(250,'wp-admin/includes/schema.php'),(251,'wp-admin/includes/screen.php'),(252,'wp-admin/includes/taxonomy.php'),(253,'wp-admin/includes/template.php'),(254,'wp-admin/includes/theme-install.php'),(255,'wp-admin/includes/theme.php'),(256,'wp-admin/includes/translation-install.php'),(257,'wp-admin/includes/update-core.php'),(258,'wp-admin/includes/update.php'),(259,'wp-admin/includes/upgrade.php'),(260,'wp-admin/includes/user.php'),(261,'wp-admin/includes/widgets.php'),(262,'wp-admin/index.php'),(263,'wp-admin/install-helper.php'),(264,'wp-admin/install.php'),(265,'wp-admin/js/accordion.js'),(266,'wp-admin/js/accordion.min.js'),(267,'wp-admin/js/bookmarklet.js'),(268,'wp-admin/js/bookmarklet.min.js'),(269,'wp-admin/js/color-picker.js'),(270,'wp-admin/js/color-picker.min.js'),(271,'wp-admin/js/comment.js'),(272,'wp-admin/js/comment.min.js'),(273,'wp-admin/js/common.js'),(274,'wp-admin/js/common.min.js'),(275,'wp-admin/js/custom-background.js'),(276,'wp-admin/js/custom-background.min.js'),(277,'wp-admin/js/custom-header.js'),(278,'wp-admin/js/customize-controls.js'),(279,'wp-admin/js/customize-controls.min.js'),(280,'wp-admin/js/customize-widgets.js'),(281,'wp-admin/js/customize-widgets.min.js'),(282,'wp-admin/js/dashboard.js'),(283,'wp-admin/js/dashboard.min.js'),(284,'wp-admin/js/edit-comments.js'),(285,'wp-admin/js/edit-comments.min.js'),(286,'wp-admin/js/editor-expand.js'),(287,'wp-admin/js/editor-expand.min.js'),(288,'wp-admin/js/editor.js'),(289,'wp-admin/js/editor.min.js'),(290,'wp-admin/js/farbtastic.js'),(291,'wp-admin/js/gallery.js'),(292,'wp-admin/js/gallery.min.js'),(293,'wp-admin/js/image-edit.js'),(294,'wp-admin/js/image-edit.min.js'),(295,'wp-admin/js/inline-edit-post.js'),(296,'wp-admin/js/inline-edit-post.min.js'),(297,'wp-admin/js/inline-edit-tax.js'),(298,'wp-admin/js/inline-edit-tax.min.js'),(299,'wp-admin/js/iris.min.js'),(300,'wp-admin/js/language-chooser.js'),(301,'wp-admin/js/language-chooser.min.js'),(302,'wp-admin/js/link.js'),(303,'wp-admin/js/link.min.js'),(304,'wp-admin/js/media-gallery.js'),(305,'wp-admin/js/media-gallery.min.js'),(306,'wp-admin/js/media-upload.js'),(307,'wp-admin/js/media-upload.min.js'),(308,'wp-admin/js/media.js'),(309,'wp-admin/js/media.min.js'),(310,'wp-admin/js/nav-menu.js'),(311,'wp-admin/js/nav-menu.min.js'),(312,'wp-admin/js/password-strength-meter.js'),(313,'wp-admin/js/password-strength-meter.min.js'),(314,'wp-admin/js/plugin-install.js'),(315,'wp-admin/js/plugin-install.min.js'),(316,'wp-admin/js/post.js'),(317,'wp-admin/js/post.min.js'),(318,'wp-admin/js/postbox.js'),(319,'wp-admin/js/postbox.min.js'),(320,'wp-admin/js/press-this.js'),(321,'wp-admin/js/press-this.min.js'),(322,'wp-admin/js/revisions.js'),(323,'wp-admin/js/revisions.min.js'),(324,'wp-admin/js/set-post-thumbnail.js'),(325,'wp-admin/js/set-post-thumbnail.min.js'),(326,'wp-admin/js/svg-painter.js'),(327,'wp-admin/js/svg-painter.min.js'),(328,'wp-admin/js/tags-box.js'),(329,'wp-admin/js/tags-box.min.js'),(330,'wp-admin/js/tags.js'),(331,'wp-admin/js/tags.min.js'),(332,'wp-admin/js/theme.js'),(333,'wp-admin/js/theme.min.js'),(334,'wp-admin/js/updates.js'),(335,'wp-admin/js/updates.min.js'),(336,'wp-admin/js/user-profile.js'),(337,'wp-admin/js/user-profile.min.js'),(338,'wp-admin/js/user-suggest.js'),(339,'wp-admin/js/user-suggest.min.js'),(340,'wp-admin/js/widgets.js'),(341,'wp-admin/js/widgets.min.js'),(342,'wp-admin/js/word-count.js'),(343,'wp-admin/js/word-count.min.js'),(344,'wp-admin/js/wp-fullscreen.js'),(345,'wp-admin/js/wp-fullscreen.min.js'),(346,'wp-admin/js/xfn.js'),(347,'wp-admin/js/xfn.min.js'),(348,'wp-admin/link-add.php'),(349,'wp-admin/link-manager.php'),(350,'wp-admin/link-parse-opml.php'),(351,'wp-admin/link.php'),(352,'wp-admin/load-scripts.php'),(353,'wp-admin/load-styles.php'),(354,'wp-admin/maint/repair.php'),(355,'wp-admin/media-new.php'),(356,'wp-admin/media-upload.php'),(357,'wp-admin/media.php'),(358,'wp-admin/menu-header.php'),(359,'wp-admin/menu.php'),(360,'wp-admin/moderation.php'),(361,'wp-admin/ms-admin.php'),(362,'wp-admin/ms-delete-site.php'),(363,'wp-admin/ms-edit.php'),(364,'wp-admin/ms-options.php'),(365,'wp-admin/ms-sites.php'),(366,'wp-admin/ms-themes.php'),(367,'wp-admin/ms-upgrade-network.php'),(368,'wp-admin/ms-users.php'),(369,'wp-admin/my-sites.php'),(370,'wp-admin/nav-menus.php'),(371,'wp-admin/network/about.php'),(372,'wp-admin/network/admin.php'),(373,'wp-admin/network/credits.php'),(374,'wp-admin/network/edit.php'),(375,'wp-admin/network/freedoms.php'),(376,'wp-admin/network/index.php'),(377,'wp-admin/network/menu.php'),(378,'wp-admin/network/plugin-editor.php'),(379,'wp-admin/network/plugin-install.php'),(380,'wp-admin/network/plugins.php'),(381,'wp-admin/network/profile.php'),(382,'wp-admin/network/settings.php'),(383,'wp-admin/network/setup.php'),(384,'wp-admin/network/site-info.php'),(385,'wp-admin/network/site-new.php'),(386,'wp-admin/network/site-settings.php'),(387,'wp-admin/network/site-themes.php'),(388,'wp-admin/network/site-users.php'),(389,'wp-admin/network/sites.php'),(390,'wp-admin/network/theme-editor.php'),(391,'wp-admin/network/theme-install.php'),(392,'wp-admin/network/themes.php'),(393,'wp-admin/network/update-core.php'),(394,'wp-admin/network/update.php'),(395,'wp-admin/network/upgrade.php'),(396,'wp-admin/network/user-edit.php'),(397,'wp-admin/network/user-new.php'),(398,'wp-admin/network/users.php'),(399,'wp-admin/network.php'),(400,'wp-admin/options-discussion.php'),(401,'wp-admin/options-general.php'),(402,'wp-admin/options-head.php'),(403,'wp-admin/options-media.php'),(404,'wp-admin/options-permalink.php'),(405,'wp-admin/options-reading.php'),(406,'wp-admin/options-writing.php'),(407,'wp-admin/options.php'),(408,'wp-admin/plugin-editor.php'),(409,'wp-admin/plugin-install.php'),(410,'wp-admin/plugins.php'),(411,'wp-admin/post-new.php'),(412,'wp-admin/post.php'),(413,'wp-admin/press-this.php'),(414,'wp-admin/profile.php'),(415,'wp-admin/revision.php'),(416,'wp-admin/setup-config.php'),(417,'wp-admin/theme-editor.php'),(418,'wp-admin/theme-install.php'),(419,'wp-admin/themes.php'),(420,'wp-admin/tools.php'),(421,'wp-admin/update-core.php'),(422,'wp-admin/update.php'),(423,'wp-admin/upgrade-functions.php'),(424,'wp-admin/upgrade.php'),(425,'wp-admin/upload.php'),(426,'wp-admin/user/about.php'),(427,'wp-admin/user/admin.php'),(428,'wp-admin/user/credits.php'),(429,'wp-admin/user/freedoms.php'),(430,'wp-admin/user/index.php'),(431,'wp-admin/user/menu.php'),(432,'wp-admin/user/profile.php'),(433,'wp-admin/user/user-edit.php'),(434,'wp-admin/user-edit.php'),(435,'wp-admin/user-new.php'),(436,'wp-admin/users.php'),(437,'wp-admin/widgets.php'),(438,'wp-blog-header.php'),(439,'wp-comments-post.php'),(440,'wp-config-sample.php'),(441,'wp-config.php'),(442,'wp-content/index.php'),(443,'wp-content/plugins/exclude-pages/exclude_pages.php'),(444,'wp-content/plugins/exclude-pages/locale/exclude-pages-de_DE.mo'),(445,'wp-content/plugins/exclude-pages/locale/exclude-pages-de_DE.po'),(446,'wp-content/plugins/exclude-pages/locale/exclude-pages-it_IT.mo'),(447,'wp-content/plugins/exclude-pages/locale/exclude-pages-it_IT.po'),(448,'wp-content/plugins/exclude-pages/locale/exclude-pages-pl_PL.mo'),(449,'wp-content/plugins/exclude-pages/locale/exclude-pages-pl_PL.po'),(450,'wp-content/plugins/exclude-pages/locale/exclude-pages.pot'),(451,'wp-content/plugins/exclude-pages/readme.txt'),(452,'wp-content/plugins/exclude-pages/screenshot-1.png'),(453,'wp-content/plugins/exclude-pages/screenshot-2.png'),(454,'wp-content/plugins/exclude-pages/screenshot-3.png'),(455,'wp-content/plugins/exclude-pages/screenshot-4.png'),(456,'wp-content/plugins/header-footer/admin.css'),(457,'wp-content/plugins/header-footer/admin.php'),(458,'wp-content/plugins/header-footer/codemirror/lib/codemirror.css'),(459,'wp-content/plugins/header-footer/codemirror/lib/codemirror.js'),(460,'wp-content/plugins/header-footer/codemirror/mode/clike/clike.js'),(461,'wp-content/plugins/header-footer/codemirror/mode/clike/index.html'),(462,'wp-content/plugins/header-footer/codemirror/mode/clike/scala.html'),(463,'wp-content/plugins/header-footer/codemirror/mode/clike/test.js'),(464,'wp-content/plugins/header-footer/codemirror/mode/css/css.js'),(465,'wp-content/plugins/header-footer/codemirror/mode/css/gss.html'),(466,'wp-content/plugins/header-footer/codemirror/mode/css/gss_test.js'),(467,'wp-content/plugins/header-footer/codemirror/mode/css/index.html'),(468,'wp-content/plugins/header-footer/codemirror/mode/css/less.html'),(469,'wp-content/plugins/header-footer/codemirror/mode/css/less_test.js'),(470,'wp-content/plugins/header-footer/codemirror/mode/css/scss.html'),(471,'wp-content/plugins/header-footer/codemirror/mode/css/scss_test.js'),(472,'wp-content/plugins/header-footer/codemirror/mode/css/test.js'),(473,'wp-content/plugins/header-footer/codemirror/mode/htmlembedded/htmlembedded.js'),(474,'wp-content/plugins/header-footer/codemirror/mode/htmlembedded/index.html'),(475,'wp-content/plugins/header-footer/codemirror/mode/htmlmixed/htmlmixed.js'),(476,'wp-content/plugins/header-footer/codemirror/mode/htmlmixed/index.html'),(477,'wp-content/plugins/header-footer/codemirror/mode/index.html'),(478,'wp-content/plugins/header-footer/codemirror/mode/javascript/index.html'),(479,'wp-content/plugins/header-footer/codemirror/mode/javascript/javascript.js'),(480,'wp-content/plugins/header-footer/codemirror/mode/javascript/json-ld.html'),(481,'wp-content/plugins/header-footer/codemirror/mode/javascript/test.js'),(482,'wp-content/plugins/header-footer/codemirror/mode/javascript/typescript.html'),(483,'wp-content/plugins/header-footer/codemirror/mode/meta.js'),(484,'wp-content/plugins/header-footer/codemirror/mode/php/index.html'),(485,'wp-content/plugins/header-footer/codemirror/mode/php/php.js'),(486,'wp-content/plugins/header-footer/codemirror/mode/php/test.js'),(487,'wp-content/plugins/header-footer/codemirror/mode/sass/index.html'),(488,'wp-content/plugins/header-footer/codemirror/mode/sass/sass.js'),(489,'wp-content/plugins/header-footer/codemirror/mode/xml/index.html'),(490,'wp-content/plugins/header-footer/codemirror/mode/xml/test.js'),(491,'wp-content/plugins/header-footer/codemirror/mode/xml/xml.js'),(492,'wp-content/plugins/header-footer/images/social/round/facebook.png'),(493,'wp-content/plugins/header-footer/images/social/round/google.png'),(494,'wp-content/plugins/header-footer/images/social/round/linkedin.png'),(495,'wp-content/plugins/header-footer/images/social/round/twitter.png'),(496,'wp-content/plugins/header-footer/images/social/square/facebook.png'),(497,'wp-content/plugins/header-footer/images/social/square/google.png'),(498,'wp-content/plugins/header-footer/images/social/square/linkedin.png'),(499,'wp-content/plugins/header-footer/images/social/square/pinterest.png'),(500,'wp-content/plugins/header-footer/images/social/square/twitter.png'),(501,'wp-content/plugins/header-footer/languages/header-footer-es_ES.mo'),(502,'wp-content/plugins/header-footer/languages/header-footer-es_ES.po'),(503,'wp-content/plugins/header-footer/languages/header-footer-ru_RU.mo'),(504,'wp-content/plugins/header-footer/languages/header-footer-ru_RU.po'),(505,'wp-content/plugins/header-footer/languages/header-footer.pot'),(506,'wp-content/plugins/header-footer/lib/easytabs/jquery.easytabs.min.js'),(507,'wp-content/plugins/header-footer/lib/easytabs/tabs.css'),(508,'wp-content/plugins/header-footer/options.php'),(509,'wp-content/plugins/header-footer/plugin.php'),(510,'wp-content/plugins/header-footer/readme.txt'),(511,'wp-content/plugins/index.php'),(512,'wp-content/plugins/meteor-slides/css/meteor-slides-admin.css'),(513,'wp-content/plugins/meteor-slides/css/meteor-slides.css'),(514,'wp-content/plugins/meteor-slides/images/buttons.gif'),(515,'wp-content/plugins/meteor-slides/images/buttons.png'),(516,'wp-content/plugins/meteor-slides/images/next.gif'),(517,'wp-content/plugins/meteor-slides/images/next.png'),(518,'wp-content/plugins/meteor-slides/images/prev.gif'),(519,'wp-content/plugins/meteor-slides/images/prev.png'),(520,'wp-content/plugins/meteor-slides/includes/meteor-slides-admin.php'),(521,'wp-content/plugins/meteor-slides/includes/meteor-slides-settings.php'),(522,'wp-content/plugins/meteor-slides/includes/meteor-slides-widget.php'),(523,'wp-content/plugins/meteor-slides/includes/meteor-slideshow.php'),(524,'wp-content/plugins/meteor-slides/js/jquery.cycle.all.js'),(525,'wp-content/plugins/meteor-slides/js/jquery.metadata.v2.js'),(526,'wp-content/plugins/meteor-slides/js/jquery.touchwipe.1.1.1.js'),(527,'wp-content/plugins/meteor-slides/js/slideshow.js'),(528,'wp-content/plugins/meteor-slides/languages/meteor-slides-be_BY.mo'),(529,'wp-content/plugins/meteor-slides/languages/meteor-slides-be_BY.po'),(530,'wp-content/plugins/meteor-slides/languages/meteor-slides-bg_BG.mo'),(531,'wp-content/plugins/meteor-slides/languages/meteor-slides-bg_BG.po'),(532,'wp-content/plugins/meteor-slides/languages/meteor-slides-cs_CZ.mo'),(533,'wp-content/plugins/meteor-slides/languages/meteor-slides-cs_CZ.po'),(534,'wp-content/plugins/meteor-slides/languages/meteor-slides-da_DK.mo'),(535,'wp-content/plugins/meteor-slides/languages/meteor-slides-da_DK.po'),(536,'wp-content/plugins/meteor-slides/languages/meteor-slides-de_DE.mo'),(537,'wp-content/plugins/meteor-slides/languages/meteor-slides-de_DE.po'),(538,'wp-content/plugins/meteor-slides/languages/meteor-slides-el.mo'),(539,'wp-content/plugins/meteor-slides/languages/meteor-slides-el.po'),(540,'wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.mo'),(541,'wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.po'),(542,'wp-content/plugins/meteor-slides/languages/meteor-slides-en_US.txt'),(543,'wp-content/plugins/meteor-slides/languages/meteor-slides-es_ES.mo'),(544,'wp-content/plugins/meteor-slides/languages/meteor-slides-es_ES.po'),(545,'wp-content/plugins/meteor-slides/languages/meteor-slides-fa_IR.mo'),(546,'wp-content/plugins/meteor-slides/languages/meteor-slides-fa_IR.po'),(547,'wp-content/plugins/meteor-slides/languages/meteor-slides-fr_FR.mo'),(548,'wp-content/plugins/meteor-slides/languages/meteor-slides-fr_FR.po'),(549,'wp-content/plugins/meteor-slides/languages/meteor-slides-he_IL.mo'),(550,'wp-content/plugins/meteor-slides/languages/meteor-slides-he_IL.po'),(551,'wp-content/plugins/meteor-slides/languages/meteor-slides-id_ID.mo'),(552,'wp-content/plugins/meteor-slides/languages/meteor-slides-id_ID.po'),(553,'wp-content/plugins/meteor-slides/languages/meteor-slides-it_IT.mo'),(554,'wp-content/plugins/meteor-slides/languages/meteor-slides-it_IT.po'),(555,'wp-content/plugins/meteor-slides/languages/meteor-slides-ja.mo'),(556,'wp-content/plugins/meteor-slides/languages/meteor-slides-ja.po'),(557,'wp-content/plugins/meteor-slides/languages/meteor-slides-nb_NO.mo'),(558,'wp-content/plugins/meteor-slides/languages/meteor-slides-nb_NO.po'),(559,'wp-content/plugins/meteor-slides/languages/meteor-slides-nl_NL.mo'),(560,'wp-content/plugins/meteor-slides/languages/meteor-slides-nl_NL.po'),(561,'wp-content/plugins/meteor-slides/languages/meteor-slides-pl_PL.mo'),(562,'wp-content/plugins/meteor-slides/languages/meteor-slides-pl_PL.po'),(563,'wp-content/plugins/meteor-slides/languages/meteor-slides-pt_BR.mo'),(564,'wp-content/plugins/meteor-slides/languages/meteor-slides-pt_BR.po'),(565,'wp-content/plugins/meteor-slides/languages/meteor-slides-pt_PT.mo'),(566,'wp-content/plugins/meteor-slides/languages/meteor-slides-pt_PT.po'),(567,'wp-content/plugins/meteor-slides/languages/meteor-slides-ro_RO.mo'),(568,'wp-content/plugins/meteor-slides/languages/meteor-slides-ro_RO.po'),(569,'wp-content/plugins/meteor-slides/languages/meteor-slides-ru_RU.mo'),(570,'wp-content/plugins/meteor-slides/languages/meteor-slides-ru_RU.po'),(571,'wp-content/plugins/meteor-slides/languages/meteor-slides-sr_RS.mo'),(572,'wp-content/plugins/meteor-slides/languages/meteor-slides-sr_RS.po'),(573,'wp-content/plugins/meteor-slides/languages/meteor-slides-sv_SE.mo'),(574,'wp-content/plugins/meteor-slides/languages/meteor-slides-sv_SE.po'),(575,'wp-content/plugins/meteor-slides/languages/meteor-slides-tr_TR.mo'),(576,'wp-content/plugins/meteor-slides/languages/meteor-slides-tr_TR.po'),(577,'wp-content/plugins/meteor-slides/languages/meteor-slides-vi.mo'),(578,'wp-content/plugins/meteor-slides/languages/meteor-slides-vi.po'),(579,'wp-content/plugins/meteor-slides/languages/meteor-slides-zh_CN.mo'),(580,'wp-content/plugins/meteor-slides/languages/meteor-slides-zh_CN.po'),(581,'wp-content/plugins/meteor-slides/languages/meteor-slides-zh_TW.mo'),(582,'wp-content/plugins/meteor-slides/languages/meteor-slides-zh_TW.po'),(583,'wp-content/plugins/meteor-slides/languages/meteor-slides.pot'),(584,'wp-content/plugins/meteor-slides/meteor-slides-plugin.php'),(585,'wp-content/plugins/meteor-slides/readme.md'),(586,'wp-content/plugins/meteor-slides/readme.txt'),(587,'wp-content/plugins/meteor-slides/screenshot-1.jpg'),(588,'wp-content/plugins/meteor-slides/screenshot-2.jpg'),(589,'wp-content/plugins/meteor-slides/screenshot-3.jpg'),(590,'wp-content/plugins/meteor-slides/screenshot-4.jpg'),(591,'wp-content/plugins/meteor-slides/screenshot-5.jpg'),(592,'wp-content/plugins/meteor-slides/screenshot-6.jpg'),(593,'wp-content/plugins/meteor-slides/screenshot-7.jpg'),(594,'wp-content/plugins/meteor-slides/uninstall.php'),(595,'wp-content/plugins/page-links-to/bin/install-wp-tests.sh'),(596,'wp-content/plugins/page-links-to/js/new-tab.coffee'),(597,'wp-content/plugins/page-links-to/js/new-tab.js'),(598,'wp-content/plugins/page-links-to/js/page-links-to.coffee'),(599,'wp-content/plugins/page-links-to/js/page-links-to.js'),(600,'wp-content/plugins/page-links-to/languages/import.rb'),(601,'wp-content/plugins/page-links-to/languages/page-links-to-ca.mo'),(602,'wp-content/plugins/page-links-to/languages/page-links-to-ca.po'),(603,'wp-content/plugins/page-links-to/languages/page-links-to-de_DE.mo'),(604,'wp-content/plugins/page-links-to/languages/page-links-to-de_DE.po'),(605,'wp-content/plugins/page-links-to/languages/page-links-to-es_ES.mo'),(606,'wp-content/plugins/page-links-to/languages/page-links-to-es_ES.po'),(607,'wp-content/plugins/page-links-to/languages/page-links-to-fr_FR.mo'),(608,'wp-content/plugins/page-links-to/languages/page-links-to-fr_FR.po'),(609,'wp-content/plugins/page-links-to/languages/page-links-to-he_IL.mo'),(610,'wp-content/plugins/page-links-to/languages/page-links-to-he_IL.po'),(611,'wp-content/plugins/page-links-to/languages/page-links-to-hu_HU.mo'),(612,'wp-content/plugins/page-links-to/languages/page-links-to-hu_HU.po'),(613,'wp-content/plugins/page-links-to/languages/page-links-to-it_IT.mo'),(614,'wp-content/plugins/page-links-to/languages/page-links-to-it_IT.po'),(615,'wp-content/plugins/page-links-to/languages/page-links-to-ja.mo'),(616,'wp-content/plugins/page-links-to/languages/page-links-to-ja.po'),(617,'wp-content/plugins/page-links-to/languages/page-links-to-nb_NO.mo'),(618,'wp-content/plugins/page-links-to/languages/page-links-to-nb_NO.po'),(619,'wp-content/plugins/page-links-to/languages/page-links-to-nl_NL.mo'),(620,'wp-content/plugins/page-links-to/languages/page-links-to-nl_NL.po'),(621,'wp-content/plugins/page-links-to/languages/page-links-to-pt_BR.mo'),(622,'wp-content/plugins/page-links-to/languages/page-links-to-pt_BR.po'),(623,'wp-content/plugins/page-links-to/languages/page-links-to-pt_PT.mo'),(624,'wp-content/plugins/page-links-to/languages/page-links-to-pt_PT.po'),(625,'wp-content/plugins/page-links-to/languages/page-links-to-sv_SE.mo'),(626,'wp-content/plugins/page-links-to/languages/page-links-to-sv_SE.po'),(627,'wp-content/plugins/page-links-to/languages/page-links-to.pot'),(628,'wp-content/plugins/page-links-to/lib/wp-stack-plugin.php'),(629,'wp-content/plugins/page-links-to/page-links-to.php'),(630,'wp-content/plugins/page-links-to/phpunit.xml'),(631,'wp-content/plugins/page-links-to/readme.txt'),(632,'wp-content/plugins/page-links-to/screenshot-1.png'),(633,'wp-content/plugins/page-links-to/tests/bootstrap.php'),(634,'wp-content/plugins/page-links-to/tests/test-admin.php'),(635,'wp-content/plugins/page-links-to/tests/test-default-options.php'),(636,'wp-content/plugins/page-links-to/tests/test-filtering.php'),(637,'wp-content/plugins/page-links-to/tests/test-js.php'),(638,'wp-content/plugins/page-links-to/tests/test-redirection.php'),(639,'wp-content/plugins/page-links-to/tests/test-saving.php'),(640,'wp-content/plugins/page-links-to/tests/test-utils.php'),(641,'wp-content/plugins/secondary-html-content/readme.txt'),(642,'wp-content/plugins/secondary-html-content/screenshot-1.png'),(643,'wp-content/plugins/secondary-html-content/screenshot-2.png'),(644,'wp-content/plugins/secondary-html-content/screenshot-3.png'),(645,'wp-content/plugins/secondary-html-content/secondary-html-content.php'),(646,'wp-content/plugins/tinymce-advanced/css/tadv-styles.css'),(647,'wp-content/plugins/tinymce-advanced/js/tadv.js'),(648,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-ar.mo'),(649,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-ar.po'),(650,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-de_DE.mo'),(651,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-de_DE.po'),(652,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-pl_PL.mo'),(653,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced-pl_PL.po'),(654,'wp-content/plugins/tinymce-advanced/langs/tinymce-advanced.pot'),(655,'wp-content/plugins/tinymce-advanced/mce/advlist/plugin.js'),(656,'wp-content/plugins/tinymce-advanced/mce/advlist/plugin.min.js'),(657,'wp-content/plugins/tinymce-advanced/mce/anchor/plugin.js'),(658,'wp-content/plugins/tinymce-advanced/mce/anchor/plugin.min.js'),(659,'wp-content/plugins/tinymce-advanced/mce/code/plugin.js'),(660,'wp-content/plugins/tinymce-advanced/mce/code/plugin.min.js'),(661,'wp-content/plugins/tinymce-advanced/mce/contextmenu/plugin.js'),(662,'wp-content/plugins/tinymce-advanced/mce/contextmenu/plugin.min.js'),(663,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_arrow.gif'),(664,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_biggrin.gif'),(665,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_confused.gif'),(666,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_cool.gif'),(667,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_cry.gif'),(668,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_eek.gif'),(669,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_evil.gif'),(670,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_idea.gif'),(671,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_lol.gif'),(672,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_mad.gif'),(673,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_mrgreen.gif'),(674,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_neutral.gif'),(675,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_razz.gif'),(676,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_redface.gif'),(677,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_rolleyes.gif'),(678,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_sad.gif'),(679,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_smile.gif'),(680,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_surprised.gif'),(681,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_twisted.gif'),(682,'wp-content/plugins/tinymce-advanced/mce/emoticons/img/icon_wink.gif'),(683,'wp-content/plugins/tinymce-advanced/mce/emoticons/plugin.js'),(684,'wp-content/plugins/tinymce-advanced/mce/emoticons/plugin.min.js'),(685,'wp-content/plugins/tinymce-advanced/mce/importcss/plugin.js'),(686,'wp-content/plugins/tinymce-advanced/mce/importcss/plugin.min.js'),(687,'wp-content/plugins/tinymce-advanced/mce/insertdatetime/plugin.js'),(688,'wp-content/plugins/tinymce-advanced/mce/insertdatetime/plugin.min.js'),(689,'wp-content/plugins/tinymce-advanced/mce/link/plugin.js'),(690,'wp-content/plugins/tinymce-advanced/mce/link/plugin.min.js'),(691,'wp-content/plugins/tinymce-advanced/mce/nonbreaking/plugin.js'),(692,'wp-content/plugins/tinymce-advanced/mce/nonbreaking/plugin.min.js'),(693,'wp-content/plugins/tinymce-advanced/mce/print/plugin.js'),(694,'wp-content/plugins/tinymce-advanced/mce/print/plugin.min.js'),(695,'wp-content/plugins/tinymce-advanced/mce/searchreplace/plugin.js'),(696,'wp-content/plugins/tinymce-advanced/mce/searchreplace/plugin.min.js'),(697,'wp-content/plugins/tinymce-advanced/mce/table/plugin.js'),(698,'wp-content/plugins/tinymce-advanced/mce/table/plugin.min.js'),(699,'wp-content/plugins/tinymce-advanced/mce/textpattern/plugin.js'),(700,'wp-content/plugins/tinymce-advanced/mce/textpattern/plugin.min.js'),(701,'wp-content/plugins/tinymce-advanced/mce/visualblocks/css/visualblocks.css'),(702,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/address.gif'),(703,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/article.gif'),(704,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/aside.gif'),(705,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/blockquote.gif'),(706,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/div.gif'),(707,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/dl.gif'),(708,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/figure.gif'),(709,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h1.gif'),(710,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h2.gif'),(711,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h3.gif'),(712,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h4.gif'),(713,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h5.gif'),(714,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/h6.gif'),(715,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/hgroup.gif'),(716,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/ol.gif'),(717,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/p.gif'),(718,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/pre.gif'),(719,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/section.gif'),(720,'wp-content/plugins/tinymce-advanced/mce/visualblocks/img/ul.gif'),(721,'wp-content/plugins/tinymce-advanced/mce/visualblocks/plugin.js'),(722,'wp-content/plugins/tinymce-advanced/mce/visualblocks/plugin.min.js'),(723,'wp-content/plugins/tinymce-advanced/mce/visualchars/plugin.js'),(724,'wp-content/plugins/tinymce-advanced/mce/visualchars/plugin.min.js'),(725,'wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.js'),(726,'wp-content/plugins/tinymce-advanced/mce/wptadv/plugin.min.js'),(727,'wp-content/plugins/tinymce-advanced/readme.txt'),(728,'wp-content/plugins/tinymce-advanced/screenshot-1.png'),(729,'wp-content/plugins/tinymce-advanced/screenshot-2.png'),(730,'wp-content/plugins/tinymce-advanced/tadv_admin.php'),(731,'wp-content/plugins/tinymce-advanced/tinymce-advanced.php'),(732,'wp-content/plugins/tinymce-advanced/uninstall.php'),(733,'wp-content/plugins/underconstruction/ajax-loader.gif'),(734,'wp-content/plugins/underconstruction/defaultMessage.php'),(735,'wp-content/plugins/underconstruction/languages/underconstruction-default.mo'),(736,'wp-content/plugins/underconstruction/languages/underconstruction-default.po'),(737,'wp-content/plugins/underconstruction/languages/underconstruction-fr_FR.mo'),(738,'wp-content/plugins/underconstruction/languages/underconstruction-fr_FR.po'),(739,'wp-content/plugins/underconstruction/readme.txt'),(740,'wp-content/plugins/underconstruction/ucOptions.php'),(741,'wp-content/plugins/underconstruction/underConstruction.php'),(742,'wp-content/plugins/underconstruction/underconstruction.dev.js'),(743,'wp-content/plugins/underconstruction/underconstruction.min.js'),(744,'wp-content/plugins/wordfence/css/activity-report-widget.css'),(745,'wp-content/plugins/wordfence/css/colorbox.css'),(746,'wp-content/plugins/wordfence/css/diff.css'),(747,'wp-content/plugins/wordfence/css/dt_table.css'),(748,'wp-content/plugins/wordfence/css/fullLog.css'),(749,'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),(750,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png'),(751,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png'),(752,'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png'),(753,'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(754,'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png'),(755,'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png'),(756,'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png'),(757,'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png'),(758,'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png'),(759,'wp-content/plugins/wordfence/css/iptraf.css'),(760,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css'),(761,'wp-content/plugins/wordfence/css/jquery-ui.min.css'),(762,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.css'),(763,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.css'),(764,'wp-content/plugins/wordfence/css/main.css'),(765,'wp-content/plugins/wordfence/css/phpinfo.css'),(766,'wp-content/plugins/wordfence/css/select2.min.css'),(767,'wp-content/plugins/wordfence/css/wordfenceBox.css'),(768,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(769,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(770,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(771,'wp-content/plugins/wordfence/images/flags/.png'),(772,'wp-content/plugins/wordfence/images/flags/a1.png'),(773,'wp-content/plugins/wordfence/images/flags/a2.png'),(774,'wp-content/plugins/wordfence/images/flags/ad.png'),(775,'wp-content/plugins/wordfence/images/flags/ae.png'),(776,'wp-content/plugins/wordfence/images/flags/af.png'),(777,'wp-content/plugins/wordfence/images/flags/ag.png'),(778,'wp-content/plugins/wordfence/images/flags/ai.png'),(779,'wp-content/plugins/wordfence/images/flags/al.png'),(780,'wp-content/plugins/wordfence/images/flags/am.png'),(781,'wp-content/plugins/wordfence/images/flags/an.png'),(782,'wp-content/plugins/wordfence/images/flags/ao.png'),(783,'wp-content/plugins/wordfence/images/flags/ap.png'),(784,'wp-content/plugins/wordfence/images/flags/aq.png'),(785,'wp-content/plugins/wordfence/images/flags/ar.png'),(786,'wp-content/plugins/wordfence/images/flags/as.png'),(787,'wp-content/plugins/wordfence/images/flags/at.png'),(788,'wp-content/plugins/wordfence/images/flags/au.png'),(789,'wp-content/plugins/wordfence/images/flags/aw.png'),(790,'wp-content/plugins/wordfence/images/flags/ax.png'),(791,'wp-content/plugins/wordfence/images/flags/az.png'),(792,'wp-content/plugins/wordfence/images/flags/ba.png'),(793,'wp-content/plugins/wordfence/images/flags/bb.png'),(794,'wp-content/plugins/wordfence/images/flags/bd.png'),(795,'wp-content/plugins/wordfence/images/flags/be.png'),(796,'wp-content/plugins/wordfence/images/flags/bf.png'),(797,'wp-content/plugins/wordfence/images/flags/bg.png'),(798,'wp-content/plugins/wordfence/images/flags/bh.png'),(799,'wp-content/plugins/wordfence/images/flags/bi.png'),(800,'wp-content/plugins/wordfence/images/flags/bj.png'),(801,'wp-content/plugins/wordfence/images/flags/bm.png'),(802,'wp-content/plugins/wordfence/images/flags/bn.png'),(803,'wp-content/plugins/wordfence/images/flags/bo.png'),(804,'wp-content/plugins/wordfence/images/flags/br.png'),(805,'wp-content/plugins/wordfence/images/flags/bs.png'),(806,'wp-content/plugins/wordfence/images/flags/bt.png'),(807,'wp-content/plugins/wordfence/images/flags/bv.png'),(808,'wp-content/plugins/wordfence/images/flags/bw.png'),(809,'wp-content/plugins/wordfence/images/flags/by.png'),(810,'wp-content/plugins/wordfence/images/flags/bz.png'),(811,'wp-content/plugins/wordfence/images/flags/ca.png'),(812,'wp-content/plugins/wordfence/images/flags/cc.png'),(813,'wp-content/plugins/wordfence/images/flags/cd.png'),(814,'wp-content/plugins/wordfence/images/flags/cf.png'),(815,'wp-content/plugins/wordfence/images/flags/cg.png'),(816,'wp-content/plugins/wordfence/images/flags/ch.png'),(817,'wp-content/plugins/wordfence/images/flags/ci.png'),(818,'wp-content/plugins/wordfence/images/flags/ck.png'),(819,'wp-content/plugins/wordfence/images/flags/cl.png'),(820,'wp-content/plugins/wordfence/images/flags/cm.png'),(821,'wp-content/plugins/wordfence/images/flags/cn.png'),(822,'wp-content/plugins/wordfence/images/flags/co.png'),(823,'wp-content/plugins/wordfence/images/flags/cr.png'),(824,'wp-content/plugins/wordfence/images/flags/cs.png'),(825,'wp-content/plugins/wordfence/images/flags/cu.png'),(826,'wp-content/plugins/wordfence/images/flags/cv.png'),(827,'wp-content/plugins/wordfence/images/flags/cw.png'),(828,'wp-content/plugins/wordfence/images/flags/cx.png'),(829,'wp-content/plugins/wordfence/images/flags/cy.png'),(830,'wp-content/plugins/wordfence/images/flags/cz.png'),(831,'wp-content/plugins/wordfence/images/flags/de.png'),(832,'wp-content/plugins/wordfence/images/flags/dj.png'),(833,'wp-content/plugins/wordfence/images/flags/dk.png'),(834,'wp-content/plugins/wordfence/images/flags/dm.png'),(835,'wp-content/plugins/wordfence/images/flags/do.png'),(836,'wp-content/plugins/wordfence/images/flags/dz.png'),(837,'wp-content/plugins/wordfence/images/flags/ec.png'),(838,'wp-content/plugins/wordfence/images/flags/ee.png'),(839,'wp-content/plugins/wordfence/images/flags/eg.png'),(840,'wp-content/plugins/wordfence/images/flags/eh.png'),(841,'wp-content/plugins/wordfence/images/flags/england.png'),(842,'wp-content/plugins/wordfence/images/flags/er.png'),(843,'wp-content/plugins/wordfence/images/flags/es.png'),(844,'wp-content/plugins/wordfence/images/flags/et.png'),(845,'wp-content/plugins/wordfence/images/flags/eu.png'),(846,'wp-content/plugins/wordfence/images/flags/fam.png'),(847,'wp-content/plugins/wordfence/images/flags/fi.png'),(848,'wp-content/plugins/wordfence/images/flags/fj.png'),(849,'wp-content/plugins/wordfence/images/flags/fk.png'),(850,'wp-content/plugins/wordfence/images/flags/fm.png'),(851,'wp-content/plugins/wordfence/images/flags/fo.png'),(852,'wp-content/plugins/wordfence/images/flags/fr.png'),(853,'wp-content/plugins/wordfence/images/flags/ga.png'),(854,'wp-content/plugins/wordfence/images/flags/gb.png'),(855,'wp-content/plugins/wordfence/images/flags/gd.png'),(856,'wp-content/plugins/wordfence/images/flags/ge.png'),(857,'wp-content/plugins/wordfence/images/flags/gf.png'),(858,'wp-content/plugins/wordfence/images/flags/gg.png'),(859,'wp-content/plugins/wordfence/images/flags/gh.png'),(860,'wp-content/plugins/wordfence/images/flags/gi.png'),(861,'wp-content/plugins/wordfence/images/flags/gl.png'),(862,'wp-content/plugins/wordfence/images/flags/gm.png'),(863,'wp-content/plugins/wordfence/images/flags/gn.png'),(864,'wp-content/plugins/wordfence/images/flags/gp.png'),(865,'wp-content/plugins/wordfence/images/flags/gq.png'),(866,'wp-content/plugins/wordfence/images/flags/gr.png'),(867,'wp-content/plugins/wordfence/images/flags/gs.png'),(868,'wp-content/plugins/wordfence/images/flags/gt.png'),(869,'wp-content/plugins/wordfence/images/flags/gu.png'),(870,'wp-content/plugins/wordfence/images/flags/gw.png'),(871,'wp-content/plugins/wordfence/images/flags/gy.png'),(872,'wp-content/plugins/wordfence/images/flags/hk.png'),(873,'wp-content/plugins/wordfence/images/flags/hn.png'),(874,'wp-content/plugins/wordfence/images/flags/hr.png'),(875,'wp-content/plugins/wordfence/images/flags/ht.png'),(876,'wp-content/plugins/wordfence/images/flags/hu.png'),(877,'wp-content/plugins/wordfence/images/flags/id.png'),(878,'wp-content/plugins/wordfence/images/flags/ie.png'),(879,'wp-content/plugins/wordfence/images/flags/il.png'),(880,'wp-content/plugins/wordfence/images/flags/im.png'),(881,'wp-content/plugins/wordfence/images/flags/in.png'),(882,'wp-content/plugins/wordfence/images/flags/io.png'),(883,'wp-content/plugins/wordfence/images/flags/iq.png'),(884,'wp-content/plugins/wordfence/images/flags/ir.png'),(885,'wp-content/plugins/wordfence/images/flags/is.png'),(886,'wp-content/plugins/wordfence/images/flags/it.png'),(887,'wp-content/plugins/wordfence/images/flags/je.png'),(888,'wp-content/plugins/wordfence/images/flags/jm.png'),(889,'wp-content/plugins/wordfence/images/flags/jo.png'),(890,'wp-content/plugins/wordfence/images/flags/jp.png'),(891,'wp-content/plugins/wordfence/images/flags/ke.png'),(892,'wp-content/plugins/wordfence/images/flags/kg.png'),(893,'wp-content/plugins/wordfence/images/flags/kh.png'),(894,'wp-content/plugins/wordfence/images/flags/ki.png'),(895,'wp-content/plugins/wordfence/images/flags/km.png'),(896,'wp-content/plugins/wordfence/images/flags/kn.png'),(897,'wp-content/plugins/wordfence/images/flags/kp.png'),(898,'wp-content/plugins/wordfence/images/flags/kr.png'),(899,'wp-content/plugins/wordfence/images/flags/kw.png'),(900,'wp-content/plugins/wordfence/images/flags/ky.png'),(901,'wp-content/plugins/wordfence/images/flags/kz.png'),(902,'wp-content/plugins/wordfence/images/flags/la.png'),(903,'wp-content/plugins/wordfence/images/flags/lb.png'),(904,'wp-content/plugins/wordfence/images/flags/lc.png'),(905,'wp-content/plugins/wordfence/images/flags/li.png'),(906,'wp-content/plugins/wordfence/images/flags/lk.png'),(907,'wp-content/plugins/wordfence/images/flags/lr.png'),(908,'wp-content/plugins/wordfence/images/flags/ls.png'),(909,'wp-content/plugins/wordfence/images/flags/lt.png'),(910,'wp-content/plugins/wordfence/images/flags/lu.png'),(911,'wp-content/plugins/wordfence/images/flags/lv.png'),(912,'wp-content/plugins/wordfence/images/flags/ly.png'),(913,'wp-content/plugins/wordfence/images/flags/ma.png'),(914,'wp-content/plugins/wordfence/images/flags/mc.png'),(915,'wp-content/plugins/wordfence/images/flags/md.png'),(916,'wp-content/plugins/wordfence/images/flags/me.png'),(917,'wp-content/plugins/wordfence/images/flags/mg.png'),(918,'wp-content/plugins/wordfence/images/flags/mh.png'),(919,'wp-content/plugins/wordfence/images/flags/mk.png'),(920,'wp-content/plugins/wordfence/images/flags/ml.png'),(921,'wp-content/plugins/wordfence/images/flags/mm.png'),(922,'wp-content/plugins/wordfence/images/flags/mn.png'),(923,'wp-content/plugins/wordfence/images/flags/mo.png'),(924,'wp-content/plugins/wordfence/images/flags/mp.png'),(925,'wp-content/plugins/wordfence/images/flags/mq.png'),(926,'wp-content/plugins/wordfence/images/flags/mr.png'),(927,'wp-content/plugins/wordfence/images/flags/ms.png'),(928,'wp-content/plugins/wordfence/images/flags/mt.png'),(929,'wp-content/plugins/wordfence/images/flags/mu.png'),(930,'wp-content/plugins/wordfence/images/flags/mv.png'),(931,'wp-content/plugins/wordfence/images/flags/mw.png'),(932,'wp-content/plugins/wordfence/images/flags/mx.png'),(933,'wp-content/plugins/wordfence/images/flags/my.png'),(934,'wp-content/plugins/wordfence/images/flags/mz.png'),(935,'wp-content/plugins/wordfence/images/flags/na.png'),(936,'wp-content/plugins/wordfence/images/flags/nc.png'),(937,'wp-content/plugins/wordfence/images/flags/ne.png'),(938,'wp-content/plugins/wordfence/images/flags/nf.png'),(939,'wp-content/plugins/wordfence/images/flags/ng.png'),(940,'wp-content/plugins/wordfence/images/flags/ni.png'),(941,'wp-content/plugins/wordfence/images/flags/nl.png'),(942,'wp-content/plugins/wordfence/images/flags/no.png'),(943,'wp-content/plugins/wordfence/images/flags/np.png'),(944,'wp-content/plugins/wordfence/images/flags/nr.png'),(945,'wp-content/plugins/wordfence/images/flags/nu.png'),(946,'wp-content/plugins/wordfence/images/flags/nz.png'),(947,'wp-content/plugins/wordfence/images/flags/om.png'),(948,'wp-content/plugins/wordfence/images/flags/pa.png'),(949,'wp-content/plugins/wordfence/images/flags/pe.png'),(950,'wp-content/plugins/wordfence/images/flags/pf.png'),(951,'wp-content/plugins/wordfence/images/flags/pg.png'),(952,'wp-content/plugins/wordfence/images/flags/ph.png'),(953,'wp-content/plugins/wordfence/images/flags/pk.png'),(954,'wp-content/plugins/wordfence/images/flags/pl.png'),(955,'wp-content/plugins/wordfence/images/flags/pm.png'),(956,'wp-content/plugins/wordfence/images/flags/pn.png'),(957,'wp-content/plugins/wordfence/images/flags/pr.png'),(958,'wp-content/plugins/wordfence/images/flags/ps.png'),(959,'wp-content/plugins/wordfence/images/flags/pt.png'),(960,'wp-content/plugins/wordfence/images/flags/pw.png'),(961,'wp-content/plugins/wordfence/images/flags/py.png'),(962,'wp-content/plugins/wordfence/images/flags/qa.png'),(963,'wp-content/plugins/wordfence/images/flags/re.png'),(964,'wp-content/plugins/wordfence/images/flags/ro.png'),(965,'wp-content/plugins/wordfence/images/flags/rs.png'),(966,'wp-content/plugins/wordfence/images/flags/ru.png'),(967,'wp-content/plugins/wordfence/images/flags/rw.png'),(968,'wp-content/plugins/wordfence/images/flags/sa.png'),(969,'wp-content/plugins/wordfence/images/flags/sb.png'),(970,'wp-content/plugins/wordfence/images/flags/sc.png'),(971,'wp-content/plugins/wordfence/images/flags/scotland.png'),(972,'wp-content/plugins/wordfence/images/flags/sd.png'),(973,'wp-content/plugins/wordfence/images/flags/se.png'),(974,'wp-content/plugins/wordfence/images/flags/sg.png'),(975,'wp-content/plugins/wordfence/images/flags/sh.png'),(976,'wp-content/plugins/wordfence/images/flags/si.png'),(977,'wp-content/plugins/wordfence/images/flags/sk.png'),(978,'wp-content/plugins/wordfence/images/flags/sl.png'),(979,'wp-content/plugins/wordfence/images/flags/sm.png'),(980,'wp-content/plugins/wordfence/images/flags/sn.png'),(981,'wp-content/plugins/wordfence/images/flags/so.png'),(982,'wp-content/plugins/wordfence/images/flags/sprite-des-128.png'),(983,'wp-content/plugins/wordfence/images/flags/sprite-des-16.png'),(984,'wp-content/plugins/wordfence/images/flags/sprite-des-256.png'),(985,'wp-content/plugins/wordfence/images/flags/sprite-des-32.png'),(986,'wp-content/plugins/wordfence/images/flags/sprite-des-64.png'),(987,'wp-content/plugins/wordfence/images/flags/sprite-des.png'),(988,'wp-content/plugins/wordfence/images/flags/sprite-des2.png'),(989,'wp-content/plugins/wordfence/images/flags/sprite2.css'),(990,'wp-content/plugins/wordfence/images/flags/sprite2.png'),(991,'wp-content/plugins/wordfence/images/flags/sr.png'),(992,'wp-content/plugins/wordfence/images/flags/st.png'),(993,'wp-content/plugins/wordfence/images/flags/sv.png'),(994,'wp-content/plugins/wordfence/images/flags/sy.png'),(995,'wp-content/plugins/wordfence/images/flags/sz.png'),(996,'wp-content/plugins/wordfence/images/flags/tc.png'),(997,'wp-content/plugins/wordfence/images/flags/td.png'),(998,'wp-content/plugins/wordfence/images/flags/tf.png'),(999,'wp-content/plugins/wordfence/images/flags/tg.png'),(1000,'wp-content/plugins/wordfence/images/flags/th.png'),(1001,'wp-content/plugins/wordfence/images/flags/tj.png'),(1002,'wp-content/plugins/wordfence/images/flags/tk.png'),(1003,'wp-content/plugins/wordfence/images/flags/tl.png'),(1004,'wp-content/plugins/wordfence/images/flags/tm.png'),(1005,'wp-content/plugins/wordfence/images/flags/tn.png'),(1006,'wp-content/plugins/wordfence/images/flags/to.png'),(1007,'wp-content/plugins/wordfence/images/flags/tr.png'),(1008,'wp-content/plugins/wordfence/images/flags/tt.png'),(1009,'wp-content/plugins/wordfence/images/flags/tv.png'),(1010,'wp-content/plugins/wordfence/images/flags/tw.png'),(1011,'wp-content/plugins/wordfence/images/flags/tz.png'),(1012,'wp-content/plugins/wordfence/images/flags/ua.png'),(1013,'wp-content/plugins/wordfence/images/flags/ug.png'),(1014,'wp-content/plugins/wordfence/images/flags/uk.png'),(1015,'wp-content/plugins/wordfence/images/flags/um.png'),(1016,'wp-content/plugins/wordfence/images/flags/us.png'),(1017,'wp-content/plugins/wordfence/images/flags/uy.png'),(1018,'wp-content/plugins/wordfence/images/flags/uz.png'),(1019,'wp-content/plugins/wordfence/images/flags/va.png'),(1020,'wp-content/plugins/wordfence/images/flags/vc.png'),(1021,'wp-content/plugins/wordfence/images/flags/ve.png'),(1022,'wp-content/plugins/wordfence/images/flags/vg.png'),(1023,'wp-content/plugins/wordfence/images/flags/vi.png'),(1024,'wp-content/plugins/wordfence/images/flags/vn.png'),(1025,'wp-content/plugins/wordfence/images/flags/vu.png'),(1026,'wp-content/plugins/wordfence/images/flags/wales.png'),(1027,'wp-content/plugins/wordfence/images/flags/wf.png'),(1028,'wp-content/plugins/wordfence/images/flags/ws.png'),(1029,'wp-content/plugins/wordfence/images/flags/xk.png'),(1030,'wp-content/plugins/wordfence/images/flags/ye.png'),(1031,'wp-content/plugins/wordfence/images/flags/yt.png'),(1032,'wp-content/plugins/wordfence/images/flags/za.png'),(1033,'wp-content/plugins/wordfence/images/flags/zm.png'),(1034,'wp-content/plugins/wordfence/images/flags/zw.png'),(1035,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(1036,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(1037,'wp-content/plugins/wordfence/images/help.png'),(1038,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(1039,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(1040,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(1041,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(1042,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(1043,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(1044,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(1045,'wp-content/plugins/wordfence/images/icons/email_go.png'),(1046,'wp-content/plugins/wordfence/images/icons/error128.png'),(1047,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(1048,'wp-content/plugins/wordfence/images/icons/tick128.png'),(1049,'wp-content/plugins/wordfence/images/icons/warning128.png'),(1050,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(1051,'wp-content/plugins/wordfence/images/loading.gif'),(1052,'wp-content/plugins/wordfence/images/loading_background.png'),(1053,'wp-content/plugins/wordfence/images/loading_large.gif'),(1054,'wp-content/plugins/wordfence/images/logo.png'),(1055,'wp-content/plugins/wordfence/images/rr_premium.png'),(1056,'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg'),(1057,'wp-content/plugins/wordfence/images/sort_asc.gif'),(1058,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(1059,'wp-content/plugins/wordfence/images/sort_both.gif'),(1060,'wp-content/plugins/wordfence/images/sort_desc.gif'),(1061,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(1062,'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png'),(1063,'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png'),(1064,'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png'),(1065,'wp-content/plugins/wordfence/index.php'),(1066,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.js'),(1067,'wp-content/plugins/wordfence/js/admin.js'),(1068,'wp-content/plugins/wordfence/js/admin.liveTraffic.js'),(1069,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js'),(1070,'wp-content/plugins/wordfence/js/jquery.colorbox-min.js'),(1071,'wp-content/plugins/wordfence/js/jquery.dataTables.min.js'),(1072,'wp-content/plugins/wordfence/js/jquery.qrcode.min.js'),(1073,'wp-content/plugins/wordfence/js/jquery.tmpl.min.js'),(1074,'wp-content/plugins/wordfence/js/jquery.tools.min.js'),(1075,'wp-content/plugins/wordfence/js/knockout-3.3.0.js'),(1076,'wp-content/plugins/wordfence/js/perf.js'),(1077,'wp-content/plugins/wordfence/js/select2.min.js'),(1078,'wp-content/plugins/wordfence/js/tourTip.js'),(1079,'wp-content/plugins/wordfence/lib/.htaccess'),(1080,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(1081,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(1082,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(1083,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(1084,'wp-content/plugins/wordfence/lib/Diff.php'),(1085,'wp-content/plugins/wordfence/lib/GeoIP.dat'),(1086,'wp-content/plugins/wordfence/lib/GeoIPv6.dat'),(1087,'wp-content/plugins/wordfence/lib/IPTraf.php'),(1088,'wp-content/plugins/wordfence/lib/compat.php'),(1089,'wp-content/plugins/wordfence/lib/conntest.php'),(1090,'wp-content/plugins/wordfence/lib/cronview.php'),(1091,'wp-content/plugins/wordfence/lib/dashboard.php'),(1092,'wp-content/plugins/wordfence/lib/dbview.php'),(1093,'wp-content/plugins/wordfence/lib/diffResult.php'),(1094,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(1095,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(1096,'wp-content/plugins/wordfence/lib/email_passwdChanged.php'),(1097,'wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php'),(1098,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(1099,'wp-content/plugins/wordfence/lib/menu_activity.php'),(1100,'wp-content/plugins/wordfence/lib/menu_blockedIPs.php'),(1101,'wp-content/plugins/wordfence/lib/menu_countryBlocking.php'),(1102,'wp-content/plugins/wordfence/lib/menu_diagnostic.php'),(1103,'wp-content/plugins/wordfence/lib/menu_options.php'),(1104,'wp-content/plugins/wordfence/lib/menu_passwd.php'),(1105,'wp-content/plugins/wordfence/lib/menu_rangeBlocking.php'),(1106,'wp-content/plugins/wordfence/lib/menu_scan.php'),(1107,'wp-content/plugins/wordfence/lib/menu_scanSchedule.php'),(1108,'wp-content/plugins/wordfence/lib/menu_sitePerf.php'),(1109,'wp-content/plugins/wordfence/lib/menu_sitePerfStats.php'),(1110,'wp-content/plugins/wordfence/lib/menu_twoFactor.php'),(1111,'wp-content/plugins/wordfence/lib/menu_waf.php'),(1112,'wp-content/plugins/wordfence/lib/menu_whois.php'),(1113,'wp-content/plugins/wordfence/lib/pageTitle.php'),(1114,'wp-content/plugins/wordfence/lib/schedWeekEntry.php'),(1115,'wp-content/plugins/wordfence/lib/sysinfo.php'),(1116,'wp-content/plugins/wordfence/lib/unknownFiles.php'),(1117,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(1118,'wp-content/plugins/wordfence/lib/wf503.php'),(1119,'wp-content/plugins/wordfence/lib/wfAPI.php'),(1120,'wp-content/plugins/wordfence/lib/wfAction.php'),(1121,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(1122,'wp-content/plugins/wordfence/lib/wfArray.php'),(1123,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(1124,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(1125,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(1126,'wp-content/plugins/wordfence/lib/wfCache.php'),(1127,'wp-content/plugins/wordfence/lib/wfConfig.php'),(1128,'wp-content/plugins/wordfence/lib/wfCountryMap.php'),(1129,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(1130,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(1131,'wp-content/plugins/wordfence/lib/wfDB.php'),(1132,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(1133,'wp-content/plugins/wordfence/lib/wfDict.php'),(1134,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(1135,'wp-content/plugins/wordfence/lib/wfGeoIP.php'),(1136,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(1137,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(1138,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(1139,'wp-content/plugins/wordfence/lib/wfIssues.php'),(1140,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(1141,'wp-content/plugins/wordfence/lib/wfLog.php'),(1142,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(1143,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(1144,'wp-content/plugins/wordfence/lib/wfRate.php'),(1145,'wp-content/plugins/wordfence/lib/wfScan.php'),(1146,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(1147,'wp-content/plugins/wordfence/lib/wfSchema.php'),(1148,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(1149,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(1150,'wp-content/plugins/wordfence/lib/wfUtils.php'),(1151,'wp-content/plugins/wordfence/lib/wfView.php'),(1152,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(1153,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(1154,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(1155,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(1156,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(1157,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(1158,'wp-content/plugins/wordfence/readme.txt'),(1159,'wp-content/plugins/wordfence/tmp/.htaccess'),(1160,'wp-content/plugins/wordfence/tmp/configCache.php'),(1161,'wp-content/plugins/wordfence/vendor/autoload.php'),(1162,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(1163,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(1164,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(1165,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(1166,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(1167,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(1168,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(1169,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php'),(1170,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(1171,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(1172,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(1173,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(1174,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(1175,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(1176,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(1177,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(1178,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(1179,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(1180,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(1181,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(1182,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(1183,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(1184,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(1185,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(1186,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(1187,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(1188,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(1189,'wp-content/plugins/wordfence/views/marketing/rightrail.php'),(1190,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(1191,'wp-content/plugins/wordfence/views/reports/activity-report-email.php'),(1192,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(1193,'wp-content/plugins/wordfence/views/waf/debug.php'),(1194,'wp-content/plugins/wordfence/waf/bootstrap.php'),(1195,'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php'),(1196,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(1197,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(1198,'wp-content/plugins/wordfence/wordfence.php'),(1199,'wp-content/plugins/wordpress-seo/CONTRIBUTING.md'),(1200,'wp-content/plugins/wordpress-seo/README.md'),(1201,'wp-content/plugins/wordpress-seo/admin/ajax.php'),(1202,'wp-content/plugins/wordpress-seo/admin/class-admin-init.php'),(1203,'wp-content/plugins/wordpress-seo/admin/class-admin-user-profile.php'),(1204,'wp-content/plugins/wordpress-seo/admin/class-admin.php'),(1205,'wp-content/plugins/wordpress-seo/admin/class-bulk-description-editor-list-table.php'),(1206,'wp-content/plugins/wordpress-seo/admin/class-bulk-editor-list-table.php'),(1207,'wp-content/plugins/wordpress-seo/admin/class-bulk-title-editor-list-table.php'),(1208,'wp-content/plugins/wordpress-seo/admin/class-config.php'),(1209,'wp-content/plugins/wordpress-seo/admin/class-customizer.php'),(1210,'wp-content/plugins/wordpress-seo/admin/class-export.php'),(1211,'wp-content/plugins/wordpress-seo/admin/class-import-aioseo.php'),(1212,'wp-content/plugins/wordpress-seo/admin/class-import-external.php'),(1213,'wp-content/plugins/wordpress-seo/admin/class-import-woothemes-seo.php'),(1214,'wp-content/plugins/wordpress-seo/admin/class-import.php'),(1215,'wp-content/plugins/wordpress-seo/admin/class-metabox.php'),(1216,'wp-content/plugins/wordpress-seo/admin/class-opengraph-admin.php'),(1217,'wp-content/plugins/wordpress-seo/admin/class-plugin-conflict.php'),(1218,'wp-content/plugins/wordpress-seo/admin/class-pointers.php'),(1219,'wp-content/plugins/wordpress-seo/admin/class-sitemaps-admin.php'),(1220,'wp-content/plugins/wordpress-seo/admin/class-snippet-preview.php'),(1221,'wp-content/plugins/wordpress-seo/admin/class-social-facebook.php'),(1222,'wp-content/plugins/wordpress-seo/admin/class-taxonomy.php'),(1223,'wp-content/plugins/wordpress-seo/admin/class-yoast-dashboard-widget.php'),(1224,'wp-content/plugins/wordpress-seo/admin/class-yoast-form.php'),(1225,'wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php'),(1226,'wp-content/plugins/wordpress-seo/admin/class-yoast-notification.php'),(1227,'wp-content/plugins/wordpress-seo/admin/class-yoast-plugin-conflict.php'),(1228,'wp-content/plugins/wordpress-seo/admin/class-yoast-textstatistics.php'),(1229,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-ajax.php'),(1230,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-bulk-action.php'),(1231,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-category-filters.php'),(1232,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-config.php'),(1233,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-count.php'),(1234,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-issue.php'),(1235,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-issues.php'),(1236,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-mapper.php'),(1237,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-marker.php'),(1238,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-platform-tabs.php'),(1239,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-service.php'),(1240,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-settings.php'),(1241,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc-table.php'),(1242,'wp-content/plugins/wordpress-seo/admin/google_search_console/class-gsc.php'),(1243,'wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-create-redirect.php'),(1244,'wp-content/plugins/wordpress-seo/admin/google_search_console/views/gsc-display.php'),(1245,'wp-content/plugins/wordpress-seo/admin/index.php'),(1246,'wp-content/plugins/wordpress-seo/admin/pages/advanced.php'),(1247,'wp-content/plugins/wordpress-seo/admin/pages/dashboard.php'),(1248,'wp-content/plugins/wordpress-seo/admin/pages/licenses.php'),(1249,'wp-content/plugins/wordpress-seo/admin/pages/metas.php'),(1250,'wp-content/plugins/wordpress-seo/admin/pages/network.php'),(1251,'wp-content/plugins/wordpress-seo/admin/pages/social.php'),(1252,'wp-content/plugins/wordpress-seo/admin/pages/tools.php'),(1253,'wp-content/plugins/wordpress-seo/admin/pages/xml-sitemaps.php'),(1254,'wp-content/plugins/wordpress-seo/admin/views/about.php'),(1255,'wp-content/plugins/wordpress-seo/admin/views/dashboard-widget.php'),(1256,'wp-content/plugins/wordpress-seo/admin/views/tab-breadcrumbs.php'),(1257,'wp-content/plugins/wordpress-seo/admin/views/tab-permalinks.php'),(1258,'wp-content/plugins/wordpress-seo/admin/views/tab-rss.php'),(1259,'wp-content/plugins/wordpress-seo/admin/views/tool-bulk-editor.php'),(1260,'wp-content/plugins/wordpress-seo/admin/views/tool-file-editor.php'),(1261,'wp-content/plugins/wordpress-seo/admin/views/tool-import-export.php'),(1262,'wp-content/plugins/wordpress-seo/admin/views/user-profile.php'),(1263,'wp-content/plugins/wordpress-seo/changelog.txt'),(1264,'wp-content/plugins/wordpress-seo/codeclimate.yml'),(1265,'wp-content/plugins/wordpress-seo/css/adminbar.css'),(1266,'wp-content/plugins/wordpress-seo/css/adminbar.min.css'),(1267,'wp-content/plugins/wordpress-seo/css/dashboard.css'),(1268,'wp-content/plugins/wordpress-seo/css/dashboard.min.css'),(1269,'wp-content/plugins/wordpress-seo/css/edit-page.css'),(1270,'wp-content/plugins/wordpress-seo/css/edit-page.min.css'),(1271,'wp-content/plugins/wordpress-seo/css/featured-image.css'),(1272,'wp-content/plugins/wordpress-seo/css/featured-image.min.css'),(1273,'wp-content/plugins/wordpress-seo/css/index.php'),(1274,'wp-content/plugins/wordpress-seo/css/jquery.min.css'),(1275,'wp-content/plugins/wordpress-seo/css/jquery.qtip.css'),(1276,'wp-content/plugins/wordpress-seo/css/jquery.qtip.min.css'),(1277,'wp-content/plugins/wordpress-seo/css/metabox-classic.css'),(1278,'wp-content/plugins/wordpress-seo/css/metabox-classic.min.css'),(1279,'wp-content/plugins/wordpress-seo/css/metabox-fresh.css'),(1280,'wp-content/plugins/wordpress-seo/css/metabox-fresh.min.css'),(1281,'wp-content/plugins/wordpress-seo/css/metabox-tabs.css'),(1282,'wp-content/plugins/wordpress-seo/css/metabox-tabs.min.css'),(1283,'wp-content/plugins/wordpress-seo/css/taxonomy-meta.css'),(1284,'wp-content/plugins/wordpress-seo/css/taxonomy-meta.min.css'),(1285,'wp-content/plugins/wordpress-seo/css/wpseo-dismissible.css'),(1286,'wp-content/plugins/wordpress-seo/css/wpseo-dismissible.min.css'),(1287,'wp-content/plugins/wordpress-seo/css/wpseo-rtl.css'),(1288,'wp-content/plugins/wordpress-seo/css/wpseo-rtl.min.css'),(1289,'wp-content/plugins/wordpress-seo/css/xml-sitemap-xsl.php'),(1290,'wp-content/plugins/wordpress-seo/css/yst_plugin_tools.css'),(1291,'wp-content/plugins/wordpress-seo/css/yst_plugin_tools.min.css'),(1292,'wp-content/plugins/wordpress-seo/frontend/class-breadcrumbs.php'),(1293,'wp-content/plugins/wordpress-seo/frontend/class-frontend.php'),(1294,'wp-content/plugins/wordpress-seo/frontend/class-googleplus.php'),(1295,'wp-content/plugins/wordpress-seo/frontend/class-json-ld.php'),(1296,'wp-content/plugins/wordpress-seo/frontend/class-opengraph.php'),(1297,'wp-content/plugins/wordpress-seo/frontend/class-twitter.php'),(1298,'wp-content/plugins/wordpress-seo/frontend/index.php'),(1299,'wp-content/plugins/wordpress-seo/images/Local_130x100.png'),(1300,'wp-content/plugins/wordpress-seo/images/News_SEO.png'),(1301,'wp-content/plugins/wordpress-seo/images/Premium_130x100.png'),(1302,'wp-content/plugins/wordpress-seo/images/Video_130x100.png'),(1303,'wp-content/plugins/wordpress-seo/images/Woo_130x100.png'),(1304,'wp-content/plugins/wordpress-seo/images/banner-local-seo.png'),(1305,'wp-content/plugins/wordpress-seo/images/banner-news-seo.png'),(1306,'wp-content/plugins/wordpress-seo/images/banner-premium-seo.png'),(1307,'wp-content/plugins/wordpress-seo/images/banner-video-seo.png'),(1308,'wp-content/plugins/wordpress-seo/images/banner-website-review.png'),(1309,'wp-content/plugins/wordpress-seo/images/banner-woocommerce-seo.png'),(1310,'wp-content/plugins/wordpress-seo/images/index.php'),(1311,'wp-content/plugins/wordpress-seo/images/question-mark.png'),(1312,'wp-content/plugins/wordpress-seo/images/waiting.gif'),(1313,'wp-content/plugins/wordpress-seo/inc/class-rewrite.php'),(1314,'wp-content/plugins/wordpress-seo/inc/class-sitemap-timezone.php'),(1315,'wp-content/plugins/wordpress-seo/inc/class-sitemaps.php'),(1316,'wp-content/plugins/wordpress-seo/inc/class-upgrade.php'),(1317,'wp-content/plugins/wordpress-seo/inc/class-wpseo-meta.php'),(1318,'wp-content/plugins/wordpress-seo/inc/class-wpseo-replace-vars.php'),(1319,'wp-content/plugins/wordpress-seo/inc/class-wpseo-statistics.php'),(1320,'wp-content/plugins/wordpress-seo/inc/class-wpseo-utils.php'),(1321,'wp-content/plugins/wordpress-seo/inc/index.php'),(1322,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-internallinks.php'),(1323,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-ms.php'),(1324,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-permalinks.php'),(1325,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-rss.php'),(1326,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-social.php'),(1327,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-titles.php'),(1328,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-wpseo.php'),(1329,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option-xml.php'),(1330,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-option.php'),(1331,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-options.php'),(1332,'wp-content/plugins/wordpress-seo/inc/options/class-wpseo-taxonomy-meta.php'),(1333,'wp-content/plugins/wordpress-seo/inc/wpseo-functions.php'),(1334,'wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php'),(1335,'wp-content/plugins/wordpress-seo/index.php'),(1336,'wp-content/plugins/wordpress-seo/js/.jshintrc'),(1337,'wp-content/plugins/wordpress-seo/js/index.php'),(1338,'wp-content/plugins/wordpress-seo/js/jquery.min.js'),(1339,'wp-content/plugins/wordpress-seo/js/jquery.qtip.min.js'),(1340,'wp-content/plugins/wordpress-seo/js/jquery.tablesorter.min.js'),(1341,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.js'),(1342,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.min.js'),(1343,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-gsc.js'),(1344,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-gsc.min.js'),(1345,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-media.js'),(1346,'wp-content/plugins/wordpress-seo/js/wp-seo-admin-media.min.js'),(1347,'wp-content/plugins/wordpress-seo/js/wp-seo-admin.js'),(1348,'wp-content/plugins/wordpress-seo/js/wp-seo-admin.min.js'),(1349,'wp-content/plugins/wordpress-seo/js/wp-seo-bulk-editor.js'),(1350,'wp-content/plugins/wordpress-seo/js/wp-seo-bulk-editor.min.js'),(1351,'wp-content/plugins/wordpress-seo/js/wp-seo-dismissible.js'),(1352,'wp-content/plugins/wordpress-seo/js/wp-seo-dismissible.min.js'),(1353,'wp-content/plugins/wordpress-seo/js/wp-seo-export.js'),(1354,'wp-content/plugins/wordpress-seo/js/wp-seo-export.min.js'),(1355,'wp-content/plugins/wordpress-seo/js/wp-seo-featured-image.js'),(1356,'wp-content/plugins/wordpress-seo/js/wp-seo-featured-image.min.js'),(1357,'wp-content/plugins/wordpress-seo/js/wp-seo-metabox.js'),(1358,'wp-content/plugins/wordpress-seo/js/wp-seo-metabox.min.js'),(1359,'wp-content/plugins/wordpress-seo/languages/index.php'),(1360,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-ar.mo'),(1361,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-bg_BG.mo'),(1362,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-ca.mo'),(1363,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-cs_CZ.mo'),(1364,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-da_DK.mo'),(1365,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-de_DE.mo'),(1366,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-el.mo'),(1367,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-en_AU.mo'),(1368,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-en_GB.mo'),(1369,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-es_ES.mo'),(1370,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-es_MX.mo'),(1371,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-fa_IR.mo'),(1372,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-fi.mo'),(1373,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-fr_FR.mo'),(1374,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-he_IL.mo'),(1375,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-hr.mo'),(1376,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-hu_HU.mo'),(1377,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-id_ID.mo'),(1378,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-it_IT.mo'),(1379,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-ja.mo'),(1380,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-nb_NO.mo'),(1381,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-nl_NL.mo'),(1382,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-pl_PL.mo'),(1383,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-pt_BR.mo'),(1384,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-pt_PT.mo'),(1385,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-ro_RO.mo'),(1386,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-ru_RU.mo'),(1387,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-sk_SK.mo'),(1388,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-sv_SE.mo'),(1389,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-tr_TR.mo'),(1390,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-zh_CN.mo'),(1391,'wp-content/plugins/wordpress-seo/languages/wordpress-seo-zh_TW.mo'),(1392,'wp-content/plugins/wordpress-seo/languages/wordpress-seo.pot'),(1393,'wp-content/plugins/wordpress-seo/license.txt'),(1394,'wp-content/plugins/wordpress-seo/phpcs.xml'),(1395,'wp-content/plugins/wordpress-seo/phpdoc.xml'),(1396,'wp-content/plugins/wordpress-seo/readme.txt'),(1397,'wp-content/plugins/wordpress-seo/vendor/autoload.php'),(1398,'wp-content/plugins/wordpress-seo/vendor/autoload_52.php'),(1399,'wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader.php'),(1400,'wp-content/plugins/wordpress-seo/vendor/composer/ClassLoader52.php'),(1401,'wp-content/plugins/wordpress-seo/vendor/composer/autoload_classmap.php'),(1402,'wp-content/plugins/wordpress-seo/vendor/composer/autoload_namespaces.php'),(1403,'wp-content/plugins/wordpress-seo/vendor/composer/autoload_psr4.php'),(1404,'wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php'),(1405,'wp-content/plugins/wordpress-seo/vendor/composer/autoload_real_52.php'),(1406,'wp-content/plugins/wordpress-seo/vendor/composer/installed.json'),(1407,'wp-content/plugins/wordpress-seo/vendor/composer/installers/.editorconfig'),(1408,'wp-content/plugins/wordpress-seo/vendor/composer/installers/.gitignore'),(1409,'wp-content/plugins/wordpress-seo/vendor/composer/installers/.travis.yml'),(1410,'wp-content/plugins/wordpress-seo/vendor/composer/installers/LICENSE'),(1411,'wp-content/plugins/wordpress-seo/vendor/composer/installers/README.md'),(1412,'wp-content/plugins/wordpress-seo/vendor/composer/installers/composer.json'),(1413,'wp-content/plugins/wordpress-seo/vendor/composer/installers/phpunit.xml.dist'),(1414,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(1415,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(1416,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(1417,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(1418,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(1419,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(1420,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(1421,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(1422,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(1423,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(1424,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(1425,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(1426,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(1427,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(1428,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(1429,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(1430,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(1431,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(1432,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(1433,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(1434,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(1435,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Installer.php'),(1436,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(1437,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(1438,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(1439,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(1440,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(1441,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(1442,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(1443,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(1444,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(1445,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(1446,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(1447,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(1448,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(1449,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(1450,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(1451,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(1452,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(1453,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(1454,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(1455,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(1456,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(1457,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(1458,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(1459,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(1460,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(1461,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(1462,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(1463,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(1464,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(1465,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(1466,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(1467,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(1468,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(1469,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(1470,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(1471,'wp-content/plugins/wordpress-seo/vendor/composer/installers/src/bootstrap.php'),(1472,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/AsgardInstallerTest.php'),(1473,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php'),(1474,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/DokuWikiInstallerTest.php'),(1475,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php'),(1476,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php'),(1477,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php'),(1478,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/OctoberInstallerTest.php'),(1479,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php'),(1480,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php'),(1481,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/Composer/Installers/Test/TestCase.php'),(1482,'wp-content/plugins/wordpress-seo/vendor/composer/installers/tests/bootstrap.php'),(1483,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/.hg_archival.txt'),(1484,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/.hgtags'),(1485,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/LICENSE'),(1486,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/README.md'),(1487,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/composer.json'),(1488,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php'),(1489,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/ClassLoader.php'),(1490,'wp-content/plugins/wordpress-seo/vendor/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php'),(1491,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/README.md'),(1492,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-google-client.php'),(1493,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-google.php'),(1494,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/class-api-libs.php'),(1495,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/composer.json'),(1496,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/Google_Client.php'),(1497,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_AssertionCredentials.php'),(1498,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Auth.php'),(1499,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_AuthNone.php'),(1500,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_LoginTicket.php'),(1501,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_OAuth2.php'),(1502,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_P12Signer.php'),(1503,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_PemVerifier.php'),(1504,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Signer.php'),(1505,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/auth/Google_Verifier.php'),(1506,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/cache/Google_Cache.php'),(1507,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/cache/Google_WPCache.php'),(1508,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/config.php'),(1509,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/external/URITemplateParser.php'),(1510,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_CacheParser.php'),(1511,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_CurlIO.php'),(1512,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_HttpRequest.php'),(1513,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_IO.php'),(1514,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_REST.php'),(1515,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/Google_WPIO.php'),(1516,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/io/cacerts.pem'),(1517,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_BatchRequest.php'),(1518,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_MediaFileUpload.php'),(1519,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Model.php'),(1520,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Service.php'),(1521,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_ServiceResource.php'),(1522,'wp-content/plugins/wordpress-seo/vendor/yoast/api-libs/google/service/Google_Utils.php'),(1523,'wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/LICENSE'),(1524,'wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/README.md'),(1525,'wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/composer.json'),(1526,'wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/i18n-module.php'),(1527,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/.gitigore'),(1528,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/.travis.yml'),(1529,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/README.md'),(1530,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-api-request.php'),(1531,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-license-manager.php'),(1532,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-plugin-license-manager.php'),(1533,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-plugin-update-manager.php'),(1534,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-product.php'),(1535,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-theme-license-manager.php'),(1536,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-theme-update-manager.php'),(1537,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/class-update-manager.php'),(1538,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/composer.json'),(1539,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/index.php'),(1540,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/phpunit.xml'),(1541,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/index.php'),(1542,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-plugin.php'),(1543,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-product.php'),(1544,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/samples/sample-theme-functions.php'),(1545,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/bootstrap.php'),(1546,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/framework/class-yst-license-manager-unit-test-case.php'),(1547,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/index.php'),(1548,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/tests/test-class-yoast-license-manager.php'),(1549,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/form.php'),(1550,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/index.php'),(1551,'wp-content/plugins/wordpress-seo/vendor/yoast/license-manager/views/script.php'),(1552,'wp-content/plugins/wordpress-seo/wp-seo-main.php'),(1553,'wp-content/plugins/wordpress-seo/wp-seo.php'),(1554,'wp-content/plugins/wordpress-seo/wpml-config.xml'),(1555,'wp-content/plugins/wp-force-ssl/index.php'),(1556,'wp-content/plugins/wp-force-ssl/php-backwards-compatibility.php'),(1557,'wp-content/plugins/wp-force-ssl/plugin.php'),(1558,'wp-content/plugins/wp-force-ssl/readme.txt'),(1559,'wp-content/plugins/wp-force-ssl/wp-force-ssl.php'),(1560,'wp-content/themes/chimod/404.php'),(1561,'wp-content/themes/chimod/archive.php'),(1562,'wp-content/themes/chimod/attachment.php'),(1563,'wp-content/themes/chimod/author.php'),(1564,'wp-content/themes/chimod/category.php'),(1565,'wp-content/themes/chimod/comments.php'),(1566,'wp-content/themes/chimod/footer.php'),(1567,'wp-content/themes/chimod/functions.php'),(1568,'wp-content/themes/chimod/header.php'),(1569,'wp-content/themes/chimod/index.php'),(1570,'wp-content/themes/chimod/loop-attachment.php'),(1571,'wp-content/themes/chimod/loop-page.php'),(1572,'wp-content/themes/chimod/loop-single.php'),(1573,'wp-content/themes/chimod/loop.php'),(1574,'wp-content/themes/chimod/page.php'),(1575,'wp-content/themes/chimod/page_bathroom.php'),(1576,'wp-content/themes/chimod/page_decking.php'),(1577,'wp-content/themes/chimod/page_estimate.php'),(1578,'wp-content/themes/chimod/page_home.php'),(1579,'wp-content/themes/chimod/page_kitchen.php'),(1580,'wp-content/themes/chimod/page_roofing.php'),(1581,'wp-content/themes/chimod/page_services.php'),(1582,'wp-content/themes/chimod/page_siding.php'),(1583,'wp-content/themes/chimod/search.php'),(1584,'wp-content/themes/chimod/sidebar-footer.php'),(1585,'wp-content/themes/chimod/sidebar.php'),(1586,'wp-content/themes/chimod/single.php'),(1587,'wp-content/themes/chimod/tag.php'),(1588,'wp-content/themes/index.php'),(1589,'wp-content/themes/twentyeleven/404.php'),(1590,'wp-content/themes/twentyeleven/archive.php'),(1591,'wp-content/themes/twentyeleven/author.php'),(1592,'wp-content/themes/twentyeleven/category.php'),(1593,'wp-content/themes/twentyeleven/colors/dark.css'),(1594,'wp-content/themes/twentyeleven/comments.php'),(1595,'wp-content/themes/twentyeleven/content-aside.php'),(1596,'wp-content/themes/twentyeleven/content-featured.php'),(1597,'wp-content/themes/twentyeleven/content-gallery.php'),(1598,'wp-content/themes/twentyeleven/content-image.php'),(1599,'wp-content/themes/twentyeleven/content-intro.php'),(1600,'wp-content/themes/twentyeleven/content-link.php'),(1601,'wp-content/themes/twentyeleven/content-page.php'),(1602,'wp-content/themes/twentyeleven/content-quote.php'),(1603,'wp-content/themes/twentyeleven/content-single.php'),(1604,'wp-content/themes/twentyeleven/content-status.php'),(1605,'wp-content/themes/twentyeleven/content.php'),(1606,'wp-content/themes/twentyeleven/editor-style-rtl.css'),(1607,'wp-content/themes/twentyeleven/editor-style.css'),(1608,'wp-content/themes/twentyeleven/footer.php'),(1609,'wp-content/themes/twentyeleven/functions.php'),(1610,'wp-content/themes/twentyeleven/header.php'),(1611,'wp-content/themes/twentyeleven/image.php'),(1612,'wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark-rtl.png'),(1613,'wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-dark.png'),(1614,'wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor-rtl.png'),(1615,'wp-content/themes/twentyeleven/images/comment-arrow-bypostauthor.png'),(1616,'wp-content/themes/twentyeleven/images/comment-arrow-dark-rtl.png'),(1617,'wp-content/themes/twentyeleven/images/comment-arrow-dark.png'),(1618,'wp-content/themes/twentyeleven/images/comment-arrow-rtl.png'),(1619,'wp-content/themes/twentyeleven/images/comment-arrow.png'),(1620,'wp-content/themes/twentyeleven/images/comment-bubble-dark-rtl.png'),(1621,'wp-content/themes/twentyeleven/images/comment-bubble-dark.png'),(1622,'wp-content/themes/twentyeleven/images/comment-bubble-rtl.png'),(1623,'wp-content/themes/twentyeleven/images/comment-bubble.png'),(1624,'wp-content/themes/twentyeleven/images/headers/chessboard-thumbnail.jpg'),(1625,'wp-content/themes/twentyeleven/images/headers/chessboard.jpg'),(1626,'wp-content/themes/twentyeleven/images/headers/hanoi-thumbnail.jpg'),(1627,'wp-content/themes/twentyeleven/images/headers/hanoi.jpg'),(1628,'wp-content/themes/twentyeleven/images/headers/lanterns-thumbnail.jpg'),(1629,'wp-content/themes/twentyeleven/images/headers/lanterns.jpg'),(1630,'wp-content/themes/twentyeleven/images/headers/pine-cone-thumbnail.jpg'),(1631,'wp-content/themes/twentyeleven/images/headers/pine-cone.jpg'),(1632,'wp-content/themes/twentyeleven/images/headers/shore-thumbnail.jpg'),(1633,'wp-content/themes/twentyeleven/images/headers/shore.jpg'),(1634,'wp-content/themes/twentyeleven/images/headers/trolley-thumbnail.jpg'),(1635,'wp-content/themes/twentyeleven/images/headers/trolley.jpg'),(1636,'wp-content/themes/twentyeleven/images/headers/wheel-thumbnail.jpg'),(1637,'wp-content/themes/twentyeleven/images/headers/wheel.jpg'),(1638,'wp-content/themes/twentyeleven/images/headers/willow-thumbnail.jpg'),(1639,'wp-content/themes/twentyeleven/images/headers/willow.jpg'),(1640,'wp-content/themes/twentyeleven/images/search.png'),(1641,'wp-content/themes/twentyeleven/images/wordpress.png'),(1642,'wp-content/themes/twentyeleven/inc/images/content-sidebar.png'),(1643,'wp-content/themes/twentyeleven/inc/images/content.png'),(1644,'wp-content/themes/twentyeleven/inc/images/dark.png'),(1645,'wp-content/themes/twentyeleven/inc/images/light.png'),(1646,'wp-content/themes/twentyeleven/inc/images/sidebar-content.png'),(1647,'wp-content/themes/twentyeleven/inc/theme-customizer.js'),(1648,'wp-content/themes/twentyeleven/inc/theme-options.css'),(1649,'wp-content/themes/twentyeleven/inc/theme-options.js'),(1650,'wp-content/themes/twentyeleven/inc/theme-options.php'),(1651,'wp-content/themes/twentyeleven/inc/widgets.php'),(1652,'wp-content/themes/twentyeleven/index.php'),(1653,'wp-content/themes/twentyeleven/js/html5.js'),(1654,'wp-content/themes/twentyeleven/js/showcase.js'),(1655,'wp-content/themes/twentyeleven/languages/twentyeleven.pot'),(1656,'wp-content/themes/twentyeleven/license.txt'),(1657,'wp-content/themes/twentyeleven/page.php'),(1658,'wp-content/themes/twentyeleven/readme.txt'),(1659,'wp-content/themes/twentyeleven/rtl.css'),(1660,'wp-content/themes/twentyeleven/screenshot.png'),(1661,'wp-content/themes/twentyeleven/search.php'),(1662,'wp-content/themes/twentyeleven/searchform.php'),(1663,'wp-content/themes/twentyeleven/showcase.php'),(1664,'wp-content/themes/twentyeleven/sidebar-footer.php'),(1665,'wp-content/themes/twentyeleven/sidebar-page.php'),(1666,'wp-content/themes/twentyeleven/sidebar.php'),(1667,'wp-content/themes/twentyeleven/single.php'),(1668,'wp-content/themes/twentyeleven/style.css'),(1669,'wp-content/themes/twentyeleven/tag.php'),(1670,'wp-content/themes/twentyten/404.php'),(1671,'wp-content/themes/twentyten/archive.php'),(1672,'wp-content/themes/twentyten/attachment.php'),(1673,'wp-content/themes/twentyten/author.php'),(1674,'wp-content/themes/twentyten/category.php'),(1675,'wp-content/themes/twentyten/comments.php'),(1676,'wp-content/themes/twentyten/editor-style-rtl.css'),(1677,'wp-content/themes/twentyten/editor-style.css'),(1678,'wp-content/themes/twentyten/footer.php'),(1679,'wp-content/themes/twentyten/functions.php'),(1680,'wp-content/themes/twentyten/header.php'),(1681,'wp-content/themes/twentyten/images/headers/berries-thumbnail.jpg'),(1682,'wp-content/themes/twentyten/images/headers/berries.jpg'),(1683,'wp-content/themes/twentyten/images/headers/cherryblossoms-thumbnail.jpg'),(1684,'wp-content/themes/twentyten/images/headers/cherryblossoms.jpg'),(1685,'wp-content/themes/twentyten/images/headers/concave-thumbnail.jpg'),(1686,'wp-content/themes/twentyten/images/headers/concave.jpg'),(1687,'wp-content/themes/twentyten/images/headers/fern-thumbnail.jpg'),(1688,'wp-content/themes/twentyten/images/headers/fern.jpg'),(1689,'wp-content/themes/twentyten/images/headers/forestfloor-thumbnail.jpg'),(1690,'wp-content/themes/twentyten/images/headers/forestfloor.jpg'),(1691,'wp-content/themes/twentyten/images/headers/inkwell-thumbnail.jpg'),(1692,'wp-content/themes/twentyten/images/headers/inkwell.jpg'),(1693,'wp-content/themes/twentyten/images/headers/path-thumbnail.jpg'),(1694,'wp-content/themes/twentyten/images/headers/path.jpg'),(1695,'wp-content/themes/twentyten/images/headers/sunset-thumbnail.jpg'),(1696,'wp-content/themes/twentyten/images/headers/sunset.jpg'),(1697,'wp-content/themes/twentyten/images/wordpress.png'),(1698,'wp-content/themes/twentyten/index.php'),(1699,'wp-content/themes/twentyten/languages/twentyten.pot'),(1700,'wp-content/themes/twentyten/license.txt'),(1701,'wp-content/themes/twentyten/loop-attachment.php'),(1702,'wp-content/themes/twentyten/loop-page.php'),(1703,'wp-content/themes/twentyten/loop-single.php'),(1704,'wp-content/themes/twentyten/loop.php'),(1705,'wp-content/themes/twentyten/onecolumn-page.php'),(1706,'wp-content/themes/twentyten/page.php'),(1707,'wp-content/themes/twentyten/rtl.css'),(1708,'wp-content/themes/twentyten/screenshot.png'),(1709,'wp-content/themes/twentyten/search.php'),(1710,'wp-content/themes/twentyten/sidebar-footer.php'),(1711,'wp-content/themes/twentyten/sidebar.php'),(1712,'wp-content/themes/twentyten/single.php'),(1713,'wp-content/themes/twentyten/style.css'),(1714,'wp-content/themes/twentyten/tag.php'),(1715,'wp-content/themes/twentytwelve/404.php'),(1716,'wp-content/themes/twentytwelve/archive.php'),(1717,'wp-content/themes/twentytwelve/author.php'),(1718,'wp-content/themes/twentytwelve/category.php'),(1719,'wp-content/themes/twentytwelve/comments.php'),(1720,'wp-content/themes/twentytwelve/content-aside.php'),(1721,'wp-content/themes/twentytwelve/content-image.php'),(1722,'wp-content/themes/twentytwelve/content-link.php'),(1723,'wp-content/themes/twentytwelve/content-none.php'),(1724,'wp-content/themes/twentytwelve/content-page.php'),(1725,'wp-content/themes/twentytwelve/content-quote.php'),(1726,'wp-content/themes/twentytwelve/content-status.php'),(1727,'wp-content/themes/twentytwelve/content.php'),(1728,'wp-content/themes/twentytwelve/css/ie.css'),(1729,'wp-content/themes/twentytwelve/editor-style-rtl.css'),(1730,'wp-content/themes/twentytwelve/editor-style.css'),(1731,'wp-content/themes/twentytwelve/footer.php'),(1732,'wp-content/themes/twentytwelve/functions.php'),(1733,'wp-content/themes/twentytwelve/header.php'),(1734,'wp-content/themes/twentytwelve/image.php'),(1735,'wp-content/themes/twentytwelve/inc/custom-header.php'),(1736,'wp-content/themes/twentytwelve/index.php'),(1737,'wp-content/themes/twentytwelve/js/html5.js'),(1738,'wp-content/themes/twentytwelve/js/navigation.js'),(1739,'wp-content/themes/twentytwelve/js/theme-customizer.js'),(1740,'wp-content/themes/twentytwelve/languages/twentytwelve.pot'),(1741,'wp-content/themes/twentytwelve/page-templates/front-page.php'),(1742,'wp-content/themes/twentytwelve/page-templates/full-width.php'),(1743,'wp-content/themes/twentytwelve/page.php'),(1744,'wp-content/themes/twentytwelve/rtl.css'),(1745,'wp-content/themes/twentytwelve/screenshot.png'),(1746,'wp-content/themes/twentytwelve/search.php'),(1747,'wp-content/themes/twentytwelve/sidebar-front.php'),(1748,'wp-content/themes/twentytwelve/sidebar.php'),(1749,'wp-content/themes/twentytwelve/single.php'),(1750,'wp-content/themes/twentytwelve/style.css'),(1751,'wp-content/themes/twentytwelve/tag.php'),(1752,'wp-content/wflogs/attack-data.php'),(1753,'wp-content/wflogs/config.php'),(1754,'wp-content/wflogs/ips.php'),(1755,'wp-content/wflogs/rules.php'),(1756,'wp-content/wp-object-cache.php'),(1757,'wp-cron.php'),(1758,'wp-includes/ID3/getid3.lib.php'),(1759,'wp-includes/ID3/getid3.php'),(1760,'wp-includes/ID3/license.commercial.txt'),(1761,'wp-includes/ID3/license.txt'),(1762,'wp-includes/ID3/module.audio-video.asf.php'),(1763,'wp-includes/ID3/module.audio-video.flv.php'),(1764,'wp-includes/ID3/module.audio-video.matroska.php'),(1765,'wp-includes/ID3/module.audio-video.quicktime.php'),(1766,'wp-includes/ID3/module.audio-video.riff.php'),(1767,'wp-includes/ID3/module.audio.ac3.php'),(1768,'wp-includes/ID3/module.audio.dts.php'),(1769,'wp-includes/ID3/module.audio.flac.php'),(1770,'wp-includes/ID3/module.audio.mp3.php'),(1771,'wp-includes/ID3/module.audio.ogg.php'),(1772,'wp-includes/ID3/module.tag.apetag.php'),(1773,'wp-includes/ID3/module.tag.id3v1.php'),(1774,'wp-includes/ID3/module.tag.id3v2.php'),(1775,'wp-includes/ID3/module.tag.lyrics3.php'),(1776,'wp-includes/ID3/plugin.php.suspected'),(1777,'wp-includes/ID3/readme.txt'),(1778,'wp-includes/SimplePie/Author.php'),(1779,'wp-includes/SimplePie/Cache/Base.php'),(1780,'wp-includes/SimplePie/Cache/DB.php'),(1781,'wp-includes/SimplePie/Cache/File.php'),(1782,'wp-includes/SimplePie/Cache/Memcache.php'),(1783,'wp-includes/SimplePie/Cache/MySQL.php'),(1784,'wp-includes/SimplePie/Cache.php'),(1785,'wp-includes/SimplePie/Caption.php'),(1786,'wp-includes/SimplePie/Category.php'),(1787,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(1788,'wp-includes/SimplePie/Content/Type/sql.php.suspected'),(1789,'wp-includes/SimplePie/Copyright.php'),(1790,'wp-includes/SimplePie/Core.php'),(1791,'wp-includes/SimplePie/Credit.php'),(1792,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(1793,'wp-includes/SimplePie/Enclosure.php'),(1794,'wp-includes/SimplePie/Exception.php'),(1795,'wp-includes/SimplePie/File.php'),(1796,'wp-includes/SimplePie/HTTP/Parser.php'),(1797,'wp-includes/SimplePie/IRI.php'),(1798,'wp-includes/SimplePie/Item.php'),(1799,'wp-includes/SimplePie/Locator.php'),(1800,'wp-includes/SimplePie/Misc.php'),(1801,'wp-includes/SimplePie/Net/IPv6.php'),(1802,'wp-includes/SimplePie/Parse/Date.php'),(1803,'wp-includes/SimplePie/Parser.php'),(1804,'wp-includes/SimplePie/Rating.php'),(1805,'wp-includes/SimplePie/Registry.php'),(1806,'wp-includes/SimplePie/Restriction.php'),(1807,'wp-includes/SimplePie/Sanitize.php'),(1808,'wp-includes/SimplePie/Source.php'),(1809,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(1810,'wp-includes/SimplePie/gzdecode.php'),(1811,'wp-includes/Text/Diff/Engine/native.php'),(1812,'wp-includes/Text/Diff/Engine/shell.php'),(1813,'wp-includes/Text/Diff/Engine/string.php'),(1814,'wp-includes/Text/Diff/Engine/xdiff.php'),(1815,'wp-includes/Text/Diff/Renderer/inline.php'),(1816,'wp-includes/Text/Diff/Renderer.php'),(1817,'wp-includes/Text/Diff.php'),(1818,'wp-includes/admin-bar.php'),(1819,'wp-includes/atomlib.php'),(1820,'wp-includes/author-template.php'),(1821,'wp-includes/bookmark-template.php'),(1822,'wp-includes/bookmark.php'),(1823,'wp-includes/cache.php'),(1824,'wp-includes/canonical.php'),(1825,'wp-includes/capabilities.php'),(1826,'wp-includes/category-template.php'),(1827,'wp-includes/category.php'),(1828,'wp-includes/certificates/ca-bundle.crt'),(1829,'wp-includes/class-IXR.php'),(1830,'wp-includes/class-feed.php'),(1831,'wp-includes/class-http.php'),(1832,'wp-includes/class-json.php'),(1833,'wp-includes/class-oembed.php'),(1834,'wp-includes/class-phpass.php'),(1835,'wp-includes/class-phpmailer.php'),(1836,'wp-includes/class-pop3.php'),(1837,'wp-includes/class-simplepie.php'),(1838,'wp-includes/class-smtp.php'),(1839,'wp-includes/class-snoopy.php'),(1840,'wp-includes/class-wp-admin-bar.php'),(1841,'wp-includes/class-wp-ajax-response.php'),(1842,'wp-includes/class-wp-customize-control.php'),(1843,'wp-includes/class-wp-customize-manager.php'),(1844,'wp-includes/class-wp-customize-panel.php'),(1845,'wp-includes/class-wp-customize-section.php'),(1846,'wp-includes/class-wp-customize-setting.php'),(1847,'wp-includes/class-wp-customize-widgets.php'),(1848,'wp-includes/class-wp-editor.php'),(1849,'wp-includes/class-wp-embed.php'),(1850,'wp-includes/class-wp-error.php'),(1851,'wp-includes/class-wp-http-ixr-client.php'),(1852,'wp-includes/class-wp-image-editor-gd.php'),(1853,'wp-includes/class-wp-image-editor-imagick.php'),(1854,'wp-includes/class-wp-image-editor.php'),(1855,'wp-includes/class-wp-theme.php'),(1856,'wp-includes/class-wp-walker.php'),(1857,'wp-includes/class-wp-xmlrpc-server.php'),(1858,'wp-includes/class-wp.php'),(1859,'wp-includes/class.wp-dependencies.php'),(1860,'wp-includes/class.wp-scripts.php'),(1861,'wp-includes/class.wp-styles.php'),(1862,'wp-includes/comment-template.php'),(1863,'wp-includes/comment.php'),(1864,'wp-includes/compat.php'),(1865,'wp-includes/cron.php'),(1866,'wp-includes/css/admin-bar-rtl.css'),(1867,'wp-includes/css/admin-bar-rtl.min.css'),(1868,'wp-includes/css/admin-bar.css'),(1869,'wp-includes/css/admin-bar.min.css'),(1870,'wp-includes/css/buttons-rtl.css'),(1871,'wp-includes/css/buttons-rtl.min.css'),(1872,'wp-includes/css/buttons.css'),(1873,'wp-includes/css/buttons.min.css'),(1874,'wp-includes/css/dashicons.css'),(1875,'wp-includes/css/dashicons.min.css'),(1876,'wp-includes/css/editor-rtl.css'),(1877,'wp-includes/css/editor-rtl.min.css'),(1878,'wp-includes/css/editor.css'),(1879,'wp-includes/css/editor.min.css'),(1880,'wp-includes/css/jquery-ui-dialog-rtl.css'),(1881,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(1882,'wp-includes/css/jquery-ui-dialog.css'),(1883,'wp-includes/css/jquery-ui-dialog.min.css'),(1884,'wp-includes/css/media-views-rtl.css'),(1885,'wp-includes/css/media-views-rtl.min.css'),(1886,'wp-includes/css/media-views.css'),(1887,'wp-includes/css/media-views.min.css'),(1888,'wp-includes/css/wp-auth-check-rtl.css'),(1889,'wp-includes/css/wp-auth-check-rtl.min.css'),(1890,'wp-includes/css/wp-auth-check.css'),(1891,'wp-includes/css/wp-auth-check.min.css'),(1892,'wp-includes/css/wp-pointer-rtl.css'),(1893,'wp-includes/css/wp-pointer-rtl.min.css'),(1894,'wp-includes/css/wp-pointer.css'),(1895,'wp-includes/css/wp-pointer.min.css'),(1896,'wp-includes/date.php'),(1897,'wp-includes/default-constants.php'),(1898,'wp-includes/default-filters.php'),(1899,'wp-includes/default-widgets.php'),(1900,'wp-includes/deprecated.php'),(1901,'wp-includes/feed-atom-comments.php'),(1902,'wp-includes/feed-atom.php'),(1903,'wp-includes/feed-rdf.php'),(1904,'wp-includes/feed-rss.php'),(1905,'wp-includes/feed-rss2-comments.php'),(1906,'wp-includes/feed-rss2.php'),(1907,'wp-includes/feed.php'),(1908,'wp-includes/fonts/dashicons.eot'),(1909,'wp-includes/fonts/dashicons.svg'),(1910,'wp-includes/fonts/dashicons.ttf'),(1911,'wp-includes/fonts/dashicons.woff'),(1912,'wp-includes/formatting.php'),(1913,'wp-includes/functions.php'),(1914,'wp-includes/functions.wp-scripts.php'),(1915,'wp-includes/functions.wp-styles.php'),(1916,'wp-includes/general-template.php'),(1917,'wp-includes/http.php'),(1918,'wp-includes/images/admin-bar-sprite-2x.png'),(1919,'wp-includes/images/admin-bar-sprite.png'),(1920,'wp-includes/images/arrow-pointer-blue-2x.png'),(1921,'wp-includes/images/arrow-pointer-blue.png'),(1922,'wp-includes/images/blank.gif'),(1923,'wp-includes/images/crystal/archive.png'),(1924,'wp-includes/images/crystal/audio.png'),(1925,'wp-includes/images/crystal/code.png'),(1926,'wp-includes/images/crystal/default.png'),(1927,'wp-includes/images/crystal/document.png'),(1928,'wp-includes/images/crystal/interactive.png'),(1929,'wp-includes/images/crystal/license.txt'),(1930,'wp-includes/images/crystal/spreadsheet.png'),(1931,'wp-includes/images/crystal/text.png'),(1932,'wp-includes/images/crystal/video.png'),(1933,'wp-includes/images/down_arrow-2x.gif'),(1934,'wp-includes/images/down_arrow.gif'),(1935,'wp-includes/images/icon-pointer-flag-2x.png'),(1936,'wp-includes/images/icon-pointer-flag.png'),(1937,'wp-includes/images/media/archive.png'),(1938,'wp-includes/images/media/audio.png'),(1939,'wp-includes/images/media/code.png'),(1940,'wp-includes/images/media/default.png'),(1941,'wp-includes/images/media/document.png'),(1942,'wp-includes/images/media/interactive.png'),(1943,'wp-includes/images/media/spreadsheet.png'),(1944,'wp-includes/images/media/text.png'),(1945,'wp-includes/images/media/video.png'),(1946,'wp-includes/images/rss-2x.png'),(1947,'wp-includes/images/rss.png'),(1948,'wp-includes/images/smilies/frownie.png'),(1949,'wp-includes/images/smilies/icon_arrow.gif'),(1950,'wp-includes/images/smilies/icon_biggrin.gif'),(1951,'wp-includes/images/smilies/icon_confused.gif'),(1952,'wp-includes/images/smilies/icon_cool.gif'),(1953,'wp-includes/images/smilies/icon_cry.gif'),(1954,'wp-includes/images/smilies/icon_eek.gif'),(1955,'wp-includes/images/smilies/icon_evil.gif'),(1956,'wp-includes/images/smilies/icon_exclaim.gif'),(1957,'wp-includes/images/smilies/icon_idea.gif'),(1958,'wp-includes/images/smilies/icon_lol.gif'),(1959,'wp-includes/images/smilies/icon_mad.gif'),(1960,'wp-includes/images/smilies/icon_mrgreen.gif'),(1961,'wp-includes/images/smilies/icon_neutral.gif'),(1962,'wp-includes/images/smilies/icon_question.gif'),(1963,'wp-includes/images/smilies/icon_razz.gif'),(1964,'wp-includes/images/smilies/icon_redface.gif'),(1965,'wp-includes/images/smilies/icon_rolleyes.gif'),(1966,'wp-includes/images/smilies/icon_sad.gif'),(1967,'wp-includes/images/smilies/icon_smile.gif'),(1968,'wp-includes/images/smilies/icon_surprised.gif'),(1969,'wp-includes/images/smilies/icon_twisted.gif'),(1970,'wp-includes/images/smilies/icon_wink.gif'),(1971,'wp-includes/images/smilies/mrgreen.png'),(1972,'wp-includes/images/smilies/rolleyes.png'),(1973,'wp-includes/images/smilies/simple-smile.png'),(1974,'wp-includes/images/spinner-2x.gif'),(1975,'wp-includes/images/spinner.gif'),(1976,'wp-includes/images/toggle-arrow-2x.png'),(1977,'wp-includes/images/toggle-arrow.png'),(1978,'wp-includes/images/uploader-icons-2x.png'),(1979,'wp-includes/images/uploader-icons.png'),(1980,'wp-includes/images/wlw/wp-comments.png'),(1981,'wp-includes/images/wlw/wp-icon.png'),(1982,'wp-includes/images/wlw/wp-watermark.png'),(1983,'wp-includes/images/wpicons-2x.png'),(1984,'wp-includes/images/wpicons.png'),(1985,'wp-includes/images/wpspin-2x.gif'),(1986,'wp-includes/images/wpspin.gif'),(1987,'wp-includes/images/xit-2x.gif'),(1988,'wp-includes/images/xit.gif'),(1989,'wp-includes/js/admin-bar.js'),(1990,'wp-includes/js/admin-bar.min.js'),(1991,'wp-includes/js/autosave.js'),(1992,'wp-includes/js/autosave.min.js'),(1993,'wp-includes/js/backbone.min.js'),(1994,'wp-includes/js/colorpicker.js'),(1995,'wp-includes/js/colorpicker.min.js'),(1996,'wp-includes/js/comment-reply.js'),(1997,'wp-includes/js/comment-reply.min.js'),(1998,'wp-includes/js/crop/cropper.css'),(1999,'wp-includes/js/crop/cropper.js'),(2000,'wp-includes/js/crop/marqueeHoriz.gif'),(2001,'wp-includes/js/crop/marqueeVert.gif'),(2002,'wp-includes/js/customize-base.js'),(2003,'wp-includes/js/customize-base.min.js'),(2004,'wp-includes/js/customize-loader.js'),(2005,'wp-includes/js/customize-loader.min.js'),(2006,'wp-includes/js/customize-models.js'),(2007,'wp-includes/js/customize-models.min.js'),(2008,'wp-includes/js/customize-preview-widgets.js'),(2009,'wp-includes/js/customize-preview-widgets.min.js'),(2010,'wp-includes/js/customize-preview.js'),(2011,'wp-includes/js/customize-preview.min.js'),(2012,'wp-includes/js/customize-views.js'),(2013,'wp-includes/js/customize-views.min.js'),(2014,'wp-includes/js/heartbeat.js'),(2015,'wp-includes/js/heartbeat.min.js'),(2016,'wp-includes/js/hoverIntent.js'),(2017,'wp-includes/js/hoverIntent.min.js'),(2018,'wp-includes/js/imgareaselect/border-anim-h.gif'),(2019,'wp-includes/js/imgareaselect/border-anim-v.gif'),(2020,'wp-includes/js/imgareaselect/imgareaselect.css'),(2021,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(2022,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(2023,'wp-includes/js/jcrop/Jcrop.gif'),(2024,'wp-includes/js/jcrop/global.php.suspected'),(2025,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(2026,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(2027,'wp-includes/js/jquery/jquery-migrate.js'),(2028,'wp-includes/js/jquery/jquery-migrate.min.js'),(2029,'wp-includes/js/jquery/jquery.color.min.js'),(2030,'wp-includes/js/jquery/jquery.form.js'),(2031,'wp-includes/js/jquery/jquery.form.min.js'),(2032,'wp-includes/js/jquery/jquery.hotkeys.js'),(2033,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(2034,'wp-includes/js/jquery/jquery.js'),(2035,'wp-includes/js/jquery/jquery.masonry.min.js'),(2036,'wp-includes/js/jquery/jquery.query.js'),(2037,'wp-includes/js/jquery/jquery.schedule.js'),(2038,'wp-includes/js/jquery/jquery.serialize-object.js'),(2039,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(2040,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(2041,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(2042,'wp-includes/js/jquery/suggest.js'),(2043,'wp-includes/js/jquery/suggest.min.js'),(2044,'wp-includes/js/jquery/ui/accordion.min.js'),(2045,'wp-includes/js/jquery/ui/autocomplete.min.js'),(2046,'wp-includes/js/jquery/ui/button.min.js'),(2047,'wp-includes/js/jquery/ui/core.min.js'),(2048,'wp-includes/js/jquery/ui/datepicker.min.js'),(2049,'wp-includes/js/jquery/ui/dialog.min.js'),(2050,'wp-includes/js/jquery/ui/draggable.min.js'),(2051,'wp-includes/js/jquery/ui/droppable.min.js'),(2052,'wp-includes/js/jquery/ui/effect-blind.min.js'),(2053,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(2054,'wp-includes/js/jquery/ui/effect-clip.min.js'),(2055,'wp-includes/js/jquery/ui/effect-drop.min.js'),(2056,'wp-includes/js/jquery/ui/effect-explode.min.js'),(2057,'wp-includes/js/jquery/ui/effect-fade.min.js'),(2058,'wp-includes/js/jquery/ui/effect-fold.min.js'),(2059,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(2060,'wp-includes/js/jquery/ui/effect-puff.min.js'),(2061,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(2062,'wp-includes/js/jquery/ui/effect-scale.min.js'),(2063,'wp-includes/js/jquery/ui/effect-shake.min.js'),(2064,'wp-includes/js/jquery/ui/effect-size.min.js'),(2065,'wp-includes/js/jquery/ui/effect-slide.min.js'),(2066,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(2067,'wp-includes/js/jquery/ui/effect.min.js'),(2068,'wp-includes/js/jquery/ui/menu.min.js'),(2069,'wp-includes/js/jquery/ui/mouse.min.js'),(2070,'wp-includes/js/jquery/ui/position.min.js'),(2071,'wp-includes/js/jquery/ui/progressbar.min.js'),(2072,'wp-includes/js/jquery/ui/resizable.min.js'),(2073,'wp-includes/js/jquery/ui/selectable.min.js'),(2074,'wp-includes/js/jquery/ui/selectmenu.min.js'),(2075,'wp-includes/js/jquery/ui/slider.min.js'),(2076,'wp-includes/js/jquery/ui/sortable.min.js'),(2077,'wp-includes/js/jquery/ui/spinner.min.js'),(2078,'wp-includes/js/jquery/ui/tabs.min.js'),(2079,'wp-includes/js/jquery/ui/tooltip.min.js'),(2080,'wp-includes/js/jquery/ui/widget.min.js'),(2081,'wp-includes/js/json2.js'),(2082,'wp-includes/js/json2.min.js'),(2083,'wp-includes/js/masonry.min.js'),(2084,'wp-includes/js/mce-view.js'),(2085,'wp-includes/js/mce-view.min.js'),(2086,'wp-includes/js/media-audiovideo.js'),(2087,'wp-includes/js/media-audiovideo.min.js'),(2088,'wp-includes/js/media-editor.js'),(2089,'wp-includes/js/media-editor.min.js'),(2090,'wp-includes/js/media-grid.js'),(2091,'wp-includes/js/media-grid.min.js'),(2092,'wp-includes/js/media-models.js'),(2093,'wp-includes/js/media-models.min.js'),(2094,'wp-includes/js/media-views.js'),(2095,'wp-includes/js/media-views.min.js'),(2096,'wp-includes/js/mediaelement/background.png'),(2097,'wp-includes/js/mediaelement/bigplay.png'),(2098,'wp-includes/js/mediaelement/bigplay.svg'),(2099,'wp-includes/js/mediaelement/controls.png'),(2100,'wp-includes/js/mediaelement/controls.svg'),(2101,'wp-includes/js/mediaelement/flashmediaelement.swf'),(2102,'wp-includes/js/mediaelement/froogaloop.min.js'),(2103,'wp-includes/js/mediaelement/loading.gif'),(2104,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(2105,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(2106,'wp-includes/js/mediaelement/silverlightmediaelement.xap'),(2107,'wp-includes/js/mediaelement/skipback.png'),(2108,'wp-includes/js/mediaelement/wp-mediaelement.css'),(2109,'wp-includes/js/mediaelement/wp-mediaelement.js'),(2110,'wp-includes/js/mediaelement/wp-playlist.js'),(2111,'wp-includes/js/plupload/handlers.js'),(2112,'wp-includes/js/plupload/handlers.min.js'),(2113,'wp-includes/js/plupload/license.txt'),(2114,'wp-includes/js/plupload/plupload.flash.swf'),(2115,'wp-includes/js/plupload/plupload.full.min.js'),(2116,'wp-includes/js/plupload/plupload.silverlight.xap'),(2117,'wp-includes/js/plupload/wp-plupload.js'),(2118,'wp-includes/js/plupload/wp-plupload.min.js'),(2119,'wp-includes/js/quicktags.js'),(2120,'wp-includes/js/quicktags.min.js'),(2121,'wp-includes/js/shortcode.js'),(2122,'wp-includes/js/shortcode.min.js'),(2123,'wp-includes/js/swfobject.js'),(2124,'wp-includes/js/swfupload/handlers.js'),(2125,'wp-includes/js/swfupload/handlers.min.js'),(2126,'wp-includes/js/swfupload/license.txt'),(2127,'wp-includes/js/swfupload/plugins/swfupload.cookies.js'),(2128,'wp-includes/js/swfupload/plugins/swfupload.queue.js'),(2129,'wp-includes/js/swfupload/plugins/swfupload.speed.js'),(2130,'wp-includes/js/swfupload/plugins/swfupload.swfobject.js'),(2131,'wp-includes/js/swfupload/swfupload.js'),(2132,'wp-includes/js/swfupload/swfupload.swf'),(2133,'wp-includes/js/thickbox/loadingAnimation.gif'),(2134,'wp-includes/js/thickbox/macFFBgHack.png'),(2135,'wp-includes/js/thickbox/thickbox.css'),(2136,'wp-includes/js/thickbox/thickbox.js'),(2137,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(2138,'wp-includes/js/tinymce/license.txt'),(2139,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(2140,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(2141,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(2142,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(2143,'wp-includes/js/tinymce/plugins/colorpicker/stats.php.suspected'),(2144,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(2145,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(2146,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(2147,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(2148,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(2149,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(2150,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(2151,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(2152,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(2153,'wp-includes/js/tinymce/plugins/image/plugin.js'),(2154,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(2155,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(2156,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(2157,'wp-includes/js/tinymce/plugins/media/moxieplayer.swf'),(2158,'wp-includes/js/tinymce/plugins/media/plugin.js'),(2159,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(2160,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(2161,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(2162,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(2163,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(2164,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(2165,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(2166,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(2167,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(2168,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(2169,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(2170,'wp-includes/js/tinymce/plugins/wpdialogs/ajax.php.suspected'),(2171,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(2172,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(2173,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(2174,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(2175,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(2176,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(2177,'wp-includes/js/tinymce/plugins/wpfullscreen/plugin.js'),(2178,'wp-includes/js/tinymce/plugins/wpfullscreen/plugin.min.js'),(2179,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(2180,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(2181,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(2182,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(2183,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(2184,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(2185,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(2186,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(2187,'wp-includes/js/tinymce/skins/lightgray/fonts/readme.md'),(2188,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(2189,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(2190,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(2191,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(2192,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(2193,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(2194,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(2195,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(2196,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(2197,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(2198,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(2199,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(2200,'wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css'),(2201,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(2202,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(2203,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(2204,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(2205,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(2206,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(2207,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(2208,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(2209,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(2210,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(2211,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(2212,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(2213,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(2214,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(2215,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(2216,'wp-includes/js/tinymce/themes/modern/theme.js'),(2217,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(2218,'wp-includes/js/tinymce/tiny_mce_popup.js'),(2219,'wp-includes/js/tinymce/tinymce.min.js'),(2220,'wp-includes/js/tinymce/utils/editable_selects.js'),(2221,'wp-includes/js/tinymce/utils/form_utils.js'),(2222,'wp-includes/js/tinymce/utils/mctabs.js'),(2223,'wp-includes/js/tinymce/utils/validate.js'),(2224,'wp-includes/js/tinymce/wp-mce-help.php'),(2225,'wp-includes/js/tinymce/wp-tinymce.js.gz'),(2226,'wp-includes/js/tinymce/wp-tinymce.php'),(2227,'wp-includes/js/tw-sack.js'),(2228,'wp-includes/js/tw-sack.min.js'),(2229,'wp-includes/js/twemoji.js'),(2230,'wp-includes/js/twemoji.min.js'),(2231,'wp-includes/js/underscore.min.js'),(2232,'wp-includes/js/utils.js'),(2233,'wp-includes/js/utils.min.js'),(2234,'wp-includes/js/wp-a11y.js'),(2235,'wp-includes/js/wp-a11y.min.js'),(2236,'wp-includes/js/wp-ajax-response.js'),(2237,'wp-includes/js/wp-ajax-response.min.js'),(2238,'wp-includes/js/wp-auth-check.js'),(2239,'wp-includes/js/wp-auth-check.min.js'),(2240,'wp-includes/js/wp-backbone.js'),(2241,'wp-includes/js/wp-backbone.min.js'),(2242,'wp-includes/js/wp-emoji-loader.js'),(2243,'wp-includes/js/wp-emoji-loader.min.js'),(2244,'wp-includes/js/wp-emoji-release.min.js'),(2245,'wp-includes/js/wp-emoji.js'),(2246,'wp-includes/js/wp-emoji.min.js'),(2247,'wp-includes/js/wp-list-revisions.js'),(2248,'wp-includes/js/wp-list-revisions.min.js'),(2249,'wp-includes/js/wp-lists.js'),(2250,'wp-includes/js/wp-lists.min.js'),(2251,'wp-includes/js/wp-pointer.js'),(2252,'wp-includes/js/wp-pointer.min.js'),(2253,'wp-includes/js/wp-util.js'),(2254,'wp-includes/js/wp-util.min.js'),(2255,'wp-includes/js/wpdialog.js'),(2256,'wp-includes/js/wpdialog.min.js'),(2257,'wp-includes/js/wplink.js'),(2258,'wp-includes/js/wplink.min.js'),(2259,'wp-includes/js/zxcvbn-async.js'),(2260,'wp-includes/js/zxcvbn-async.min.js'),(2261,'wp-includes/js/zxcvbn.min.js'),(2262,'wp-includes/kses.php'),(2263,'wp-includes/l10n.php'),(2264,'wp-includes/link-template.php'),(2265,'wp-includes/load.php'),(2266,'wp-includes/locale.php'),(2267,'wp-includes/media-template.php'),(2268,'wp-includes/media.php'),(2269,'wp-includes/meta.php'),(2270,'wp-includes/ms-blogs.php'),(2271,'wp-includes/ms-default-constants.php'),(2272,'wp-includes/ms-default-filters.php'),(2273,'wp-includes/ms-deprecated.php'),(2274,'wp-includes/ms-files.php'),(2275,'wp-includes/ms-functions.php'),(2276,'wp-includes/ms-load.php'),(2277,'wp-includes/ms-settings.php'),(2278,'wp-includes/nav-menu-template.php'),(2279,'wp-includes/nav-menu.php'),(2280,'wp-includes/option.php'),(2281,'wp-includes/pluggable-deprecated.php'),(2282,'wp-includes/pluggable.php'),(2283,'wp-includes/plugin.php'),(2284,'wp-includes/pomo/entry.php'),(2285,'wp-includes/pomo/mo.php'),(2286,'wp-includes/pomo/po.php'),(2287,'wp-includes/pomo/streams.php'),(2288,'wp-includes/pomo/translations.php'),(2289,'wp-includes/post-formats.php'),(2290,'wp-includes/post-template.php'),(2291,'wp-includes/post-thumbnail-template.php'),(2292,'wp-includes/post.php'),(2293,'wp-includes/query.php'),(2294,'wp-includes/registration-functions.php'),(2295,'wp-includes/registration.php'),(2296,'wp-includes/revision.php'),(2297,'wp-includes/rewrite.php'),(2298,'wp-includes/rss-functions.php'),(2299,'wp-includes/rss.php'),(2300,'wp-includes/script-loader.php'),(2301,'wp-includes/session.php'),(2302,'wp-includes/shortcodes.php'),(2303,'wp-includes/taxonomy.php'),(2304,'wp-includes/template-loader.php'),(2305,'wp-includes/template.php'),(2306,'wp-includes/theme-compat/comments-popup.php'),(2307,'wp-includes/theme-compat/comments.php'),(2308,'wp-includes/theme-compat/footer.php'),(2309,'wp-includes/theme-compat/header.php'),(2310,'wp-includes/theme-compat/sidebar.php'),(2311,'wp-includes/theme.php'),(2312,'wp-includes/update.php'),(2313,'wp-includes/user.php'),(2314,'wp-includes/vars.php'),(2315,'wp-includes/version.php'),(2316,'wp-includes/widgets.php'),(2317,'wp-includes/wlwmanifest.xml'),(2318,'wp-includes/wp-db.php'),(2319,'wp-includes/wp-diff.php'),(2320,'wp-links-opml.php'),(2321,'wp-load.php'),(2322,'wp-login.php'),(2323,'wp-mail.php'),(2324,'wp-settings.php'),(2325,'wp-signup.php'),(2326,'wp-trackback.php'),(2327,'xmlrpc.php');
/*!40000 ALTER TABLE `wp_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflivetraffichuman`
--

DROP TABLE IF EXISTS `wp_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflivetraffichuman`
--

LOCK TABLES `wp_wflivetraffichuman` WRITE;
/*!40000 ALTER TABLE `wp_wflivetraffichuman` DISABLE KEYS */;
INSERT INTO `wp_wflivetraffichuman` VALUES (_binary '\0\0\0\0\0\0\0\0\0\0E',_binary '`U\\ܤU 0lw/>\߽\cN9',1595567177),(_binary '&0\n\0L`\nKR',_binary 'zh:\?\n/[{+bťw2cxڲzO',1595602667),(_binary '\0\0\0\0\0\0\0\0\0\0Pv',_binary '\rTG6XWՙ[\\4\08ΘƝK\\n',1595606209),(_binary '\0\0\0\0\0\0\0\0\0\0rw',_binary '֥HWlܕZ[ͿR\1\om\'5\؉',1595607812),(_binary '\0\0\0\0\0\0\0\0\0\0',_binary '\rTG6XWՙ[\\4\08ΘƝK\\n',1595608511),(_binary '&A4\4P\a\\',_binary '\'>X\'\r3\u\uL>9%a\\{r,\@t\Bh',1595625091),(_binary '\0\0\0\0\0\0\0\0\0\0G\j\',_binary 'JT&\\\\\\d\M\D\ۡ\)\\Z}',1595626913),(_binary '$1\"I=\0\\',_binary '\rTG6XWՙ[\\4\08ΘƝK\\n',1595629314),(_binary '&\0B\0\0\0E;',_binary '\9ȶU\Vm*o`[Q;,\\\',1595640528),(_binary '&I0Iнr',_binary 'U\pk@ƅa\'	̴a\\.J',1595641360);
/*!40000 ALTER TABLE `wp_wflivetraffichuman` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflocs`
--

DROP TABLE IF EXISTS `wp_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflocs` (
  `IP` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflocs`
--

LOCK TABLES `wp_wflocs` WRITE;
/*!40000 ALTER TABLE `wp_wflocs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wflocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflogins`
--

DROP TABLE IF EXISTS `wp_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=InnoDB AUTO_INCREMENT=39087 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflogins`
--

LOCK TABLES `wp_wflogins` WRITE;
/*!40000 ALTER TABLE `wp_wflogins` DISABLE KEYS */;
INSERT INTO `wp_wflogins` VALUES (36995,191674,1590412710.798614,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(36996,191677,1590412898.756822,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(36997,191680,1590412903.473060,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ê(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(36998,191684,1590413042.938502,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0٪\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(36999,191749,1590418832.871009,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06%y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37000,191754,1590419881.822526,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(37001,191781,1590422612.279975,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0A\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37002,191821,1590428887.936199,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37003,191866,1590432474.979507,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37004,191985,1590442466.236405,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0R\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37005,192027,1590448702.647827,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37006,192143,1590454507.457796,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02>\\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37007,192194,1590458956.055473,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0E\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37008,192220,1590462762.172191,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0MQxd','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37009,192253,1590469345.700383,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0E\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37010,192357,1590479691.849888,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37011,192467,1590489815.846750,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0yD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37012,192485,1590490999.073592,0,'loginOK','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125'),(37013,192486,1590491353.531346,0,'logout','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125'),(37014,192528,1590493456.412831,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37015,192732,1590513904.703563,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37016,193284,1590562322.874300,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37017,193285,1590562324.144857,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37018,193286,1590562326.819285,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37019,193287,1590562328.263716,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37020,193288,1590562330.277407,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37021,193289,1590562331.948929,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37022,193290,1590562333.380299,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37023,193291,1590562334.624117,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37024,193292,1590562337.350669,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37025,193294,1590562339.839815,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37026,193295,1590562341.351169,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37027,193296,1590562342.757830,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37028,193297,1590562344.405438,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37029,193298,1590562345.825032,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37030,193299,1590562347.444376,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37031,193300,1590562349.275472,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37032,193301,1590562350.709109,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37033,193302,1590562352.964624,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37034,193303,1590562354.795465,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0vY\','python-requests/2.18.4'),(37035,193529,1590568896.953790,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0[\\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(37036,194617,1590643684.451505,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0BF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37037,194629,1590644508.930092,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g3g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37038,194632,1590645279.108777,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37039,194639,1590645458.923677,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\01\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37040,194644,1590646198.603104,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37041,194667,1590647939.153053,1,'loginFailInvalidUsername','[login]',0,_binary ' A\:\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37042,194673,1590648728.015439,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37043,194689,1590649643.179909,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37044,194697,1590650571.771869,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37045,194703,1590651449.225456,1,'loginFailInvalidUsername','[login]',0,_binary '(~\0\\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37046,194724,1590652339.966861,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0hޱ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37047,194732,1590653298.206403,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37048,194741,1590654267.111661,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37049,194772,1590655200.520333,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-zܝ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37050,194778,1590656103.413760,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37051,194788,1590657106.900389,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ν','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37052,194807,1590658072.417913,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37053,194813,1590659057.415558,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37054,194828,1590661093.225453,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37055,194836,1590662027.865941,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0b~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37056,194842,1590663047.792875,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0jD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37057,194847,1590664036.685184,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37058,194853,1590665098.075144,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37059,194860,1590666104.800606,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`<\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37060,194881,1590667165.296409,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03Mm7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37061,194889,1590668227.149639,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37062,194906,1590669324.800950,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37063,194921,1590670403.079153,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37064,194937,1590671478.845305,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/4\*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37065,194947,1590672559.953344,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;9@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37066,194953,1590673657.716235,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37067,194987,1590674720.416055,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\02\c\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37068,194995,1590675903.523314,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0H\=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37069,195003,1590677010.155761,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37070,195018,1590678173.405654,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-\n5=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37071,195063,1590679298.372933,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0H\>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37072,195069,1590679546.613393,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03D\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(37073,195077,1590680497.720810,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37074,195090,1590682824.717886,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\ny','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37075,195102,1590683962.924903,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37076,195207,1590690020.521297,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37077,195385,1590703361.344224,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\u\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37078,195406,1590704161.113876,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37079,195494,1590711191.143238,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37080,195510,1590711993.936918,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37081,195528,1590714131.311588,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37082,196430,1590748992.734767,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37083,196482,1590754212.169718,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37084,196493,1590755322.969984,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37085,196500,1590756453.332242,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37086,196516,1590758042.909683,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37087,196660,1590764592.804168,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37088,196792,1590769322.519455,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rO','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(37089,196848,1590774063.804634,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[yeM','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37090,196951,1590780661.412025,1,'loginFailInvalidUsername','[login]',0,_binary '(\rUH+\0L1;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37091,197079,1590792262.409000,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37092,197470,1590836218.291223,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jK','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37093,197577,1590846277.729549,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ν\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37094,197584,1590847060.252405,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37095,197597,1590847890.296872,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37096,197626,1590849482.749661,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vE\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37097,197659,1590851163.917124,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>\B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37098,197685,1590852064.998015,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0<\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37099,197700,1590852865.928875,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ٶK','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37100,197722,1590853191.713743,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jK','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(37101,197722,1590853191.742957,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jK','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(37102,197787,1590853761.410074,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37103,198121,1590862041.768273,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37104,198140,1590863028.820277,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06Gs\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37105,198149,1590863961.660090,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37106,198155,1590864893.057299,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37107,198173,1590865772.527889,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37108,198198,1590866727.791001,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0DP\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37109,198210,1590867571.813495,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37110,198233,1590868625.401341,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37111,198237,1590869496.739074,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-z\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37112,198242,1590870472.716924,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37113,198267,1590871359.261387,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`<\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37114,198272,1590872338.294104,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37115,198281,1590873261.491411,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\00\0P\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37116,198305,1590874315.125520,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37117,198313,1590875216.164597,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37118,198319,1590876307.718105,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37119,198331,1590877258.646448,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37120,198538,1590890902.532916,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0huF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37121,198562,1590892055.886097,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37122,198579,1590893072.372845,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37123,198605,1590895522.215866,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37124,198626,1590896539.268491,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-z\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37125,198636,1590898543.195306,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37126,198659,1590899547.607893,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03Mn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37127,198669,1590900532.361671,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37128,198688,1590901528.593390,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kGt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37129,198699,1590902439.945170,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37130,198717,1590903479.773408,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37131,198728,1590904396.409159,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0jc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37132,198736,1590905331.358375,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0YV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37133,198756,1590906165.053383,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37134,198774,1590907140.773421,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"@\f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37135,198783,1590908018.664380,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37136,198797,1590908996.569767,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ҌJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37137,198825,1590909956.818441,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37138,198837,1590910913.150416,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37139,198855,1590911874.772011,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\!\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37140,198863,1590912886.508348,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gS$e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37141,198868,1590913859.209796,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ŃB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37142,198873,1590914889.661534,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;n5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37143,198881,1590915878.905630,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37144,198888,1590916967.805804,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zxJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37145,198900,1590917943.150343,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\05\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37146,198918,1590918968.457894,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ȑ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37147,198928,1590919973.595355,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37148,198937,1590921083.909296,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0xO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37149,198951,1590922018.399469,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0PP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37150,198965,1590923110.368980,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Bs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37151,198972,1590924256.669047,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37152,198981,1590925263.195789,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37153,198987,1590926311.954679,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37154,199512,1590949204.203942,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0qW','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37155,199549,1590951477.445739,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37156,199615,1590953829.979460,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@oy\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37157,199661,1590958038.237386,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Gv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37158,199704,1590962305.582312,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-7\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37159,199720,1590964459.182813,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03[{\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37160,199745,1590966697.948239,1,'loginFailInvalidUsername','[login]',0,_binary '&i\0\0\0\0\0\0N*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37161,199765,1590968976.821114,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/K.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37162,204121,1590982659.911450,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37163,204873,1590984302.086654,1,'loginFailValidUsername','admin',1,_binary '*$\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(37164,205233,1590984952.168798,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Hχ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37165,205461,1590985450.814471,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0x4\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(37166,205751,1590986022.909648,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0B)\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37167,206315,1590987054.137397,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37168,206821,1590988049.647368,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37169,207464,1590988996.352747,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37170,208138,1590990011.373435,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37171,208857,1590990928.746952,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37172,209517,1590991823.864812,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37173,210171,1590992672.644400,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37174,210189,1590992699.901492,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37175,210190,1590992700.526151,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37176,210191,1590992701.154743,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37177,210191,1590992701.169392,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37178,210192,1590992701.812590,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37179,210193,1590992702.704515,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37180,210194,1590992703.545766,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37181,210195,1590992703.785983,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37182,210196,1590992704.385864,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37183,210197,1590992705.219329,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37184,210198,1590992705.836696,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37185,210199,1590992707.224367,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37186,210200,1590992707.858074,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37187,210201,1590992709.001555,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37188,210202,1590992709.629254,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37189,210203,1590992711.048802,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37190,210203,1590992711.067328,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37191,210204,1590992712.322445,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37192,210205,1590992713.178936,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\D','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37193,211170,1590993661.425179,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37194,211862,1590994700.089485,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37195,211875,1590995690.038738,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-\n5=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37196,211889,1590996712.832208,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\ə','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37197,211906,1590997647.459189,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37198,211917,1590998684.712930,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03v\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37199,211938,1590999746.536104,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37200,211949,1591000869.426116,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0&(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37201,212008,1591006054.652658,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37202,212015,1591006390.332153,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/cG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37203,212091,1591010890.629063,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37204,212148,1591015737.873821,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37205,212163,1591016997.229169,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03M\>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37206,212182,1591018279.371348,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37207,212252,1591024489.164148,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>\B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37208,212275,1591025634.293910,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\r~7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37209,212392,1591026948.686214,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gʖ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37210,212425,1591028246.008751,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37211,212444,1591029419.588803,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ϔV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37212,212462,1591030633.685785,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37213,212482,1591031786.817325,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37214,212496,1591032896.949477,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\K>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37215,212692,1591039410.990488,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>V\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37216,212692,1591039411.024909,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>V\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37217,212908,1591041884.531199,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\L','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37218,212911,1591041894.059744,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\L','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37219,212914,1591041895.898426,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\L','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37220,212978,1591043041.732666,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Gf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37221,213025,1591045890.978420,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\{e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37222,213084,1591047544.520579,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\)','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37223,213087,1591047548.557776,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\)','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37224,213091,1591047561.228455,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\)','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37225,213111,1591048250.652783,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"D3;','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(37226,213122,1591048860.839569,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37227,213125,1591048872.369222,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vj','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37228,213486,1591066802.242941,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0|X8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37229,213486,1591066802.273690,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0|X8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37230,213749,1591079676.849181,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#̘c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37231,213763,1591080674.783981,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>Pm','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37232,213775,1591081221.611430,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\n','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37233,213783,1591081712.135243,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37234,213795,1591082434.527539,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0BZ','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37235,213798,1591082440.785348,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0BZ','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37236,213801,1591082446.058775,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0BZ','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37237,213810,1591082623.954406,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37238,213829,1591083637.752838,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37239,213854,1591084667.360254,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vF\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37240,213860,1591085061.315636,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\07','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37241,213872,1591085711.516281,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Hχ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37242,213886,1591086659.764591,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37243,213907,1591087740.854511,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gS$e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37244,213929,1591088822.973807,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ŃB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37245,213959,1591089922.851923,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37246,213983,1591091057.691528,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37247,213998,1591092084.488233,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37248,214022,1591093185.685188,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\2`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37249,214051,1591094328.705426,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37250,214106,1591095471.673669,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0s|\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37251,214122,1591096649.896275,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\'\%Q\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37252,214135,1591097799.139509,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37253,214155,1591098992.463651,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37254,214169,1591100234.112781,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\0@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37255,214173,1591100243.295387,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37256,214174,1591100244.659336,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37257,214175,1591100245.888458,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37258,214176,1591100247.165880,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37259,214177,1591100248.470398,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37260,214178,1591100249.736130,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37261,214179,1591100250.923247,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37262,214180,1591100252.110762,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37263,214181,1591100253.313428,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37264,214182,1591100254.471227,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37265,214183,1591100255.663313,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37266,214184,1591100256.897719,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37267,214185,1591100258.106008,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37268,214186,1591100259.319672,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37269,214187,1591100260.495268,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37270,214188,1591100262.039925,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37271,214189,1591100263.289726,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37272,214190,1591100264.564014,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37273,214191,1591100265.973868,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K]','python-requests/2.22.0'),(37274,214703,1591101482.890209,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37275,214722,1591102726.539379,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37276,214727,1591103122.711858,1,'loginFailValidUsername','admin',1,_binary ' \0\0\0\Zf\\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37277,214739,1591103917.454855,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\ [G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37278,214753,1591105205.027090,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37279,214886,1591117163.000679,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37280,214897,1591117206.791411,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37281,214898,1591117207.511995,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37282,214899,1591117208.114203,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37283,214900,1591117208.580183,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37284,214901,1591117209.035699,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37285,214902,1591117209.602889,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37286,214903,1591117210.120740,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37287,214904,1591117210.683499,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37288,214905,1591117211.233902,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37289,214906,1591117211.805119,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37290,214906,1591117211.847927,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37291,214908,1591117212.838857,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37292,214909,1591117213.610018,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37293,214909,1591117213.651339,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37294,214910,1591117214.571894,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37295,214911,1591117215.213725,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37296,214912,1591117215.891514,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37297,214913,1591117216.579452,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37298,214914,1591117217.118403,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\046','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37299,214972,1591120531.205093,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03Oo\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(37300,214975,1591120938.945837,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0uWЎ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(37301,215029,1591124634.157485,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37302,215029,1591124634.184370,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37303,215203,1591132155.554692,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0R\\N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37304,215210,1591132535.361177,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37305,215211,1591132535.888500,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37306,215493,1591138760.078223,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0+','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(37307,215506,1591139805.795491,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vh','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37308,215564,1591143550.426152,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37309,215564,1591143550.481841,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37310,215665,1591150826.186423,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37311,215666,1591150827.486716,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/K.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37312,215821,1591153926.286989,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37313,215822,1591153926.867604,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37314,215856,1591156760.551711,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-\[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37315,215874,1591157704.752684,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;\ny','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37316,215875,1591157706.455804,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\ny','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37317,216017,1591167534.857962,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37318,216018,1591167535.733157,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37319,216108,1591173430.443631,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0gՃ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37320,216147,1591177436.166190,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37321,216148,1591177437.411789,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37322,216209,1591183247.507479,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37323,216210,1591183248.383034,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37324,216266,1591188847.657385,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\n','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37325,216491,1591208985.071519,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37326,216505,1591210129.699441,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0NPD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37327,216505,1591210129.727404,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0NPD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37328,216521,1591211069.105360,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37329,216522,1591211070.116852,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37330,216563,1591214989.893146,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/4\*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37331,216564,1591214991.096063,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/4\*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37332,216650,1591222460.696809,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37333,216903,1591240060.702779,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37334,216904,1591240061.673872,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37335,216970,1591245881.966042,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"D3;','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(37336,217215,1591258391.235519,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0˰R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37337,217216,1591258391.781578,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0˰R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37338,217274,1591261712.653240,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37339,217274,1591261712.694159,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37340,217275,1591261714.063998,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ν#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37341,217531,1591278208.602670,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0_@C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37342,217598,1591283352.386474,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37343,217598,1591283352.425197,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37344,217599,1591283353.237390,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37345,217699,1591290534.546021,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37346,217700,1591290535.434659,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37347,217851,1591302275.701777,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jK','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(37348,218426,1591343992.106719,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37349,218431,1591344896.980095,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\b\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37350,218438,1591345845.962092,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37351,218461,1591346960.369617,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0cN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37352,218521,1591347989.605167,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37353,218537,1591348951.557776,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(u\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37354,218557,1591350042.439134,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37355,218573,1591351113.972473,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37356,218588,1591352226.655154,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_n[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37357,218597,1591353275.204079,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\;{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37358,218616,1591354444.425094,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0w\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37359,218634,1591355610.429639,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37360,218657,1591356685.110218,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\nJ\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37361,218686,1591358952.064775,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ȑ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37362,218705,1591360109.725772,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0l4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37363,218717,1591361332.226515,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0PZRF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37364,218731,1591362474.090450,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37365,218740,1591363632.935934,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37366,218753,1591364839.308715,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Ǟ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37367,218759,1591365959.314996,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37368,218782,1591367224.497634,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37369,218797,1591368526.075137,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gO\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37370,218817,1591369722.742250,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37371,218826,1591371072.991712,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37372,218877,1591372234.493906,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37373,218891,1591373545.535619,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"P\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37374,218910,1591374629.998804,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0s|\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37375,218936,1591375754.895605,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37376,218952,1591376802.600705,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37377,218960,1591377757.355778,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37378,218971,1591378831.941724,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37379,218980,1591379825.447117,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.ep\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37380,218994,1591380796.890483,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37381,219014,1591381940.096216,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37382,219024,1591383074.352470,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\09','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37383,219042,1591383988.029529,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37384,219051,1591384085.894529,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0t\C\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37385,219061,1591384993.446650,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37386,219067,1591385086.742984,1,'loginFailInvalidUsername','chicagolandremodeling123',0,_binary '\0\0\0\0\0\0\0\0\0\03ϱ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37387,219076,1591386136.726529,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37388,219087,1591387249.777175,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e=\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37389,219110,1591388358.802704,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zU','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37390,219142,1591389456.055721,1,'loginFailInvalidUsername','[login]',0,_binary '$\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37391,219148,1591390544.793438,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04_\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37392,219170,1591391637.375892,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37393,219180,1591392845.297707,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0s\'\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37394,219210,1591393899.232321,1,'loginFailInvalidUsername','[login]',0,_binary '*#S\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37395,219223,1591395132.720301,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37396,219229,1591396227.822890,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37397,219239,1591397500.981652,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37398,219257,1591398615.164792,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]|8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37399,219269,1591399858.815476,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/^m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37400,219281,1591401095.870711,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ٶI$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37401,219297,1591402231.894121,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37402,219303,1591402729.235482,1,'loginFailInvalidUsername','[login]',0,_binary ' \G\"\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37403,219307,1591403111.852812,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\\c','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(37404,219307,1591403111.918767,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\\c','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(37405,219325,1591403555.786995,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37406,219353,1591406004.280197,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37407,219452,1591416526.682316,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`\"\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37408,219508,1591426097.454303,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Úp','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(37409,219591,1591436736.347050,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37410,219631,1591440818.497050,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37411,219664,1591442560.812149,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37412,219700,1591444976.301552,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;9@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37413,219710,1591445726.721484,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37414,219714,1591446374.547878,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37415,219719,1591446987.819239,1,'loginFailValidUsername','admin',1,_binary ' A\#\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37416,219725,1591447639.844206,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ܺ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37417,219736,1591448277.603879,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>\p\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37418,219761,1591449046.997762,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0b~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37419,219767,1591449685.577904,1,'loginFailValidUsername','admin',1,_binary '&\0/\0\0\0\0I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37420,219773,1591450306.757858,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03Mn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37421,219799,1591451025.288594,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37422,219806,1591451658.111716,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0*ha\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37423,219825,1591452295.181157,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37424,219835,1591453056.216407,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0BF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37425,219843,1591453671.362906,1,'loginFailValidUsername','Admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-M^,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37426,219852,1591454357.405241,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37427,219862,1591455046.707230,1,'loginFailInvalidUsername','badmin',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37428,219876,1591455729.777841,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/K.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37429,219885,1591456385.055754,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0.;U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37430,219904,1591457125.889222,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\-\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37431,219907,1591457850.774786,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0)\6;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37432,219913,1591458503.440280,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\-\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37433,219917,1591459194.851788,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37434,219921,1591459766.180924,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\*<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37435,219925,1591460486.638970,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Gv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37436,219937,1591461197.565547,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Dy','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37437,219951,1591462379.174423,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37438,219960,1591463042.519606,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37439,219975,1591463824.630582,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;Ro','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37440,219979,1591463838.656099,1,'loginFailInvalidUsername','123chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\/84','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37441,219985,1591464225.560847,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0+g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37442,219991,1591464873.642032,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37443,220009,1591466178.933277,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ŃB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37444,220028,1591466847.647167,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37445,220030,1591467058.885935,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]Y\`','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(37446,220035,1591467477.554068,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37447,220043,1591468107.804964,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Úk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37448,220058,1591468723.147883,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37449,220064,1591469412.422543,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0C\9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37450,220070,1591470131.450062,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;9@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37451,220075,1591470763.362595,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0<\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37452,220082,1591471415.818526,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37453,220091,1591472041.645242,1,'loginFailValidUsername','admin',1,_binary ' \`1]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37454,220096,1591472728.949574,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0t>1`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37455,220099,1591473402.160446,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0C͡;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37456,220122,1591474083.497404,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0(W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37457,220127,1591474732.320772,1,'loginFailValidUsername','Admin',1,_binary '\0\0\0\0\0\0\0\0\0\0b~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37458,220133,1591475407.168386,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37459,220145,1591475666.114035,1,'loginFailInvalidUsername','chicagolandremodeling.net',0,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37460,220147,1591475669.488187,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37461,220149,1591475672.840654,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37462,220151,1591475676.018723,1,'loginFailInvalidUsername','wordpress',0,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37463,220153,1591475679.028235,1,'loginFailInvalidUsername','chicagolandremodeling.net',0,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37464,220155,1591475682.071788,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Vt','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(37465,220160,1591476069.977656,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#hE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37466,220173,1591476738.350535,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03Mn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37467,220191,1591477515.691174,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37468,220202,1591478192.297470,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37469,220219,1591478859.394227,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37470,220242,1591480934.454864,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Dy','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37471,220260,1591481663.252785,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\B4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37472,220282,1591482409.186169,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37473,220292,1591483176.099505,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/cG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37474,220318,1591483826.362749,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37475,220326,1591484547.256832,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37476,220336,1591485310.750829,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0ݰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37477,220344,1591486033.631855,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37478,220352,1591486797.851477,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#hE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37479,220358,1591487527.723216,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\`\0\r\\!6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37480,220379,1591488283.076569,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ϔV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37481,220385,1591488994.540838,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37482,220390,1591489750.148731,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0PӮQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37483,220398,1591490506.152355,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Úk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37484,220407,1591491315.116533,1,'loginFailInvalidUsername','[login]',0,_binary ' \`1]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37485,220422,1591492044.941067,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37486,220428,1591492811.853481,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Bs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37487,220434,1591493605.854708,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0t\rp','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37488,220447,1591494364.943899,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\a4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37489,220457,1591495107.516041,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37490,220464,1591495946.712081,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0:R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37491,220473,1591496771.016625,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37492,220482,1591497499.294531,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%{b\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37493,220490,1591498245.230094,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37494,220497,1591498864.089825,1,'loginFailInvalidUsername','[login]',0,_binary '*\"L\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37495,220649,1591515685.439197,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0$Ha\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(37496,220649,1591515685.466485,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0$Ha\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(37497,220738,1591531476.733548,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\g\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37498,220800,1591537101.475530,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;+K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37499,220804,1591537732.433392,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\iL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37500,220811,1591538374.603868,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#hE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37501,220821,1591539062.462171,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>dc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37502,220825,1591539817.813505,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37503,220833,1591540504.194458,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\"\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37504,220838,1591541269.491831,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37505,220844,1591541891.585586,1,'loginFailInvalidUsername','[login]',0,_binary '&\0?\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37506,220852,1591542610.487260,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37507,220870,1591543339.763131,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37508,221733,1591612955.826313,1,'loginFailInvalidUsername','[login]',0,_binary '&\0[\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37509,221749,1591613900.500625,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37510,221755,1591614842.281196,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0~\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37511,221784,1591617092.318455,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0y(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37512,221795,1591618154.366356,1,'loginFailInvalidUsername','[login]',0,_binary '&\0g\0\0\0\0y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37513,221808,1591618924.371073,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0پ\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37514,221829,1591620378.981911,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37515,221840,1591621514.787517,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\iL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37516,221862,1591622662.973307,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04:\6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37517,222020,1591633905.813587,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0O\'f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37518,222031,1591635027.443768,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gQU','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37519,222065,1591637079.185709,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37520,222074,1591638243.414593,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Gv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37521,222089,1591639123.128740,1,'loginFailInvalidUsername','[login]',0,_binary '&\0w\0\0\0\0\.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37522,222107,1591640368.861307,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37523,222131,1591641516.184088,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.eI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37524,222144,1591642571.242769,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gO\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37525,222168,1591643701.390436,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0uﴼ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37526,222185,1591644816.714415,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`(\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37527,222212,1591646001.159338,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37528,222254,1591647197.174387,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37529,222272,1591648377.264067,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37530,222297,1591649683.584740,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37531,222333,1591652153.047522,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37532,222587,1591670407.635956,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-\n5=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37533,222608,1591671650.050153,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37534,222613,1591672717.476719,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37535,222617,1591672756.674485,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37536,222641,1591675458.838639,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Œ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37537,222659,1591676549.416173,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0,\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37538,222665,1591677687.197779,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{93\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37539,222681,1591678788.401795,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]c8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37540,222686,1591679922.301361,1,'loginFailInvalidUsername','[login]',0,_binary '*8B\06`\\C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37541,222699,1591681055.683436,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\d*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37542,222707,1591682211.674781,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37543,222726,1591683455.671427,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37544,222749,1591684603.688378,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0,\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37545,222768,1591685825.625509,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_n[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37546,222789,1591687032.639737,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0DD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37547,222799,1591688383.645776,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37548,222814,1591689573.476134,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0C͡;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37549,222841,1591690845.416054,1,'loginFailInvalidUsername','[login]',0,_binary '&\0?\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37550,222860,1591692090.300222,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37551,222870,1591693408.912766,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37552,222888,1591694696.858308,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\N]\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37553,222903,1591696042.915079,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/dň','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37554,222924,1591697411.146670,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0b~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37555,222936,1591698763.970962,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e=\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37556,222960,1591701682.076510,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/^m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37557,222973,1591703014.018592,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37558,222993,1591704446.977727,1,'loginFailInvalidUsername','[login]',0,_binary '*@\0\00s\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37559,223031,1591705955.526041,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\*|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37560,223070,1591707435.664283,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37561,223082,1591708877.994829,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37562,223106,1591709417.289660,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0V','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37563,223167,1591710436.198351,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gGd','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37564,223214,1591712009.432579,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;+K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37565,223253,1591713584.738042,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37566,223264,1591714847.068403,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0?:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37567,223272,1591715306.461057,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\a','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37568,223304,1591716967.305281,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37569,223541,1591731164.456048,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0m\Ȫ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37570,223581,1591736331.927142,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Ϛ\g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37571,223590,1591737718.616754,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0rl#','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.58.10) Gecko/20169701 Firefox/52.58.10'),(37572,223594,1591737773.913554,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37573,223608,1591739222.623516,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37574,223633,1591742219.073712,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37575,223665,1591745333.848771,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37576,223699,1591746858.741178,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37577,223734,1591748411.068535,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"U.\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37578,223775,1591750040.447700,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37579,223915,1591759200.934423,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0˰R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37580,223922,1591760005.109335,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37581,223938,1591760724.654436,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37582,223959,1591761553.718664,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37583,223969,1591762263.545012,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37584,223985,1591763850.787345,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37585,223996,1591764669.700841,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37586,224005,1591765478.629756,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03K{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37587,224021,1591766333.788077,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37588,224028,1591767187.016702,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0co','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37589,224049,1591767963.955014,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>{7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37590,224081,1591768861.197180,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37591,224095,1591769695.415633,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-7>c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37592,224116,1591770514.695019,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\*<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37593,224136,1591771400.838496,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Ye\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37594,224151,1591772261.969515,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\/\D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37595,224164,1591773151.855654,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Ϛ\g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37596,224266,1591779409.753167,0,'loginOK','admin',1,_binary '*\?\0\/!\\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37597,224267,1591779464.964505,0,'logout','admin',1,_binary '*\?\0\/!\\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37598,224269,1591779516.050523,0,'loginOK','admin',1,_binary '*\?\0\/!\\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37599,224271,1591779545.425992,0,'logout','admin',1,_binary '*\?\0\/!\\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37600,224304,1591781290.068149,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37601,224336,1591784367.794951,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37602,224352,1591785132.264725,1,'loginFailInvalidUsername','[login]',0,_binary '*@\0\00\\0\0\0\0\0yV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37603,224358,1591785927.248692,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37604,224561,1591798250.764267,1,'loginFailInvalidUsername','[login]',0,_binary '&\06\0\0\0\0ܓ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37605,224587,1591800084.897556,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\\0\0\0\0L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37606,224605,1591801211.582759,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0¶K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37607,224610,1591801880.654541,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]c8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37608,224620,1591802862.286664,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Z	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37609,224829,1591811967.111514,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37610,224836,1591812791.656490,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gؼ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37611,224848,1591812885.190309,0,'loginOK','admin',1,_binary '*\?\0@Y\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37612,224874,1591813004.056497,0,'logout','admin',1,_binary '*\?\0@Y\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15'),(37613,224882,1591813581.537613,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03K\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37614,225022,1591822502.319481,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37615,225100,1591827884.076645,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h|m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37616,225101,1591827886.281214,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h|m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37617,225237,1591835034.696793,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37618,225238,1591835035.252555,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37619,225442,1591851984.224387,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37620,225443,1591851985.742269,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37621,225482,1591855274.040222,1,'loginFailValidUsername','admin',1,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37622,225483,1591855274.877742,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37623,225517,1591858554.793103,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37624,225518,1591858555.894825,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37625,225718,1591870514.297119,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\\','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37626,225722,1591871084.955939,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0huF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37627,225723,1591871085.503302,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0huF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37628,225780,1591879124.236085,1,'loginFailValidUsername','admin',1,_binary '(\n\\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(37629,226141,1591910648.984459,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37630,226203,1591917089.641004,1,'loginFailInvalidUsername','test',0,_binary '(\0\0\\0d\Ze\Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37631,226275,1591922349.346110,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\n','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(37632,226286,1591922999.461120,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0\S\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37633,226347,1591929477.697522,1,'loginFailInvalidUsername','umlawuli',0,_binary '\0\0\0\0\0\0\0\0\0\0ނ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37634,226419,1591936165.155832,1,'loginFailInvalidUsername','motsamaisi',0,_binary '\0\0\0\0\0\0\0\0\0\0;@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37635,226465,1591939566.229895,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0nd','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37636,226468,1591939579.512195,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0nd','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37637,226471,1591939587.045169,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0nd','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37638,226531,1591944376.038027,1,'loginFailInvalidUsername','a',0,_binary '\0\0\0\0\0\0\0\0\0\0\S\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37639,226629,1591952539.831600,1,'loginFailInvalidUsername','1234',0,_binary '\0\0\0\0\0\0\0\0\0\0#\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37640,228410,1591957260.000569,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0>:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37641,229041,1591957743.418671,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37642,229042,1591957744.538851,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37643,229043,1591957745.227793,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37644,229044,1591957745.931212,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37645,229045,1591957746.577197,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37646,229046,1591957747.298666,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37647,229047,1591957748.408641,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37648,229048,1591957749.104069,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37649,229049,1591957749.778823,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37650,229050,1591957750.470266,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37651,229051,1591957751.083541,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37652,229052,1591957751.784375,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37653,229053,1591957752.529851,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37654,229054,1591957753.238494,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37655,229055,1591957753.942804,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37656,229056,1591957754.737586,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37657,229057,1591957755.389272,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37658,229058,1591957756.035104,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37659,229059,1591957756.752020,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\S','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(37660,232543,1591960325.100475,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0D=9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37661,239142,1591968370.952638,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0\a\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37662,239401,1591995435.357058,1,'loginFailValidUsername','admin',1,_binary ' | pȏ\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37663,239906,1592041988.393419,1,'loginFailInvalidUsername','test',0,_binary '*\0\0\\0\0\0\0I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37664,239914,1592042594.257831,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37665,240097,1592060387.015114,1,'loginFailInvalidUsername','chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37666,240100,1592060389.826232,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37667,240103,1592060392.286812,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37668,240106,1592060394.640912,1,'loginFailInvalidUsername','wordpress',0,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37669,240109,1592060397.593525,1,'loginFailInvalidUsername','chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37670,240112,1592060400.751106,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0mx','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36'),(37671,240117,1592060911.549432,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0U','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37672,240120,1592060914.848029,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0U','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37673,240123,1592060918.217338,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37674,240245,1592072183.738743,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\01u','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(37675,240285,1592077816.625506,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37676,240441,1592091912.634051,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0o\H\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37677,240522,1592096372.706597,1,'loginFailInvalidUsername','q',0,_binary '(\rUH+\0p\\\WR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37678,240557,1592103124.756593,1,'loginFailInvalidUsername','1',0,_binary '\0\0\0\0\0\0\0\0\0\0D=9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37679,240652,1592116257.904581,1,'loginFailInvalidUsername','GE',0,_binary '\0\0\0\0\0\0\0\0\0\0T\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37680,240660,1592117351.026155,1,'loginFailInvalidUsername','GE',0,_binary '\0\0\0\0\0\0\0\0\0\0.ښ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37681,240700,1592120267.043076,1,'loginFailInvalidUsername','dm',0,_binary '\0\0\0\0\0\0\0\0\0\0#\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37682,240744,1592124204.534963,1,'loginFailInvalidUsername','apc',0,_binary '\0\0\0\0\0\0\0\0\0\0#\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37683,240765,1592128242.941958,1,'loginFailInvalidUsername','nao',0,_binary '\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37684,240858,1592137065.513592,1,'loginFailInvalidUsername','leo',0,_binary '\0\0\0\0\0\0\0\0\0\0-!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37685,240955,1592141293.580712,1,'loginFailInvalidUsername','root',0,_binary '\0\0\0\0\0\0\0\0\0\0\ڀ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37686,241006,1592143755.978168,1,'loginFailInvalidUsername','nmt',0,_binary '\0\0\0\0\0\0\0\0\0\0D=9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37687,241051,1592148342.364446,1,'loginFailInvalidUsername','demo',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37688,241154,1592156240.245827,1,'loginFailInvalidUsername','root',0,_binary '\0\0\0\0\0\0\0\0\0\0.\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37689,241163,1592159028.349768,1,'loginFailInvalidUsername','ftp',0,_binary '\0\0\0\0\0\0\0\0\0\0\JT	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37690,241346,1592170823.678330,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\JT	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37691,241352,1592171364.422465,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0[\i','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37692,241355,1592171367.434315,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0[\i','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37693,241358,1592171370.487337,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0[\i','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(37694,241388,1592175093.637545,1,'loginFailInvalidUsername','user',0,_binary '\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37695,241593,1592183663.487835,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Yf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37696,241611,1592184709.989693,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/c!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37697,241623,1592185273.521824,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-qyW','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0'),(37698,241662,1592187813.801576,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37699,242028,1592215165.981211,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37700,242029,1592215166.105637,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37701,242030,1592215194.024415,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0Y,\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37702,242031,1592215194.088414,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Y,\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37703,242032,1592215226.657289,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37704,242033,1592215226.795210,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0M.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37705,242034,1592215226.825411,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0M.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37706,242035,1592215227.075041,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37707,242037,1592215243.986232,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0aJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37708,242036,1592215243.980690,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0aJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37709,242038,1592215271.624903,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37710,242039,1592215271.680119,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37711,242040,1592215312.191846,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\\]','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37712,242041,1592215312.742053,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\\]','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37713,242046,1592215429.081260,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37714,242047,1592215429.555907,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37715,242048,1592215479.593672,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\U\'','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37716,242049,1592215480.148953,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\U\'','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37717,242050,1592215513.730141,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0i ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37718,242338,1592246886.077972,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\/J','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'),(37719,242509,1592265370.608524,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37720,242510,1592265371.418902,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37721,242511,1592265371.897538,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37722,242512,1592265372.704512,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37723,242513,1592265373.490825,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37724,242514,1592265374.343654,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37725,242515,1592265374.844324,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37726,242516,1592265375.676677,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37727,242517,1592265376.491913,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37728,242518,1592265377.282657,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37729,242519,1592265378.066497,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37730,242520,1592265378.535435,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37731,242521,1592265379.355391,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37732,242522,1592265380.126233,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37733,242523,1592265380.917217,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37734,242524,1592265381.680872,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37735,242525,1592265382.441141,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37736,242526,1592265383.196763,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37737,242527,1592265383.966858,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>ҍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37738,243161,1592323692.913172,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37739,243162,1592323693.764049,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37740,243163,1592323694.323947,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37741,243164,1592323695.171810,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37742,243165,1592323695.723937,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37743,243166,1592323696.576981,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37744,243167,1592323697.402854,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37745,243168,1592323698.215143,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37746,243169,1592323699.181305,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37747,243170,1592323699.697550,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37748,243171,1592323700.651105,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37749,243172,1592323701.552600,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37750,243173,1592323702.542659,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37751,243174,1592323703.443400,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37752,243175,1592323704.309732,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37753,243176,1592323705.312693,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37754,243177,1592323706.100551,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37755,243178,1592323707.085561,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37756,243179,1592323708.117437,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>Ҵ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37757,244083,1592364476.705930,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37758,244282,1592382041.574122,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0gyV','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37759,244283,1592382041.681948,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0gyV','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37760,244294,1592382156.639186,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37761,244295,1592382156.642226,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37762,244296,1592382156.653960,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\G\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37763,244297,1592382156.657511,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\G\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37764,244298,1592382211.367380,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0S\x','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37765,244299,1592382211.547003,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0S\x','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37766,244300,1592382236.829466,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37767,244301,1592382236.849826,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37768,244302,1592382264.150994,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '&S\0\0`\\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37769,244303,1592382264.534130,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '&S\0\0`\\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37770,244316,1592382464.782781,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '&S\0\0aa\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37771,244317,1592382465.002257,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '&S\0\0aa\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37772,244323,1592382582.529570,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ҫ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37773,244324,1592382582.551739,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ҫ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37774,244331,1592382682.220043,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0o\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37775,244334,1592382682.848065,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0o\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37776,244337,1592382723.220492,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\9r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37777,244338,1592382723.748496,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\9r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37778,244352,1592382957.076811,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0aJ\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37779,244353,1592382957.218900,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0aJ\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(37780,244982,1592438511.302338,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0H=','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(37781,245262,1592462033.716011,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\ڀ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37782,245366,1592473124.572486,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\S\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37783,245443,1592482278.538522,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0xTC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37784,245492,1592491490.574250,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0N(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37785,245775,1592514590.919193,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0f+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37786,245938,1592530170.333525,1,'loginFailInvalidUsername','q',0,_binary '(\rUH+\0MN\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37787,245973,1592535226.425686,1,'loginFailInvalidUsername','a',0,_binary '\0\0\0\0\0\0\0\0\0\0Yf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37788,246079,1592555341.978072,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0hN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37789,246111,1592559736.346719,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0gذv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37790,246176,1592566097.991775,1,'loginFailValidUsername','admin',1,_binary '(\0\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(37791,246523,1592594116.175894,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\00W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37792,246669,1592608682.574398,1,'loginFailInvalidUsername','umlawuli',0,_binary '\0\0\0\0\0\0\0\0\0\0;@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37793,246848,1592626129.716221,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37794,247085,1592653739.345651,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0\ڀ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37795,247124,1592659625.225756,1,'loginFailInvalidUsername','www',0,_binary '&\0\0\0\0\0\0\00','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37796,247140,1592659965.434091,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0x}','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(37797,247215,1592665803.379393,1,'loginFailInvalidUsername','www',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37798,247587,1592691908.295311,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\N','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(37799,248465,1592788862.265080,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ٶI$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37800,248470,1592789096.634373,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0r\R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37801,248473,1592789266.492861,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37802,248476,1592789612.518549,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37803,248479,1592790109.513991,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0)\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37804,248482,1592790389.383078,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37805,248485,1592790660.718619,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@\*|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37806,248490,1592790867.525626,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37807,248495,1592791143.557906,1,'loginFailValidUsername','admin',1,_binary ' A\:\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37808,248498,1592791396.808725,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37809,248501,1592791582.694269,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Q\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37810,248505,1592791828.753755,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37811,248508,1592792041.886750,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0C\9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37812,248511,1592792332.012260,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37813,248514,1592792548.676553,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37814,248517,1592792940.049904,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37815,248522,1592793180.111106,1,'loginFailInvalidUsername','badmin',0,_binary '\0\0\0\0\0\0\0\0\0\0(p@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37816,248525,1592793373.896661,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37817,248530,1592793576.078258,1,'loginFailValidUsername','admin',1,_binary '*\0ր\0 \0P\0\0\0\0\0\0ʹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37818,248533,1592793711.668927,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#3\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37819,248536,1592793910.892925,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\Q!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37820,248539,1592794144.504589,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@\h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37821,248545,1592794345.640793,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0zf\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37822,248550,1592794507.199583,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37823,248553,1592794988.758302,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37824,248556,1592795181.252310,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37825,248582,1592795395.869960,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0PZRF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37826,248597,1592795596.312031,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0HҌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37827,248601,1592795858.793910,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37828,248604,1592796037.041980,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37829,248613,1592796288.972112,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37830,248618,1592796440.641142,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>)l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37831,248622,1592796680.914179,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rF\P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37832,248625,1592796880.950453,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@ʽ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37833,248628,1592797111.146783,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ňH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37834,248631,1592797538.526898,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37835,248637,1592797778.402512,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0A\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37836,248640,1592797983.620322,1,'loginFailValidUsername','admin',1,_binary ' A\\0$\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37837,248648,1592798193.254769,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37838,248659,1592798473.683230,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0{8\Z\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37839,248669,1592798637.141647,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37840,248677,1592798910.878462,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37841,248680,1592798990.753413,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0\\1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37842,248685,1592799225.909966,1,'loginFailValidUsername','admin',1,_binary '&S\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37843,248693,1592799462.881619,1,'loginFailValidUsername','Admin',1,_binary '$\0a\0\0\0\\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37844,248713,1592801008.725528,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37845,248716,1592801189.036684,1,'loginFailInvalidUsername','[login]',0,_binary '$\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37846,248719,1592801410.986729,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37847,248722,1592801662.031832,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37848,248725,1592801848.831933,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-\\	z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37849,248729,1592802111.611979,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37850,248735,1592802311.252999,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37851,248738,1592802531.773084,1,'loginFailInvalidUsername','[login]',0,_binary '&\06\0\0\0\0ܓ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37852,248742,1592802747.350661,1,'loginFailInvalidUsername','[login]',0,_binary ' \,\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37853,248745,1592802978.758570,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37854,248751,1592803226.786313,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0)\6;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37855,248755,1592803407.250055,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0~\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37856,248760,1592803750.123797,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37857,248763,1592803921.848372,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37858,248769,1592804160.890507,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(q|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37859,248773,1592804373.864045,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^ǵ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37860,248776,1592804632.798831,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>!\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37861,248779,1592804818.491158,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37862,248782,1592804985.054528,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0<\bk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37863,248787,1592805231.174915,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0. \Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37864,248795,1592805700.166002,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37865,248801,1592805890.174775,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{8\Z\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37866,248808,1592806038.031984,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0HҌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37867,248813,1592806255.957565,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\\0\0\0\0O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37868,248818,1592806405.600888,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/dp\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37869,248822,1592806555.531931,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37870,248825,1592806893.902042,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37871,248835,1592807132.736312,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37872,248838,1592807723.743482,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37873,248841,1592807975.435392,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37874,248844,1592808029.175813,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Fo','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37875,248853,1592808397.059452,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0+g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37876,248857,1592808789.301594,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37877,248860,1592808983.920631,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J\Q7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37878,248863,1592809117.090351,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37879,248867,1592809368.667502,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37880,248870,1592809591.477329,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37881,248873,1592809824.632128,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37882,248878,1592810054.929519,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37883,248881,1592810222.521852,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ūB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37884,248884,1592810425.865558,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37885,248889,1592810699.285784,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37886,248892,1592810840.629426,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37887,248895,1592810996.407524,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0z\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37888,248900,1592811195.696142,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37889,248904,1592811421.586360,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@ʸ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37890,248907,1592811647.524867,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06d\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37891,248912,1592811890.742634,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Œ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37892,248916,1592812070.435698,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0$k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37893,248919,1592812320.023129,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37894,248922,1592812522.174544,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37895,248927,1592812730.976079,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>dc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37896,248930,1592812982.290722,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37897,248935,1592813216.288222,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06%\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37898,248942,1592813414.062659,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37899,248945,1592813529.468353,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h;K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37900,248948,1592813880.984004,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0YcD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37901,248952,1592814070.969498,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\d*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37902,248957,1592814207.975594,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37903,248960,1592814538.793961,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\&ZO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37904,248965,1592814756.467231,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Z(\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37905,248970,1592814936.523815,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gQU	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37906,248973,1592815105.378290,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37907,248977,1592815414.207553,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ν','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37908,248981,1592815703.152779,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37909,248987,1592815908.608301,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\r~\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37910,248990,1592816098.025778,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@ʽ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37911,248993,1592816317.130740,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37912,248999,1592816495.475962,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37913,249005,1592816761.605041,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/dp\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37914,249008,1592816969.892223,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37915,249011,1592817115.197219,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37916,249017,1592817423.016248,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37917,249028,1592817629.059193,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\lD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37918,249032,1592817893.173648,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0<@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37919,249035,1592818108.720677,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37920,249041,1592818391.672573,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g^\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37921,249044,1592818621.029747,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37922,249048,1592818785.630353,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0H*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37923,249051,1592819060.104747,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37924,249054,1592819497.858310,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-zܝ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37925,249057,1592819726.952489,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/dp\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37926,249060,1592819924.205647,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37927,249063,1592820185.688126,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37928,249071,1592820294.794905,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37929,249074,1592820570.746983,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;(\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37930,249077,1592820745.508962,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\~\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37931,249081,1592820871.234080,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0py','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37932,249084,1592821157.267860,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37933,249090,1592821402.609995,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"I\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37934,249096,1592821596.083336,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37935,249106,1592821667.359811,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37936,249107,1592821668.371305,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37937,249108,1592821669.391603,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37938,249109,1592821670.371845,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37939,249111,1592821671.933891,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37940,249112,1592821672.927907,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37941,249113,1592821673.870439,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37942,249114,1592821674.890007,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37943,249115,1592821675.432833,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37944,249116,1592821676.371252,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37945,249117,1592821677.346395,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37946,249118,1592821678.344181,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37947,249119,1592821679.269637,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37948,249119,1592821679.285715,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37949,249120,1592821680.355902,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37950,249121,1592821681.343957,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37951,249122,1592821682.339212,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37952,249122,1592821682.375524,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37953,249123,1592821683.365853,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(37954,249127,1592821792.006791,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@ʸG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37955,249132,1592821939.714189,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e_A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37956,249140,1592822163.237143,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/dp\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37957,249206,1592829698.084493,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\PR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37958,249209,1592829814.824496,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37959,249212,1592829965.117426,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0%;b','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(37960,249313,1592843344.682578,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0x4N','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(37961,250273,1592928343.028351,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37962,250274,1592928344.387999,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37963,250275,1592928345.689849,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37964,250276,1592928347.704047,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37965,250277,1592928350.550847,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37966,250278,1592928353.101490,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37967,250279,1592928356.463560,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37968,250280,1592928359.463168,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37969,250281,1592928362.042979,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37970,250282,1592928363.373137,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37971,250283,1592928366.139592,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37972,250284,1592928368.603639,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37973,250285,1592928371.327743,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37974,250286,1592928375.213675,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37975,250287,1592928376.519934,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37976,250288,1592928378.221892,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37977,250289,1592928379.426812,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37978,250290,1592928380.593903,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37979,250290,1592928380.609653,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37980,250296,1592928726.803493,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37981,250297,1592928727.952972,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37982,250298,1592928729.151812,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37983,250299,1592928730.097976,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37984,250300,1592928731.407596,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37985,250301,1592928732.177724,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37986,250302,1592928733.422379,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37987,250303,1592928734.391107,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37988,250304,1592928735.205414,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37989,250305,1592928736.304357,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37990,250306,1592928737.116729,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37991,250306,1592928737.142808,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37992,250307,1592928738.019535,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37993,250308,1592928738.882296,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37994,250309,1592928739.727871,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37995,250310,1592928740.805973,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37996,250311,1592928741.694270,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37997,250312,1592928742.522097,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37998,250313,1592928743.288122,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\d','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(37999,250323,1592929530.649217,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38000,250390,1592932981.192273,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0Rft','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38001,250393,1592932985.394149,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0Rft','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38002,250397,1592933010.472891,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Rft','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38003,256999,1592939677.637520,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38004,257000,1592939678.364746,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38005,257001,1592939679.115549,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38006,257002,1592939680.099136,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38007,257003,1592939680.825347,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38008,257004,1592939681.497079,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38009,257005,1592939682.533030,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38010,257006,1592939683.337868,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38011,257007,1592939684.299342,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38012,257008,1592939685.690475,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38013,257009,1592939686.679932,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38014,257010,1592939687.674175,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38015,257011,1592939688.624777,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38016,257012,1592939689.567343,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38017,257013,1592939690.514408,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38018,257014,1592939691.481774,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38019,257015,1592939692.449585,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38020,257016,1592939693.408973,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38021,257017,1592939694.121425,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0o\\#','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38022,261798,1592944277.815877,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0:','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38023,261804,1592944280.571500,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0:','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38024,261809,1592944282.754363,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0:','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38025,263095,1592947197.013520,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\7','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38026,263098,1592947202.286143,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\7','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38027,263101,1592947206.400625,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\7','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38028,263292,1592957935.069685,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38029,263348,1592959613.439468,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38030,263365,1592961126.556242,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38031,263410,1592963200.387647,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0c	,','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(38032,263417,1592964435.664416,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38033,263464,1592967153.986105,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38034,263480,1592969249.788177,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38035,263490,1592970131.243724,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]|\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38036,263513,1592971259.744399,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(38037,263614,1592978726.528135,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%{b\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38038,263623,1592979771.559764,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38039,263627,1592980643.330282,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Yf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38040,263632,1592980776.213199,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\Q!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38041,263640,1592981858.023040,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38042,263658,1592982942.441981,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38043,263673,1592984008.167236,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06\'p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38044,263685,1592985032.720110,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^\	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38045,263701,1592986070.610480,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\N]\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38046,263708,1592987018.248604,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Ňf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38047,263718,1592987967.068368,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0l4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38048,263724,1592988904.860998,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38049,263744,1592990693.576408,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38050,263763,1592991656.253555,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0,R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38051,263770,1592992514.234126,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.eQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38052,263783,1592994493.286477,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0 ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38053,263845,1592999626.297544,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0hs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38054,263898,1593004068.495005,1,'loginFailInvalidUsername','Bennyuttep',0,_binary '\0\0\0\0\0\0\0\0\0\0V','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64'),(38055,263924,1593006266.308522,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\l\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38056,263953,1593008238.940369,1,'loginFailInvalidUsername','[login]',0,_binary '$<\0\"\\ #{\U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38057,263956,1593008380.064588,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\r\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38058,263970,1593009656.715271,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e9\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38059,263988,1593010785.142493,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38060,263995,1593012129.868327,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\\/;\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38061,263998,1593012133.675046,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\\/;\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38062,264001,1593012137.832365,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\/;\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38063,264177,1593022723.877664,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38064,264185,1593023625.829342,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38065,264207,1593024513.921585,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(q|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38066,264259,1593025468.858286,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#̘c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38067,264280,1593026533.048267,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0xVy','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38068,264297,1593027368.506554,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38069,264318,1593028319.564444,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\<\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38070,264324,1593029349.224571,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0\`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38071,264330,1593029917.560978,1,'loginFailInvalidUsername','[login]',0,_binary '(L[\OMP\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38072,264343,1593030322.373448,1,'loginFailInvalidUsername','[login]',0,_binary '&\04\0\0\0\0ʥ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38073,264359,1593031306.391012,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38074,264370,1593032316.869063,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38075,264392,1593033367.817697,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38076,264418,1593034333.150626,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vF\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38077,264435,1593035366.707316,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\~\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38078,264440,1593036436.202803,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38079,264450,1593037538.230507,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0ws\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38080,264467,1593038624.851772,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ˣk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38081,264482,1593039746.843167,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0y(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38082,264502,1593040837.111905,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38083,264507,1593041689.621795,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\ G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38084,264510,1593041987.010793,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38085,264525,1593043067.456946,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38086,264537,1593044220.536464,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38087,264558,1593045363.931302,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0갞','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38088,264567,1593046534.547522,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38089,264582,1593047738.092491,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38090,264600,1593050199.767078,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0|\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38091,264617,1593051367.741512,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/K.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38092,264630,1593052597.595775,1,'loginFailInvalidUsername','[login]',0,_binary '&\0/\0\0\0\0I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38093,264632,1593052598.501226,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38094,264657,1593053859.791303,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ҌJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38095,264666,1593054997.837941,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Go','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38096,264681,1593055996.667794,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{8\Z\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38097,264730,1593063494.289146,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38098,264731,1593063497.925622,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38099,264732,1593063501.175990,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38100,264733,1593063507.110634,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38101,264735,1593063513.601336,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38102,264736,1593063521.676271,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38103,264737,1593063525.497164,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38104,264738,1593063527.064356,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38105,264739,1593063529.725510,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38106,264740,1593063531.310122,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38107,264741,1593063534.180876,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38108,264742,1593063538.032705,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38109,264743,1593063539.826381,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38110,264744,1593063541.445416,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38111,264745,1593063543.434654,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38112,264746,1593063544.934607,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38113,264747,1593063547.582642,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38114,264748,1593063549.201238,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38115,264749,1593063553.479955,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','python-requests/2.23.0'),(38116,265155,1593080370.864855,1,'loginFailInvalidUsername','user',0,_binary '\0\0\0\0\0\0\0\0\0\0Y ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38117,265192,1593082134.258610,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38118,265198,1593082743.451335,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38119,265223,1593083429.035715,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38120,265239,1593084693.415061,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38121,265265,1593085889.864522,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\5\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38122,265272,1593086484.432870,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;U)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38123,265278,1593087113.538371,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38124,265289,1593087854.405696,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0hҖn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38125,265308,1593089563.420040,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0@^','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38126,265312,1593089573.465755,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0@^','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38127,265315,1593089585.850202,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@^','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38128,265338,1593091278.821581,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\b\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38129,265371,1593094116.793607,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c\nr','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38130,265379,1593095055.246999,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0)3J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38131,265385,1593095608.790947,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0k\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38132,265399,1593096337.721376,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38133,265414,1593097176.069012,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38134,265425,1593097845.493791,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38135,265428,1593098008.441906,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ȑ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38136,265443,1593099300.414431,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\6~J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38137,265447,1593099585.271824,1,'loginFailInvalidUsername','test',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38138,265450,1593100092.279410,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\\1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38139,265471,1593100894.823336,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06%\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38140,265487,1593101650.306834,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_n[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38141,265499,1593102531.094069,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38142,265507,1593103261.288974,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-7X','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38143,265513,1593104022.861839,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38144,265516,1593104489.447653,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0Rf','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38145,265519,1593104498.745699,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0Rf','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38146,265522,1593104512.262139,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Rf','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38147,265525,1593104718.963023,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0ʆ\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38148,265530,1593105511.321227,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38149,265534,1593105586.318913,1,'loginFailInvalidUsername','test',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38150,265542,1593106090.557933,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38151,265692,1593114961.706883,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0AU','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38152,265707,1593115564.147721,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03[7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38153,265712,1593115579.566642,1,'loginFailInvalidUsername','motsamaisi',0,_binary '\0\0\0\0\0\0\0\0\0\0hN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38154,265750,1593115973.569055,1,'loginFailValidUsername','admin',1,_binary '$\0a\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38155,265779,1593116695.974079,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38156,265793,1593118609.949694,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(38157,266226,1593157674.476504,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0-\n\J','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38158,266230,1593157796.316664,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ܲ','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38159,266233,1593157912.587669,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\kē','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38160,266877,1593215731.801403,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0lk%','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38161,266880,1593215734.564894,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0lk%','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38162,266883,1593215736.815563,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0lk%','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38163,266984,1593225794.729739,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0^.\rn','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(38164,268684,1593239881.475652,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38165,268686,1593239882.182878,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38166,268687,1593239882.836657,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38167,268688,1593239883.471243,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38168,268689,1593239884.394324,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38169,268690,1593239885.053164,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38170,268691,1593239885.895829,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38171,268692,1593239886.557695,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38172,268693,1593239887.508616,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38173,268694,1593239888.415397,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38174,268695,1593239889.345665,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38175,268696,1593239890.297800,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38176,268697,1593239891.217323,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38177,268698,1593239892.156185,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38178,268699,1593239893.084769,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38179,268700,1593239894.050805,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38180,268701,1593239894.712965,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38181,268702,1593239895.677925,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38182,268703,1593239896.629135,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0w\','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38183,273968,1593294085.223434,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(38184,274174,1593324935.127120,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\\w\\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38185,274177,1593324941.327708,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\\w\\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38186,274180,1593324945.233022,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\w\\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38187,274187,1593325364.358732,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0%Jm','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(38188,274212,1593328697.755662,1,'loginFailInvalidUsername','aerales',0,_binary '\0\0\0\0\0\0\0\0\0\0\rHOv','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0'),(38189,274213,1593328698.423160,1,'loginFailInvalidUsername','aerales',0,_binary '\0\0\0\0\0\0\0\0\0\0\rHOv','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0'),(38190,274616,1593376351.440932,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02?ĺ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38191,275060,1593426817.845414,0,'loginOK','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.173'),(38192,275062,1593427048.107718,0,'logout','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.173'),(38193,275090,1593427923.528195,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\k','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38194,275094,1593427927.120209,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\k','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38195,275099,1593427930.812262,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\k','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38196,275756,1593485473.107048,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0kV','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38197,275757,1593485473.389686,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '&d\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38198,275758,1593485473.396468,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '&d\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38199,275759,1593485473.568895,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0kV','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38200,275773,1593485789.021169,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0#\1\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38201,275774,1593485789.255383,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\1\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38202,275799,1593486240.142138,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0q\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38203,275800,1593486314.059090,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\04\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38204,275801,1593486314.370610,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38205,275802,1593486393.877461,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38206,275803,1593486394.333572,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38207,275806,1593486468.986710,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0jS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38208,275807,1593486469.016936,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0jS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38209,275808,1593486538.402649,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0#\1\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38210,275809,1593486538.491218,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0#\1\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38211,275813,1593486631.034116,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0GlA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38212,275814,1593486631.043716,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0GlA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38213,275815,1593486668.741343,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38214,275816,1593486668.860552,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38215,275820,1593486774.111565,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\|B','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38216,275821,1593486774.116373,1,'loginFailInvalidUsername','info@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\|B','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38217,275822,1593486848.738143,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38218,275823,1593486848.815074,1,'loginFailInvalidUsername','admin@chicagolandremodeling.com',0,_binary '\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38219,276313,1593547972.862124,1,'loginFailValidUsername','admin',1,_binary ' \0\0\0E1f\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'),(38220,276417,1593561430.853293,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38221,276418,1593561431.471915,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38222,276419,1593561432.127780,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38223,276420,1593561432.922847,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38224,276421,1593561434.168515,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38225,276421,1593561434.194325,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38226,276422,1593561435.435750,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38227,276423,1593561436.658511,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38228,276424,1593561437.443782,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38229,276425,1593561438.140419,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38230,276426,1593561439.372116,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38231,276426,1593561439.416373,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38232,276427,1593561440.635149,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38233,276428,1593561441.889709,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38234,276428,1593561441.934420,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38235,276429,1593561443.206564,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38236,276429,1593561443.233766,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38237,276430,1593561444.467647,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38238,276430,1593561444.496102,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38239,276431,1593561445.747151,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0iQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38240,276480,1593565247.140170,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38241,276486,1593565949.793888,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38242,276490,1593566602.124674,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38243,276504,1593567485.158943,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38244,276512,1593568175.255049,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0H\f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38245,276524,1593569778.482932,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38246,276530,1593570630.397669,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38247,276535,1593571331.609957,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0*ha\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38248,276541,1593571939.955475,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0jx','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38249,276549,1593574241.182021,1,'loginFailInvalidUsername','[login]',0,_binary '*r\0\0\0R\\0\r\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38250,276586,1593578989.504123,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>{7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38251,276591,1593579875.284949,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38252,276596,1593580582.371345,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03͠','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38253,276601,1593581371.405553,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38254,276610,1593582147.985187,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;+K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38255,276616,1593582960.253078,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38256,276622,1593583865.583607,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0y(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38257,276633,1593584571.528018,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03Ir','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38258,276636,1593585388.747385,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38259,276658,1593587087.629021,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38260,276666,1593587900.220277,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0AO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38261,276683,1593588749.615252,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38262,276696,1593589551.953124,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03K\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38263,276706,1593590487.712800,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38264,276731,1593592071.321485,1,'loginFailInvalidUsername','[login]',0,_binary '&\0g\0\0\0\0\2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38265,276744,1593592968.499262,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\Z\\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38266,276842,1593600761.998826,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38267,276847,1593601319.132182,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38268,276863,1593602196.909751,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38269,276867,1593602551.790468,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38270,276881,1593603878.520928,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ūB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38271,276887,1593604553.462010,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Dq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38272,276891,1593605163.201269,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38273,276902,1593605798.142420,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38274,276909,1593606568.191002,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38275,276915,1593607079.929586,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\m5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38276,276922,1593607786.051037,1,'loginFailInvalidUsername','[login]',0,_binary ' A\g\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38277,277023,1593608455.066128,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03SL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38278,277443,1593648231.885022,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38279,277459,1593650299.632135,1,'loginFailInvalidUsername','[login]',0,_binary '*w \0\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38280,277478,1593652277.310050,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\H9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38281,277495,1593656309.657609,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0]\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38282,277498,1593656333.539148,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\,',''),(38283,277521,1593659102.176132,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38284,277529,1593660243.470733,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38285,277536,1593661220.384183,1,'loginFailInvalidUsername','[login]',0,_binary '&\06\0\0\0\0ܓ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38286,277546,1593662310.211032,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38287,277556,1593663315.012482,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vb','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(38288,277694,1593671873.178405,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38289,277697,1593673046.503628,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\05\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38290,277721,1593674168.817529,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0BF\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38291,277740,1593675383.374509,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0xO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38292,277748,1593676526.023450,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\m5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38293,277764,1593677734.559856,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#̘c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38294,277784,1593678926.370156,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38295,277786,1593678997.889411,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38296,277812,1593680206.638241,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0&(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38297,277820,1593681425.872040,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Gv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38298,277833,1593682692.762106,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38299,277839,1593683995.879410,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0X`;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38300,277867,1593685333.125124,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38301,277883,1593686695.571761,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38302,277889,1593688004.489600,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@oy\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38303,277916,1593689426.135814,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\0@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38304,277935,1593690801.471880,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.eT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38305,277948,1593692076.566840,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0R\7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38306,277956,1593692958.714497,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-M\}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38307,277965,1593694397.130384,1,'loginFailValidUsername','admin',1,_binary ' A\\0\n	.\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38308,277991,1593696184.971144,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38309,278002,1593697389.179953,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0r\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38310,278029,1593698901.980531,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38311,278035,1593699670.337821,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\01\kg','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(38312,278041,1593700441.704437,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38313,278055,1593702033.422978,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\05\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38314,278073,1593703579.779025,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\*<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38315,278082,1593705183.995881,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38316,278096,1593706829.832104,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Yn-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38317,278100,1593706890.816366,1,'loginFailInvalidUsername','admin8',0,_binary '\0\0\0\0\0\0\0\0\0\0.\m~','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0'),(38318,278437,1593739161.606322,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0D@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38319,278456,1593741640.387598,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38320,278511,1593745793.260618,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38321,278536,1593748095.144957,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0$\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38322,278574,1593753402.040995,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\\w\$','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38323,278577,1593753406.194858,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\\w\$','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38324,278580,1593753409.738846,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\w\$','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38325,278592,1593755303.566932,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38326,278599,1593756103.170248,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38327,278618,1593758632.257757,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0w\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38328,278638,1593761256.749626,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38329,278643,1593762110.231781,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38330,278652,1593764852.716315,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38331,278674,1593766701.614860,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0q6N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38332,278681,1593767688.496946,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0QI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38333,278733,1593776717.435648,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38334,278842,1593794678.755387,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0FYv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38335,278845,1593795897.927171,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0%;b','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38336,278852,1593796959.147318,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38337,278867,1593797862.980064,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38338,278874,1593798785.428212,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38339,278880,1593799571.901013,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#1\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38340,278888,1593801290.934754,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0\\1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38341,278898,1593802114.304603,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0HҌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38342,278901,1593803031.634161,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38343,278910,1593803899.693932,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38344,278917,1593804695.795949,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38345,278921,1593805070.224382,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02>=','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0'),(38346,278924,1593805546.087656,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;U)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38347,278946,1593806548.480085,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0U\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38348,278952,1593807441.890038,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>\Z\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38349,278960,1593808335.716230,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\e\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38350,278981,1593809333.007205,1,'loginFailValidUsername','Admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ϔV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38351,278997,1593811235.519129,1,'loginFailInvalidUsername','badmin',0,_binary '\0\0\0\0\0\0\0\0\0\0vY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38352,279000,1593812205.739248,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0kGt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38353,279013,1593813202.130752,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ѭ\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38354,279017,1593814213.367084,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38355,279023,1593815167.810074,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]IY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38356,279031,1593816213.437228,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38357,279037,1593817187.177047,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]IY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38358,279046,1593818262.249391,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0G+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38359,279057,1593819307.484022,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38360,279072,1593820250.387742,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0\k\A','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38361,279075,1593820253.001615,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0\k\A','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38362,279078,1593820254.793596,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\k\A','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38363,279081,1593820324.899548,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38364,279085,1593821450.568699,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38365,279089,1593822537.379584,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38366,279102,1593823543.121280,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0<\bk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38367,279108,1593824676.162852,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\033\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38368,279137,1593827021.310048,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\$k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38369,279151,1593828097.594822,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0G\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38370,279163,1593829198.077516,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0cZ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38371,279168,1593830220.740797,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02?*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38372,279174,1593831113.298106,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38373,279180,1593832041.756185,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38374,279192,1593832949.007653,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ǟ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38375,279200,1593833671.866873,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38376,279208,1593834562.004540,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0/bՊ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38377,279213,1593835275.973889,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38378,279223,1593836183.651707,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38379,279231,1593836943.008744,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0x\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38380,279243,1593837668.205006,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0.e_A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38381,279255,1593838529.777153,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ed','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38382,279268,1593840118.023502,1,'loginFailValidUsername','Admin',1,_binary '\0\0\0\0\0\0\0\0\0\03M\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38383,279364,1593846879.760705,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ѭG','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(38384,279375,1593848310.388395,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0pN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38385,279511,1593854610.470360,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"E8y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38386,279643,1593863370.755687,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38387,280430,1593915111.066176,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0$ZOR','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38388,280437,1593915546.977601,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0q\\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38389,280438,1593915548.893103,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38390,280537,1593931054.027629,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0t','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38391,280805,1593958051.921304,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38392,280806,1593958052.363296,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38393,280808,1593958053.573515,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38394,280809,1593958054.181804,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38395,280810,1593958054.624930,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38396,280811,1593958055.235346,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38397,280812,1593958055.851926,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38398,280813,1593958056.466109,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38399,280814,1593958057.078409,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38400,280815,1593958057.712110,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38401,280816,1593958058.357889,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38402,280817,1593958058.981879,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38403,280818,1593958059.601363,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38404,280818,1593958059.618679,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38405,280819,1593958060.254126,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38406,280819,1593958060.275197,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38407,280820,1593958060.728582,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38408,280821,1593958061.352012,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38409,280821,1593958061.375812,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\rUT\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38410,281264,1594011244.988694,1,'loginFailInvalidUsername','IZABELA@chicagolandremodeling.net',0,_binary '\0\0\0\0\0\0\0\0\0\0ؗ]','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38411,281267,1594011247.497361,1,'loginFailInvalidUsername','IZABELA',0,_binary '\0\0\0\0\0\0\0\0\0\0ؗ]','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38412,281270,1594011249.785690,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ؗ]','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38413,281329,1594022769.389247,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38414,281333,1594023310.021787,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0AJT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38415,281340,1594023870.000928,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38416,281353,1594024913.968226,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\"\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38417,281361,1594026145.368533,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-zܝ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38418,281365,1594026693.112190,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0m\+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38419,281370,1594027169.741403,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0b~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38420,281374,1594027681.606233,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38421,281387,1594028844.579610,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0˰R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38422,281422,1594032631.358395,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0PӮQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38423,281432,1594033139.184024,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38424,281435,1594033593.977156,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38425,281440,1594034117.859589,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38426,281444,1594034553.542647,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06&6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38427,281456,1594035005.184150,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38428,281467,1594035535.352097,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;n5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38429,281470,1594036031.434456,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0ݰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38430,281473,1594036447.778004,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38431,281477,1594036977.361615,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38432,281481,1594037437.267092,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@Z?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38433,281484,1594037920.171388,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38434,281488,1594038458.222567,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38435,281496,1594038950.418519,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\n1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38436,281499,1594039424.761624,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03D\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38437,281507,1594039972.530579,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\r\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38438,281512,1594040533.460434,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-z\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38439,281542,1594042515.007763,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ˢp','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38440,281559,1594043616.240934,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vF\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38441,281617,1594047439.698608,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0d\Z3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38442,281620,1594048053.808436,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38443,281692,1594054845.818820,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02>Л','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(38444,281830,1594067940.740629,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0g0RN','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38445,281831,1594067941.767305,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0g0RN','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38446,281836,1594068086.539617,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38447,281837,1594068086.944582,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38448,281840,1594068100.540431,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0}\\g','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38449,281841,1594068136.535804,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03&\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38450,281842,1594068136.646176,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\03&\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38451,281843,1594068242.749387,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0ld','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38452,281844,1594068243.222239,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38453,281845,1594068243.333628,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38454,281846,1594068243.671876,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ld','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38455,281851,1594068479.799061,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0ν\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38456,281852,1594068480.282512,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ν\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38457,281858,1594068566.218241,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\iE','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38458,281859,1594068566.540553,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\iE','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38459,281860,1594068596.217973,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38460,281861,1594068596.264130,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38461,281864,1594068676.289277,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\j}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38462,281869,1594068676.777363,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0#\j}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38463,281875,1594068861.631385,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0B\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38464,281876,1594068861.721150,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0B\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38465,281877,1594068861.757323,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0DB\\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38466,281894,1594068949.558380,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0aJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38467,281896,1594068950.605295,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\C\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38468,281904,1594069028.476448,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>\0l','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38469,281905,1594069029.047433,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\]7','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38470,281906,1594069029.142226,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0>\0l','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38471,281909,1594069101.903412,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\06\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38472,281911,1594069166.590354,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\02>з','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38473,281912,1594069190.043577,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38474,282016,1594072863.399328,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(38475,282778,1594153119.310066,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38476,282781,1594153133.207699,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38477,282785,1594153385.613447,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38478,282788,1594153437.221952,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03&\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38479,282791,1594153733.142144,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38480,282794,1594153770.268923,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\nDo\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38481,282799,1594154067.198571,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#ȴ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38482,282813,1594154224.983215,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\a4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38483,282818,1594154399.001200,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0EN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38484,282821,1594154513.963392,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ūB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38485,282824,1594154794.095816,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38486,282827,1594154840.031911,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38487,282830,1594155101.442535,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38488,282833,1594155139.098315,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0o,\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38489,282836,1594155436.245666,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>	z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38490,282840,1594155508.215576,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\n)\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38491,282844,1594155820.426919,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0EO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38492,282847,1594155928.560231,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\'h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38493,282851,1594156211.659868,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38494,282854,1594156218.088607,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38495,282858,1594156494.854400,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Hv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38496,282867,1594156642.552848,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Go','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38497,282879,1594156923.786820,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38498,282882,1594156937.126822,1,'loginFailInvalidUsername','[login]',0,_binary '&\0/\0\0\0\0\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38499,282886,1594157244.993912,1,'loginFailInvalidUsername','[login]',0,_binary ' A\#\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38500,282889,1594157349.570692,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\n\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38501,282892,1594157574.631750,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vE\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38502,282895,1594157659.136630,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0PӮQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38503,282899,1594157904.212447,1,'loginFailInvalidUsername','[login]',0,_binary ' A\3Z\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38504,282902,1594158062.619955,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%\q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38505,282906,1594158339.898324,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38506,282911,1594158360.603115,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38507,282915,1594158658.814043,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38508,282920,1594158748.443761,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0O\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38509,282923,1594158990.051340,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03K\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38510,282926,1594159173.311721,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\05\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38511,282937,1594159370.228825,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0PӮQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38512,282943,1594159436.936245,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38513,282951,1594159807.282215,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38514,282954,1594159837.124714,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38515,282961,1594160177.980937,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0AU','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38516,282965,1594160212.876506,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\n\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38517,282971,1594160541.029462,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38518,282975,1594160836.029578,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38519,282978,1594160938.938843,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38520,282981,1594161191.798768,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0ʹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38521,282984,1594161267.560216,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03SL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38522,282991,1594161565.349841,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38523,282994,1594161619.579129,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\ə','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38524,282998,1594161912.516642,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kGt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38525,283003,1594161994.514384,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0o,\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38526,283007,1594162300.795937,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38527,283010,1594162363.470924,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38528,283014,1594162713.313836,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\0 \0P\0\0\0\0\0\0U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38529,283017,1594162731.902519,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38530,283020,1594163035.056648,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38531,283024,1594163428.613176,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\*|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38532,283027,1594163503.100807,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.e\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38533,283030,1594163597.106126,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38534,283034,1594163815.516573,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.ep\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38535,283037,1594163840.480799,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0EO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38536,283040,1594164180.568168,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]|8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38537,283044,1594164208.403527,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0<@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38538,283052,1594164496.791169,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38539,283055,1594164618.833270,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38540,283059,1594164902.915552,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38541,283062,1594165012.637798,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c{\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38542,283066,1594165252.813881,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38543,283069,1594165356.089048,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0EO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38544,283075,1594165652.203268,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38545,283080,1594165699.073176,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0u\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38546,283095,1594166065.819806,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38547,283098,1594166121.087188,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0PP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38548,283102,1594166394.689847,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0ʆ\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38549,283105,1594166521.061430,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38550,283109,1594166774.600997,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0<\bk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38551,283112,1594166862.708168,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\ə','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38552,283117,1594167149.583909,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\\0\0\0\0O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38553,283121,1594167252.368735,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38554,283127,1594167561.363422,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06&Ԡ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38555,283133,1594167683.191364,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38556,283138,1594167957.610735,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ʻ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38557,283141,1594168215.268920,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38558,283145,1594168515.842558,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38559,283148,1594168555.973452,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@Z?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38560,283155,1594168947.760669,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38561,283158,1594169053.051767,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38562,283161,1594169144.767669,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0B\=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38563,283197,1594169361.625905,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c{\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38564,283207,1594169453.484475,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0c/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38565,283219,1594169594.200439,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0gؼ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38566,283222,1594169681.772376,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38567,283225,1594169883.986551,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38568,283228,1594169913.385778,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0eN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38569,283235,1594170145.521416,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0m\y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38570,283238,1594170200.461159,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\09','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38571,283242,1594170417.028704,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38572,283245,1594170460.733101,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38573,283248,1594170587.449955,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0b\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38574,283251,1594170600.097503,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\n)\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38575,283254,1594170865.658214,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#ȴ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38576,283257,1594170910.463767,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38577,283261,1594171068.745018,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38578,283264,1594171076.428777,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38579,283267,1594171193.049578,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0[\c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38580,283270,1594171274.555498,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38581,283274,1594171477.656979,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38582,283280,1594171565.085597,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Œ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38583,283287,1594171636.232770,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\Z\\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38584,283290,1594171715.142982,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38585,283294,1594171873.056209,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38586,283297,1594171994.588400,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38587,283301,1594172042.374461,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0C\9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38588,283311,1594172190.289670,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38589,283314,1594172251.418317,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38590,283317,1594172330.421392,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38591,283320,1594172480.232991,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38592,283323,1594172500.647473,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38593,283326,1594172657.471768,1,'loginFailInvalidUsername','[login]',0,_binary ' A\:\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38594,283329,1594172689.299868,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]IY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38595,283333,1594172868.473764,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>cg','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38596,283336,1594172879.545820,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38597,283339,1594173088.143862,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\$k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38598,283342,1594173165.515229,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38599,283345,1594173255.271348,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0HҌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38600,283348,1594173269.992326,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\a','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38601,283351,1594173462.500112,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38602,283357,1594173591.967958,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.eT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38603,283359,1594173645.979887,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Y08','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38604,283363,1594173710.696651,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ce\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38605,283367,1594173796.039059,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38606,283370,1594173855.707269,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(q|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38607,283374,1594173985.899081,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03v\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38608,283377,1594174090.581581,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38609,283381,1594174237.350415,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\m6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38610,283384,1594174248.744732,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%;b','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38611,283388,1594174415.322414,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38612,283391,1594174434.815291,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38613,283401,1594174610.261910,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38614,283405,1594174622.601401,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`30\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38615,283413,1594174760.361104,1,'loginFailInvalidUsername','[login]',0,_binary ' A\=J\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38616,283416,1594174831.421340,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38617,283419,1594175061.722470,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-vM','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38618,283422,1594175165.793605,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0P8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38619,283425,1594175377.169629,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38620,283428,1594175421.964832,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-MO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38621,283434,1594175603.028101,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-zܝ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38622,283437,1594175615.684077,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kT\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38623,283440,1594175761.930051,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03M\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38624,283444,1594175840.505968,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38625,283447,1594175946.349741,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\\Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38626,283450,1594175979.296959,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0O}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38627,283454,1594176138.930751,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\e\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38628,283457,1594176176.917031,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/4\*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38629,283460,1594176350.165611,1,'loginFailInvalidUsername','[login]',0,_binary '$\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38630,283463,1594176360.000126,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0 U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38631,283466,1594176534.044495,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38632,283470,1594176593.784131,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38633,283476,1594176733.293260,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38634,283479,1594176738.449208,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38635,283486,1594176933.402762,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0EO','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38636,283490,1594177005.129850,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38637,283494,1594177124.340170,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Kw\\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38638,283499,1594177161.341354,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38639,283509,1594177331.059416,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38640,283512,1594177376.241257,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38641,283517,1594177522.133885,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38642,283520,1594177558.834357,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0QI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38643,283524,1594177746.414033,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38644,283527,1594177773.822971,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\^<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38645,283531,1594178020.520653,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;\"\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38646,283535,1594178150.037110,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38647,283540,1594178187.533163,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Yn-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38648,283548,1594178326.423068,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38649,283555,1594178378.532174,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38650,283561,1594178539.909739,1,'loginFailInvalidUsername','[login]',0,_binary '&S\0\0`(\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38651,283564,1594178600.583780,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38652,283567,1594178765.455449,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Gf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38653,283571,1594178978.961814,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;n5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38654,283574,1594179001.766348,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\$k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38655,283577,1594179129.822348,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J\P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38656,283580,1594179153.050680,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0 7`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38657,283583,1594179321.129679,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0ʆ\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38658,283586,1594179386.795602,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0cz','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38659,283589,1594179521.490619,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0k\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38660,283592,1594179545.766856,1,'loginFailInvalidUsername','[login]',0,_binary '&\0/\0\0\0\0\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38661,283600,1594179760.969754,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38662,283606,1594179815.962594,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38663,283620,1594179928.278428,1,'loginFailInvalidUsername','[login]',0,_binary '&`\0\^\'6R1p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38664,283623,1594179979.431831,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ҌJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38665,283631,1594181390.538710,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Mc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(38666,283673,1594191359.344237,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\ə','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38667,283825,1594195481.220010,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38668,283825,1594195481.255645,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38669,283837,1594196285.336962,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0νL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38670,284146,1594206240.236302,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0DP\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38671,284224,1594210022.957986,1,'loginFailValidUsername','admin',1,_binary ' A\\0H\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38672,284227,1594210056.936817,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\̭','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38673,284237,1594210283.273553,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38674,284240,1594210495.469402,1,'loginFailValidUsername','admin',1,_binary '&\0g\0\0\0\0\2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38675,284243,1594210545.583726,1,'loginFailValidUsername','admin',1,_binary '*w \0\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38676,284246,1594210775.092020,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\^<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38677,284249,1594210788.767347,1,'loginFailValidUsername','admin',1,_binary '&\0/\0\0\0\0\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38678,284252,1594211056.332487,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38679,284255,1594211229.954645,1,'loginFailValidUsername','admin',1,_binary '(^\0\2#}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38680,284258,1594211273.933740,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0\\1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38681,284262,1594211314.273774,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\03[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38682,284265,1594211550.801311,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0H\	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38683,284268,1594211602.340155,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0 ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38684,284271,1594211807.098401,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0kM\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38685,284274,1594211855.258357,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38686,284279,1594212143.259854,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0G\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38687,284282,1594212174.990557,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38688,284285,1594212338.676894,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0,R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38689,284288,1594212611.480643,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ʻ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38690,284292,1594212708.603827,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38691,284302,1594212871.980282,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38692,284308,1594212945.092585,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]Ժ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38693,284314,1594213158.367432,1,'loginFailValidUsername','admin',1,_binary ' A\:\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38694,284317,1594213243.163951,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38695,284320,1594213457.509722,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38696,284324,1594213476.661041,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y{B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38697,284327,1594213683.023556,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0k\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38698,284348,1594218068.650286,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0P3',''),(38699,284614,1594240709.408388,1,'loginFailInvalidUsername','[login]',0,_binary '*\0ր\00\0P\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38700,284637,1594242218.022733,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@om\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38701,284652,1594243834.735213,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0)!=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38702,284693,1594247005.608703,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38703,284745,1594250399.550329,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0|\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38704,284756,1594252134.141003,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g3g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38705,284770,1594253836.297135,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h\t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38706,284787,1594255522.229537,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ˣk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38707,284927,1594265553.791369,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38708,284928,1594265554.311917,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38709,284929,1594265554.862061,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38710,284930,1594265555.380477,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38711,284931,1594265555.883776,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38712,284932,1594265556.438464,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38713,284933,1594265556.995263,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38714,284934,1594265557.471414,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38715,284935,1594265558.097508,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38716,284936,1594265558.569277,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38717,284936,1594265558.624681,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38718,284937,1594265559.379588,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38719,284938,1594265559.924153,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38720,284938,1594265559.951277,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38721,284939,1594265560.462572,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38722,284940,1594265561.098674,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38723,284941,1594265561.956673,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38724,284942,1594265562.492853,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38725,284943,1594265563.060297,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\{}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38726,284973,1594267853.591598,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0-w\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38727,284978,1594268653.201939,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38728,284986,1594269332.965671,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38729,284993,1594270139.151950,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0d\Z3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38730,285000,1594271037.056758,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0{93\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38731,285008,1594271768.534213,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38732,285016,1594272602.159488,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03v\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38733,285022,1594273442.659482,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0㶴','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38734,285032,1594274201.524579,1,'loginFailInvalidUsername','[login]',0,_binary '&\06\0\0\0\0ܓ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38735,285045,1594275066.004783,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38736,285050,1594275966.979827,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0)\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38737,285057,1594276849.313649,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0㶴','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38738,285067,1594277726.355977,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38739,285107,1594278572.232233,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38740,285115,1594279471.269239,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38741,285126,1594280414.961142,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@oy\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38742,285133,1594281282.441792,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0py','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38743,285155,1594285223.293607,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38744,285226,1594294960.585201,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38745,285239,1594296063.441117,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p\H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38746,285250,1594297263.761001,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0Օg','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38747,285255,1594297955.654735,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38748,285261,1594299176.836460,1,'loginFailInvalidUsername','[login]',0,_binary ' A\#\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38749,285266,1594300349.976970,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]?\J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38750,285269,1594301557.436450,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0^|^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38751,285278,1594302831.151784,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38752,285285,1594304088.032774,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38753,285311,1594305372.279740,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0vE\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38754,285323,1594306671.748725,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0>ҹ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38755,285333,1594307942.191507,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ʻ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38756,285342,1594309163.456699,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38757,285356,1594310451.650397,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0]?\J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38758,285372,1594311817.991261,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38759,285388,1594312980.031563,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zf\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38760,285396,1594313974.174993,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38761,285403,1594314872.981001,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38762,285408,1594315704.158887,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38763,285412,1594316542.216535,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0%,\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38764,285429,1594317381.850380,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.eT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38765,285450,1594318144.970913,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0l4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38766,285455,1594318970.461146,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0J\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38767,285465,1594319725.165090,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\06Gs\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38768,285469,1594320596.095027,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0&(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38769,285484,1594321375.843457,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\03&\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38770,285488,1594322202.843474,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38771,285494,1594323035.201705,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0 7`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38772,285501,1594323920.878124,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0νy','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38773,285508,1594324686.625688,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ν\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38774,285511,1594325455.335076,1,'loginFailValidUsername','admin',1,_binary '$	@S7<f\',''),(38775,285514,1594325541.660402,1,'loginFailInvalidUsername','[login]',0,_binary '$\0a\0\0\0\\0\0\0\0ݰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38776,285557,1594326422.410967,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\I\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38777,285561,1594327182.610755,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0py','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38778,285572,1594328197.793210,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38779,285579,1594329017.839431,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38780,285682,1594342885.644210,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38781,285724,1594348645.159751,1,'loginFailInvalidUsername','[login]',0,_binary '&\0\0\\0\0\0\0\0`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38782,285751,1594350185.519904,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0ʆ\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38783,285778,1594351774.215663,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0x4','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(38784,287276,1594400086.007830,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0sT^H','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38785,287279,1594400091.686895,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0sT^H','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38786,287282,1594400109.965264,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0sT^H','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38787,287645,1594434472.179283,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(38788,288887,1594563101.969943,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0\0\00','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38789,288918,1594568563.006935,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0y)','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(38790,290112,1594571716.847511,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38791,290113,1594571718.078101,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38792,290114,1594571718.684323,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38793,290115,1594571719.339665,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38794,290116,1594571719.989793,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38795,290117,1594571720.772283,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38796,290118,1594571721.505109,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38797,290119,1594571722.594302,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38798,290120,1594571723.345185,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38799,290121,1594571724.010237,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38800,290122,1594571724.725866,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38801,290123,1594571725.799358,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38802,290124,1594571726.918311,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38803,290125,1594571727.551850,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38804,290126,1594571728.282756,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38805,290127,1594571729.089249,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38806,290128,1594571730.515270,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38807,290129,1594571731.719362,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38808,290130,1594571732.427108,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0v','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38809,292077,1594573269.295850,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38810,301456,1594581032.995948,1,'loginFailInvalidUsername','[login]',0,_binary ' A\\0\n)\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38811,301483,1594582633.620105,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0(q|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38812,301506,1594583649.029437,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38813,301507,1594583649.357144,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38814,301520,1594584003.130451,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Ҭ|','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38815,301521,1594584003.176240,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ҭ|','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38816,301524,1594584183.280053,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0kT\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38817,301543,1594584479.241907,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0k<','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38818,301553,1594585235.610264,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ŀn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38819,301580,1594587465.150422,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0#\/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38820,301621,1594589915.498792,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38821,301622,1594589916.295783,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38822,301623,1594589917.048620,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38823,301624,1594589917.949399,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38824,301625,1594589919.079143,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38825,301626,1594589919.789734,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38826,301627,1594589920.896663,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38827,301627,1594589920.922787,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38828,301628,1594589922.124183,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38829,301628,1594589922.207846,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38830,301629,1594589923.192172,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38831,301630,1594589924.417414,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38832,301631,1594589925.490945,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38833,301632,1594589926.745882,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38834,301633,1594589928.094101,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38835,301634,1594589928.967735,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38836,301635,1594589929.690459,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38837,301636,1594589930.687670,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38838,301637,1594589931.686815,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\#\','Apache-HttpClient/4.5.2 (Java/1.8.0_161)'),(38839,302512,1594590919.562012,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38840,304073,1594592536.623289,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0G\]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38841,305816,1594594351.179871,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@Z?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38842,307537,1594596164.910960,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0ʻ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38843,309887,1594600301.543576,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/c!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38844,309929,1594605724.322699,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0H\	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38845,310048,1594611899.769563,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\"L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38846,310065,1594613266.864955,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38847,310071,1594614599.530259,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38848,310091,1594616520.838088,1,'loginFailValidUsername','admin',1,_binary ' \`1]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38849,310113,1594618102.713551,1,'loginFailValidUsername','admin',1,_binary '&S\0\0a\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38850,310130,1594619490.344453,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38851,310138,1594620981.537405,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38852,310164,1594622415.881344,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38853,310170,1594623770.526258,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38854,310183,1594625143.052917,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38855,310198,1594626532.834224,1,'loginFailValidUsername','admin',1,_binary ' A\:\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38856,310222,1594627976.657788,1,'loginFailValidUsername','admin',1,_binary ' A\v\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38857,310244,1594629447.535875,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;;K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38858,310262,1594630768.702694,1,'loginFailValidUsername','admin',1,_binary '&\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38859,32,1594637691.103694,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0n%U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38860,88,1594642709.302023,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/KS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38861,143,1594649175.424980,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vm.',''),(38862,380,1594670414.628451,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\\H`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38863,381,1594670417.663382,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0!B','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38864,384,1594670421.477754,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0!B','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38865,387,1594670425.078081,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0!B','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38866,469,1594676779.757335,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0{ş','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38867,473,1594676851.110103,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0M\TP','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38868,562,1594686062.528324,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0/KS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38869,629,1594691118.808686,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38870,651,1594693588.905598,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'),(38871,711,1594697817.246161,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0;@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38872,786,1594705619.039041,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Γ',''),(38873,803,1594707374.326965,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38874,830,1594710090.033775,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0.es','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38875,872,1594714267.779714,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38876,873,1594714268.534252,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38877,929,1594719852.857789,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0Qz\Z','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38878,1173,1594740417.375785,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(38879,1491,1594757146.361070,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0n\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38880,1549,1594764224.440465,1,'loginFailInvalidUsername','cblankenbaker@yahoo.com',0,_binary '\0\0\0\0\0\0\0\0\0\0͹\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38881,1552,1594764227.244359,1,'loginFailInvalidUsername','cblankenbaker',0,_binary '\0\0\0\0\0\0\0\0\0\0͹\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38882,1555,1594764233.842270,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0͹\','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10'),(38883,1650,1594776373.761420,1,'loginFailInvalidUsername','demo',0,_binary '\0\0\0\0\0\0\0\0\0\0/c1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38884,1713,1594780930.617960,1,'loginFailInvalidUsername','demo',0,_binary '\0\0\0\0\0\0\0\0\0\0}e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38885,1810,1594793390.325334,1,'loginFailInvalidUsername','test',0,_binary '\0\0\0\0\0\0\0\0\0\0N(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38886,2006,1594808644.795400,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38887,2038,1594813317.967043,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38888,2039,1594813318.486684,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38889,2040,1594813318.911939,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38890,2041,1594813319.435719,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38891,2042,1594813319.951035,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38892,2043,1594813320.467499,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38893,2044,1594813320.985575,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38894,2045,1594813321.547766,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38895,2046,1594813322.066020,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38896,2047,1594813322.604385,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38897,2048,1594813323.072063,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38898,2048,1594813323.097330,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38899,2049,1594813323.636465,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38900,2050,1594813324.060447,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38901,2051,1594813324.666599,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38902,2052,1594813325.362870,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38903,2053,1594813326.009792,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38904,2054,1594813326.475830,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38905,2055,1594813326.974460,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04s\','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(38906,2060,1594813349.437798,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0\0\:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38907,2070,1594815475.595767,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38908,2098,1594819662.018726,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\T','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38909,2107,1594820375.054646,1,'loginFailInvalidUsername','[login]',0,_binary '*\0\0\\0\0\0\03p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38910,2162,1594827269.118537,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38911,2163,1594827270.372597,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38912,2164,1594827272.438077,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38913,2164,1594827272.475535,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38914,2165,1594827274.665270,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38915,2166,1594827275.864211,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38916,2167,1594827277.938613,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38917,2168,1594827280.276965,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38918,2169,1594827287.478243,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38919,2170,1594827296.301667,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38920,2171,1594827302.590573,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38921,2172,1594827305.221202,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38922,2173,1594827307.478478,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38923,2173,1594827307.795394,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38924,2174,1594827309.212347,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38925,2175,1594827311.108332,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38926,2176,1594827312.699360,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38927,2177,1594827314.070427,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38928,2177,1594827314.100477,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38929,2179,1594827349.190283,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38930,2179,1594827349.379665,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38931,2180,1594827351.759156,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38932,2181,1594827353.819361,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38933,2181,1594827353.879660,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38934,2182,1594827355.800644,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38935,2183,1594827357.425816,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38936,2184,1594827360.930226,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38937,2184,1594827360.962968,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38938,2185,1594827387.937489,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38939,2186,1594827391.911739,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38940,2186,1594827392.348960,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38941,2187,1594827395.217276,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38942,2188,1594827397.524529,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38943,2189,1594827400.169734,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38944,2190,1594827402.633669,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38945,2191,1594827404.695192,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38946,2191,1594827404.723871,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38947,2192,1594827406.223016,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0Tn','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0'),(38948,2232,1594830941.362379,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0zt\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38949,2454,1594846872.895329,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38950,2454,1594846872.938439,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38951,2455,1594846873.614953,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\04\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38952,2725,1594883103.278454,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@\{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38953,2726,1594883103.841681,1,'loginFailInvalidUsername','[login]',0,_binary '\0\0\0\0\0\0\0\0\0\0@\{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38954,2848,1594893844.892910,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vg','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(38955,3762,1594915654.145289,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"A','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(38956,3829,1594920731.217834,1,'loginFailInvalidUsername','patricia',0,_binary '&\0\0\0\0\0\0a\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38957,4207,1594956944.841530,1,'loginFailInvalidUsername','testuser',0,_binary '\0\0\0\0\0\0\0\0\0\0-u[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(38958,4541,1594983119.812176,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0c$','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(38959,4690,1594993357.071770,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0$L','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(38960,6017,1595126191.317144,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vn','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(38961,6478,1595194957.601439,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Tg','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38962,6959,1595248310.078126,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0$ZL','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(38963,14418,1595301690.445378,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38964,14419,1595301691.580987,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38965,14420,1595301692.584598,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38966,14421,1595301694.380322,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38967,14422,1595301695.650593,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38968,14423,1595301696.765304,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38969,14424,1595301698.329493,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38970,14425,1595301700.154921,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38971,14426,1595301701.721698,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38972,14427,1595301702.667944,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38973,14428,1595301704.249922,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38974,14429,1595301705.102401,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38975,14430,1595301706.248951,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38976,14431,1595301707.245706,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38977,14431,1595301707.419747,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38978,14432,1595301709.070952,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38979,14433,1595301710.357915,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38980,14434,1595301711.528349,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38981,14435,1595301713.112453,1,'loginFailInvalidUsername','1.0',0,_binary '\0\0\0\0\0\0\0\0\0\0\*','Apache-HttpClient/4.5.2 (Java/1.8.0_151)'),(38982,16247,1595303617.119840,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ҭ|','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38983,16248,1595303617.217662,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ҭ|','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38984,16375,1595303764.983013,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0gٴ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38985,16374,1595303764.983002,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0gٴ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38986,16535,1595303970.536961,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0k{','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38987,16536,1595303970.560945,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0k{','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38988,16605,1595304059.208303,1,'loginFailInvalidUsername','chicagolandremodeling',0,_binary '\0\0\0\0\0\0\0\0\0\0\G\#','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38989,16606,1595304059.369150,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\G\#','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(38990,20032,1595318742.858440,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02\','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(38991,20081,1595325585.966014,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jK\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(38992,20474,1595359687.262167,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\GQ','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(38993,20538,1595368468.049745,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Vo','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(38994,21933,1595497974.200282,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(38995,22024,1595503461.614857,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(38996,22025,1595503462.256133,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(38997,22026,1595503462.777730,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(38998,22027,1595503463.376766,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(38999,22028,1595503464.070261,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39000,22029,1595503465.377358,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39001,22030,1595503465.983370,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39002,22031,1595503466.635193,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39003,22032,1595503467.265944,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39004,22033,1595503467.819428,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39005,22034,1595503468.550441,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39006,22035,1595503469.160201,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39007,22038,1595503470.972412,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39008,22039,1595503471.599898,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39009,22040,1595503472.466110,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39010,22041,1595503473.076160,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39011,22042,1595503473.664839,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39012,22043,1595503474.284921,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39013,22045,1595503475.371664,1,'loginFailInvalidUsername','elreynoso',0,_binary '\0\0\0\0\0\0\0\0\0\0٠[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(39014,22609,1595553510.493171,1,'loginFailValidUsername','admin',1,_binary '&\0\\0\0\0\0_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(39015,22680,1595559990.525633,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`(\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39016,22683,1595560046.042179,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\01','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39017,22687,1595560077.823178,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39018,22690,1595560110.748912,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39019,22695,1595560618.991449,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39020,22696,1595560627.868791,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0hҖn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39021,22701,1595560707.052296,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39022,22704,1595560721.410163,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\^<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39023,22714,1595561135.614929,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0jx','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39024,22717,1595561156.097327,1,'loginFailValidUsername','admin',1,_binary ' A\v\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39025,22720,1595561189.274127,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0G+\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39026,22723,1595561213.978218,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0;\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39027,22727,1595561579.643938,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#ÇC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39028,22729,1595561585.406687,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39029,22732,1595561604.775518,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ec9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39030,22737,1595561730.313404,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0C͐A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39031,22740,1595561949.960235,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39032,22743,1595562016.229411,1,'loginFailValidUsername','admin',1,_binary '&S\0\0`V\\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39033,22746,1595562107.964391,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0C͡;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39034,22750,1595562401.850784,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0O}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39035,22753,1595562410.638830,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39036,22756,1595562449.248676,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0.e_A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39037,22763,1595562809.325824,1,'loginFailValidUsername','admin',1,_binary '*\0\0FPVF`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39038,22764,1595562809.754179,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0)]0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39039,22766,1595562815.642403,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39040,22769,1595562865.326210,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39041,22773,1595563199.550805,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#\%\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39042,22775,1595563208.835143,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0^\	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39043,22778,1595563259.399451,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0@\*|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39044,22785,1595563567.737176,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39045,22786,1595563572.777194,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39046,22789,1595563607.331947,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0py','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39047,22792,1595563656.203007,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39048,22796,1595563892.931466,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0B\=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39049,22799,1595563910.022178,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\"j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39050,22802,1595563990.060377,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0D\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39051,22804,1595564104.459220,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(39052,22808,1595564256.234186,1,'loginFailValidUsername','admin',1,_binary ' A\\0]\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39053,22813,1595564340.770897,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0ˣk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39054,22816,1595564354.109314,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\WJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39055,22821,1595564561.608111,1,'loginFailValidUsername','admin',1,_binary '&i\0\0\0\0\0\0N*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39056,22823,1595564564.693728,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\02e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39057,22826,1595564581.306921,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0MD\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39058,22829,1595564591.229673,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#霝','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39059,22842,1595564917.797554,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\sv$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39060,22852,1595564934.982828,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39061,22864,1595564989.668015,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39062,22895,1595565215.775022,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0%q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39063,22898,1595565228.921791,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39064,22904,1595565251.443246,1,'loginFailValidUsername','admin',1,_binary '*\0\0\\0\0\0\0i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39065,22905,1595565253.626054,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Y\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39066,22910,1595565536.417947,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\]\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39067,22913,1595565545.925725,1,'loginFailValidUsername','admin',1,_binary '*\ $R\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39068,22916,1595565553.078119,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\PC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39069,22921,1595565603.487528,1,'loginFailValidUsername','admin',1,_binary '*\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39070,22924,1595565884.090894,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0H\	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39071,22927,1595565956.099779,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0]B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39072,22930,1595566290.070759,1,'loginFailValidUsername','Admin',1,_binary '\0\0\0\0\0\0\0\0\0\0].','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39073,22933,1595566501.855248,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0c/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39074,22937,1595566758.884493,1,'loginFailInvalidUsername','badmin',0,_binary '\0\0\0\0\0\0\0\0\0\0(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39075,22939,1595566763.019570,1,'loginFailInvalidUsername','badmin',0,_binary '\0\0\0\0\0\0\0\0\0\0BF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39076,22945,1595567047.425663,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\04t6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39077,22946,1595567049.615082,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0h\^<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39078,22949,1595567093.272197,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39079,22953,1595567334.008134,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#3\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39080,22956,1595567359.279464,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0Ϧ\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39081,22964,1595567702.323070,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39082,22970,1595567903.094525,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#ʝ`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39083,22974,1595568225.828411,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\$/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39084,22978,1595568266.572368,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0#hE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39085,22982,1595568534.951015,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0\`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(39086,22986,1595568792.219291,1,'loginFailValidUsername','admin',1,_binary '\0\0\0\0\0\0\0\0\0\0BF\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0');
/*!40000 ALTER TABLE `wp_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wp_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_2fa_secrets`
--

LOCK TABLES `wp_wfls_2fa_secrets` WRITE;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfls_settings`
--

DROP TABLE IF EXISTS `wp_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_settings`
--

LOCK TABLES `wp_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wp_wfls_settings` DISABLE KEYS */;
INSERT INTO `wp_wfls_settings` VALUES ('allow-xml-rpc',_binary '1','yes'),('captcha-stats',_binary '{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('global-notices',_binary '[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh',_binary '1575042169','yes'),('ntp-offset',_binary '0.63436126708984','yes'),('recaptcha-threshold',_binary '0.5','yes'),('remember-device','','yes'),('remember-device-duration',_binary '2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret',_binary '9012c873192972d8a0134824b2db376741bff977573861824fd0412c4ac5c054','yes'),('shared-symmetric-secret',_binary '0768bb2b48771b6ed94ce3e3b4ef1c77eaa441dbf11c7259ad1e415ec4d6f9c0','yes'),('use-ntp','','yes'),('whitelisted','','yes'),('xmlrpc-enabled',_binary '1','yes');
/*!40000 ALTER TABLE `wp_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfnotifications`
--

DROP TABLE IF EXISTS `wp_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfnotifications`
--

LOCK TABLES `wp_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wp_wfnotifications` DISABLE KEYS */;
INSERT INTO `wp_wfnotifications` VALUES ('network-GB',0,'release630',400,1488904758,'<div style=\"padding:1rem 0px;\"><b>Announcing Wordfence 6.3.0 - Exciting Improvements</b><br>\nThis morning we are officially releasing Wordfence 6.3.0. If you have Wordfence auto-update enabled, your site may have already been updated automatically. This is a very exciting release for us with a host of improvements. The user interface has changed and we have added a new \'Dashboard\' menu option. You\'ll also notice the Wordfence menu structure has changed. <br><br>\n\nWe have tried to keep everything familiar, but easier to find and access. You can find the help documentation for the new dashboard <a href=\"https://docs.wordfence.com/en/Wordfence_Dashboard\">here</a>.<br><br>\n\n<a href=\"https://www.wordfence.com/blog/2017/01/wordfence-6-3-0/\">You can find the full announcement and details of the changes on our blog....</a></div>','[]'),('network-GC',0,'digest201701',1000,1488904758,'<div style=\"padding:1rem 0px;\">\n		<p style=\"font-weight:bold;font-size:0.8rem;color:#11967A;margin-top: 0;\">Recent Blog Highlights</p>\n		<div style=\"display:flex;flex-direction:row;max-width:100%;overflow-x:auto;flex-basis:auto;\">\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/xmlrpc-wp-login-brute-force/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">XMLRPC or WP-Login: Which do Brute Force Attackers Prefer</a>\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">A close look at brute force attack targets yielded some surprising results.</div>\n			</div>\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/wordpress-security-plugin/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Do you Need a WordPress Security Plugin?</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">This easy to follow post makes the clear case for running both a malware scanner and firewall on your WordPress site.</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/wordpress-botnet-monetization/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Analysis: Methods and Monetization of a Botnet Attacking WordPress</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				A deep dive on the methods and profit motive of an active Botnet.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/chrome-56-ssl-https-wordpress/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Imminent: Non-HTTPS Sites Labeled “Not Secure” by Chrome</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				An overview of changes to Google Chrome that will impact non-https site owners.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/gmail-phishing-data-uri/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">Wide Impact: Highly Effective Gmail Phishing Technique Being Exploited</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				We profile a new phishing technique that is fooling even experienced technical users.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/how-wordpress-firewall-works/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">How the Wordfence Firewall Works</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				We explain how the Wordfence firewall protects your website from attacks.\n				</div>\n			</div>\n\n			<div style=\"margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;\">\n				<a href=\"https://www.wordfence.com/blog/2017/01/december-2016-wordpress-attack-activity-report/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert\" style=\"display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;\">The December 2016 WordPress Attack Activity Report</a>\n\n				<div style=\"font-size:0.9rem;color:#2d2d2d;\">\n				Stats and insights from Wordfence Network from December.\n				</div>\n                </div>\n		</div>\n	</div><script type=\"application/javascript\">jQuery(\'.wf-dashboard-item-list-title\').css(\'min-width\', 0);</script>','[]'),('network-GD',0,'gravityscan',300,1498491554,'<p><strong>Say hello to Gravityscan, the free malware and vulnerability scanner for any website</strong></p>\n\n<p>Today we are excited to share a new product we have been working on for the last year. It is free to use, works on any website and you don’t need to install anything to use it. We think you’ll find it to be a great complement to the WordPress protection you’re already getting with Wordfence. And we know that for a lot of you WordPress isn’t the only platform you need to secure, so we built Gravityscan to work with all of your sites.</p>\n\n<p><a href=\"https://www.gravityscan.com?utm_source=plugin&utm_medium=pluginalert&utm_campaign=la061817\" target=\"_blank\" class=\"wf-btn wf-btn-primary\">Scan your site now</a></p>','[]'),('network-GE',0,'siteaudit',400,1498491554,'<p><strong>Announcing New Site Security Audit Service</strong></p>\n<p>We are very excited to announce that we have officially launched a new WordPress Site Security Audit Service.</p>\n<p>We have been providing this service to select customers for several weeks prior to the official launch. We are now live with the service and making it available to all of our customers.</p>\n<p>We have written about the service on our blog, where we explain a few of the benefits of having our dedicated Security Services Team evaluate and secure your site.</p>\n<p><a href=\"https://www.wordfence.com/blog/2017/05/wordpress-security-audit/?utm_source=plugin&utm_medium=pluginalert&utm_campaign=sa052517\" target=\"_blank\">You can find the full announcement on our blog...</a></p>','[]'),('network-GF',0,'gravityscanbadge',500,1501341914,'<p><strong style=\"color:#00709E;\">Introducing a Free Trust Badge With Blacklist and SEO Monitoring</strong></p>\n<p>Today we are excited to officially launch the Gravityscan trust badge program. As you know, Gravityscan is a project by the Wordfence team to bring malware and vulnerability scanning to all websites. Until now, daily monitoring had been a paid feature of Gravityscan, priced at around $120 per year.  The new badge program provides free daily security monitoring for any website.</p>\n<p>The Gravityscan trust badge checks your website daily against over 20 blacklists and ensures that your content does not contain links to malicious sites. The program also includes a comprehensive daily scan for malware.</p>\n<p>The Gravityscan trust badge also helps improve conversion rates and visitor confidence in your website. To learn more about this exciting and completely free program, you can find the <a href=\"https://www.gravityscan.com/blog/gravityscan-badge?utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617\" target=\"_blank\">full details on the Gravityscan blog</a>.</p>\n<p class=\"wf-center\"><a href=\"https://www.gravityscan.com/sign-up?plan=free-monitoring&utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617\" target=\"_blank\" style=\"text-align: center;text-transform: uppercase;font-weight: bold;background-color: #11967A;height: 44px;line-height: 44px;padding: 0px 20px;color: #ffffff;text-decoration: none;display: inline-block;border-radius: 3px;\">Get Free Trust Badge</a></p>','[]'),('network-GG',0,'blogpost082917',400,1505482601,'<p><strong>Better Data Means Better Protection</strong></p>\n<p>Mission-critical sites rely on the real-time protection provided by Wordfence Premium. Learn how the 30-strong team at Wordfence stays on top of the latest threats, providing Premium customers with the real-time threat intelligence they need to stay safe.</p>\n<p><a href=\"https://www.wordfence.com/blog/2017/08/benefits-wordfence-premium/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=bp082917\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Learn More</a></p>','[]'),('site-3AAAAAA',0,'wfplugin_updates',1000,1495557340,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 5 plugins</a>','[]'),('site-7QBAAAA',0,'wfplugin_updates',502,1509889053,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 8 plugins</a>','[]'),('site-7UBAAAA',0,'wfplugin_scan',502,1509889055,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">8 issues found in most recent scan</a>','[]'),('site-A4AAAAA',0,'wfplugin_updates',1000,1487160338,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 6 plugins</a>','[]'),('site-AEAAAAA',0,'wfplugin_scan',502,1500996212,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">Scan failed: Wordfence could not read the contents of your base WordPress directory. This usually indicates your ...</a>','[]'),('site-GYAAAAA',0,'wfplugin_updates',1000,1488233317,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 5 plugins</a>','[]'),('site-MAAAAAA',0,'wfplugin_updates',1000,1489941029,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 4 plugins</a>','[]'),('site-NIBAAAA',0,'wfplugin_updates',502,1501515246,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-NMBAAAA',0,'wfplugin_scan',502,1501515248,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-P4BAAAA',0,'wfplugin_updates',502,1502551731,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-PUBAAAA',0,'wfplugin_scan',502,1501774046,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">Scan failed: Wordfence could not read the contents of your base WordPress directory. This usually indicates your ...</a>','[]'),('site-QABAAAA',0,'wfplugin_scan',502,1502551733,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-R4AQAAA',0,'wfplugin_updates',502,1500996160,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 7 plugins</a>','[]'),('site-RUAAAAA',0,'wfplugin_updates',1000,1491926381,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 4 plugins</a>','[]'),('site-T4BAAAA',0,'wfplugin_updates',502,1505399532,'<a href=\"https://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 6 plugins</a>','[]'),('site-TQBAAAA',0,'wfplugin_scan',502,1502807468,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">Scan failed: Wordfence could not read the contents of your base WordPress directory. This usually indicates your ...</a>','[]'),('site-TYBAAAA',0,'wfplugin_scan',502,1505399533,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">6 issues found in most recent scan</a>','[]'),('site-UEBQAAA',1,'wfplugin_scan',502,1595545701,'<a href=\"https://chicagolandremodeling.com/wp-admin/admin.php?page=WordfenceScan\">Scan failed: Wordfence could not read the contents of your base WordPress directory. This usually indicates your ...</a>','[]'),('site-UIBQAAA',1,'wfplugin_updates',502,1595501209,'<a href=\"http://chicagolandremodeling.com/wp-admin/update-core.php\">Updates are available for 9 plugins and 5 themes</a>','[]');
/*!40000 ALTER TABLE `wp_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfpendingissues`
--

DROP TABLE IF EXISTS `wp_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfpendingissues`
--

LOCK TABLES `wp_wfpendingissues` WRITE;
/*!40000 ALTER TABLE `wp_wfpendingissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfpendingissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfreversecache`
--

DROP TABLE IF EXISTS `wp_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfreversecache` (
  `IP` binary(16) NOT NULL,
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfreversecache`
--

LOCK TABLES `wp_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wp_wfreversecache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfsnipcache`
--

DROP TABLE IF EXISTS `wp_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfsnipcache`
--

LOCK TABLES `wp_wfsnipcache` WRITE;
/*!40000 ALTER TABLE `wp_wfsnipcache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfsnipcache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfstatus`
--

DROP TABLE IF EXISTS `wp_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=23530 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfstatus`
--

LOCK TABLES `wp_wfstatus` WRITE;
/*!40000 ALTER TABLE `wp_wfstatus` DISABLE KEYS */;
INSERT INTO `wp_wfstatus` VALUES (21137,1582630191.513366,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21138,1582630191.515464,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21141,1582716533.183006,1,'info','Initiating quick scan'),(21146,1582716533.288994,1,'info','-------------------'),(21147,1582716533.293866,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(21148,1582716533.295998,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21151,1582803026.230821,1,'info','Initiating quick scan'),(21156,1582803026.333099,1,'info','-------------------'),(21157,1582803026.336722,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 2 MB'),(21158,1582803026.338517,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21160,1582844564.409849,1,'info','Scheduled Wordfence scan starting at Thursday 27th of February 2020 11:02:44 PM'),(21162,1582844565.794548,1,'info','Contacting Wordfence to initiate scan'),(21167,1582844568.678998,2,'info','Total disk space: 218.66 GB -- Free disk space: 46.95 GB'),(21168,1582844568.680624,2,'info','The disk has 48076.57 MB available'),(21175,1582844568.993882,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21177,1582844568.997002,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21179,1582889629.192462,1,'info','Initiating quick scan'),(21184,1582889629.293462,1,'info','-------------------'),(21185,1582889629.298603,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(21186,1582889629.300908,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21189,1582976140.364446,1,'info','Initiating quick scan'),(21194,1582976140.452295,1,'info','-------------------'),(21195,1582976140.457026,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(21196,1582976140.459256,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21199,1583062180.511443,1,'info','Initiating quick scan'),(21204,1583062180.606797,1,'info','-------------------'),(21205,1583062180.610878,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21206,1583062180.612765,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21208,1583103842.004031,1,'info','Scheduled Wordfence scan starting at Sunday 1st of March 2020 11:04:02 PM'),(21210,1583103843.571488,1,'info','Contacting Wordfence to initiate scan'),(21215,1583103847.130598,2,'info','Total disk space: 218.66 GB -- Free disk space: 45.62 GB'),(21216,1583103847.132247,2,'info','The disk has 46717.59 MB available'),(21223,1583103847.453566,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21225,1583103847.458229,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21227,1583148514.418517,1,'info','Initiating quick scan'),(21232,1583148514.503182,1,'info','-------------------'),(21233,1583148514.507190,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21234,1583148514.508949,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21237,1583235871.077936,1,'info','Initiating quick scan'),(21242,1583235871.243328,1,'info','-------------------'),(21243,1583235871.254836,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(21244,1583235871.260030,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21247,1583322043.093659,1,'info','Initiating quick scan'),(21252,1583322043.234411,1,'info','-------------------'),(21253,1583322043.241649,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(21254,1583322043.245704,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21256,1583362849.629036,1,'info','Scheduled Wordfence scan starting at Wednesday 4th of March 2020 11:00:49 PM'),(21258,1583362851.391027,1,'info','Contacting Wordfence to initiate scan'),(21263,1583362853.767728,2,'info','Total disk space: 218.66 GB -- Free disk space: 46.13 GB'),(21264,1583362853.769066,2,'info','The disk has 47232.36 MB available'),(21271,1583362854.075056,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21273,1583362854.077763,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21275,1583407998.462233,1,'info','Initiating quick scan'),(21280,1583407998.553969,1,'info','-------------------'),(21281,1583407998.558936,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21282,1583407998.561306,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21285,1583494343.353184,1,'info','Initiating quick scan'),(21290,1583494343.493496,1,'info','-------------------'),(21291,1583494343.501414,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21292,1583494343.505083,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21295,1583580580.136691,1,'info','Initiating quick scan'),(21300,1583580580.239293,1,'info','-------------------'),(21301,1583580580.244039,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(21302,1583580580.246300,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21304,1583622084.819833,1,'info','Scheduled Wordfence scan starting at Saturday 7th of March 2020 11:01:24 PM'),(21306,1583622085.880429,1,'info','Contacting Wordfence to initiate scan'),(21311,1583622088.319008,2,'info','Total disk space: 218.66 GB -- Free disk space: 44.71 GB'),(21312,1583622088.320366,2,'info','The disk has 45786.66 MB available'),(21319,1583622088.607614,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21321,1583622088.610305,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21323,1583666910.530104,1,'info','Initiating quick scan'),(21328,1583666910.647341,1,'info','-------------------'),(21329,1583666910.653451,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(21330,1583666910.656513,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21333,1583753304.865520,1,'info','Initiating quick scan'),(21338,1583753305.005272,1,'info','-------------------'),(21339,1583753305.009999,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21340,1583753305.012225,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21343,1583840118.782539,1,'info','Initiating quick scan'),(21348,1583840118.880637,1,'info','-------------------'),(21349,1583840118.884997,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21350,1583840118.887070,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21352,1583881345.189849,1,'info','Scheduled Wordfence scan starting at Tuesday 10th of March 2020 11:02:25 PM'),(21354,1583881346.590338,1,'info','Contacting Wordfence to initiate scan'),(21359,1583881350.118783,2,'info','Total disk space: 218.66 GB -- Free disk space: 43.17 GB'),(21360,1583881350.122822,2,'info','The disk has 44202.14 MB available'),(21367,1583881350.534461,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21369,1583881350.541589,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21371,1583926460.587247,1,'info','Initiating quick scan'),(21376,1583926460.758551,1,'info','-------------------'),(21377,1583926460.767055,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21378,1583926460.770995,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21381,1584012881.136747,1,'info','Initiating quick scan'),(21386,1584012881.308013,1,'info','-------------------'),(21387,1584012881.317795,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21388,1584012881.322120,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21391,1584098956.433373,1,'info','Initiating quick scan'),(21396,1584098956.604066,1,'info','-------------------'),(21397,1584098956.612026,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(21398,1584098956.615686,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21400,1584141150.945490,1,'info','Scheduled Wordfence scan starting at Friday 13th of March 2020 11:12:30 PM'),(21402,1584141152.055114,1,'info','Contacting Wordfence to initiate scan'),(21407,1584141154.516948,2,'info','Total disk space: 218.66 GB -- Free disk space: 40.09 GB'),(21408,1584141154.522177,2,'info','The disk has 41052.29 MB available'),(21415,1584141154.988384,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21417,1584141154.997941,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21419,1584185306.710279,1,'info','Initiating quick scan'),(21424,1584185306.903255,1,'info','-------------------'),(21425,1584185306.921141,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(21426,1584185306.926341,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21429,1584272118.712511,1,'info','Initiating quick scan'),(21434,1584272118.861450,1,'info','-------------------'),(21435,1584272118.868788,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21436,1584272118.871911,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21439,1584358626.963157,1,'info','Initiating quick scan'),(21444,1584358627.143427,1,'info','-------------------'),(21445,1584358627.151368,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21446,1584358627.155121,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21448,1584399600.523556,1,'info','Scheduled Wordfence scan starting at Monday 16th of March 2020 11:00:00 PM'),(21450,1584399601.705778,1,'info','Contacting Wordfence to initiate scan'),(21455,1584399604.213427,2,'info','Total disk space: 218.66 GB -- Free disk space: 40.15 GB'),(21456,1584399604.221293,2,'info','The disk has 41114.74 MB available'),(21463,1584399604.679601,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21465,1584399604.700292,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21467,1584444906.397905,1,'info','Initiating quick scan'),(21472,1584444906.527091,1,'info','-------------------'),(21473,1584444906.536343,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(21474,1584444906.540583,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21477,1584531010.889119,1,'info','Initiating quick scan'),(21482,1584531011.020554,1,'info','-------------------'),(21483,1584531011.031653,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(21484,1584531011.035067,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21487,1584617509.773424,1,'info','Initiating quick scan'),(21492,1584617509.884363,1,'info','-------------------'),(21493,1584617509.890616,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21494,1584617509.893480,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21496,1584659237.718599,1,'info','Scheduled Wordfence scan starting at Thursday 19th of March 2020 11:07:17 PM'),(21498,1584659238.915225,1,'info','Contacting Wordfence to initiate scan'),(21503,1584659242.378311,2,'info','Total disk space: 218.66 GB -- Free disk space: 38.16 GB'),(21504,1584659242.381481,2,'info','The disk has 39074.04 MB available'),(21511,1584659242.826444,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21513,1584659242.832771,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21515,1584704058.339230,1,'info','Initiating quick scan'),(21520,1584704058.507992,1,'info','-------------------'),(21521,1584704058.521707,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(21522,1584704058.524877,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21525,1584790283.508876,1,'info','Initiating quick scan'),(21530,1584790283.614626,1,'info','-------------------'),(21531,1584790283.620629,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21532,1584790283.623494,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21535,1584877363.283438,1,'info','Initiating quick scan'),(21540,1584877363.425618,1,'info','-------------------'),(21541,1584877363.440441,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21542,1584877363.450867,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21544,1584918610.962474,1,'info','Scheduled Wordfence scan starting at Sunday 22nd of March 2020 11:10:10 PM'),(21546,1584918612.283848,1,'info','Contacting Wordfence to initiate scan'),(21551,1584918614.729376,2,'info','Total disk space: 218.66 GB -- Free disk space: 33.93 GB'),(21552,1584918614.733922,2,'info','The disk has 34745.05 MB available'),(21559,1584918615.148415,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21561,1584918615.156155,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21563,1584963069.206751,1,'info','Initiating quick scan'),(21568,1584963069.366330,1,'info','-------------------'),(21569,1584963069.378278,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 34 MB'),(21570,1584963069.384766,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21573,1585049347.882110,1,'info','Initiating quick scan'),(21578,1585049348.014807,1,'info','-------------------'),(21579,1585049348.023545,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(21580,1585049348.028183,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21583,1585135727.519870,1,'info','Initiating quick scan'),(21588,1585135727.654347,1,'info','-------------------'),(21589,1585135727.680268,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21590,1585135727.687753,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21592,1585177587.615010,1,'info','Scheduled Wordfence scan starting at Wednesday 25th of March 2020 11:06:27 PM'),(21594,1585177588.889718,1,'info','Contacting Wordfence to initiate scan'),(21599,1585177591.310751,2,'info','Total disk space: 218.66 GB -- Free disk space: 30.76 GB'),(21600,1585177591.315650,2,'info','The disk has 31499.32 MB available'),(21607,1585177591.702527,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21609,1585177591.737385,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21611,1585222394.808414,1,'info','Initiating quick scan'),(21616,1585222394.917172,1,'info','-------------------'),(21617,1585222394.923681,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21618,1585222394.926396,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21621,1585308587.514988,1,'info','Initiating quick scan'),(21626,1585308587.633420,1,'info','-------------------'),(21627,1585308587.639429,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 2 MB'),(21628,1585308587.642265,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21631,1585394982.080388,1,'info','Initiating quick scan'),(21636,1585394982.307866,1,'info','-------------------'),(21637,1585394982.324944,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(21638,1585394982.333808,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21640,1585437393.765182,1,'info','Scheduled Wordfence scan starting at Saturday 28th of March 2020 11:16:33 PM'),(21642,1585437395.508828,1,'info','Contacting Wordfence to initiate scan'),(21647,1585437399.069112,2,'info','Total disk space: 218.66 GB -- Free disk space: 27.4 GB'),(21648,1585437399.074135,2,'info','The disk has 28058.36 MB available'),(21655,1585437399.511374,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21657,1585437399.520062,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21659,1585481502.341982,1,'info','Initiating quick scan'),(21664,1585481502.446162,1,'info','-------------------'),(21665,1585481502.451990,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(21666,1585481502.454835,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21669,1585567704.943805,1,'info','Initiating quick scan'),(21674,1585567705.091171,1,'info','-------------------'),(21675,1585567705.100398,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 2 MB'),(21676,1585567705.104463,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21679,1585654429.050557,1,'info','Initiating quick scan'),(21684,1585654429.221587,1,'info','-------------------'),(21685,1585654429.231704,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 2 MB'),(21686,1585654429.236406,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21688,1585695853.532537,1,'info','Scheduled Wordfence scan starting at Tuesday 31st of March 2020 11:04:13 PM'),(21690,1585695855.005269,1,'info','Contacting Wordfence to initiate scan'),(21695,1585695857.531797,2,'info','Total disk space: 218.66 GB -- Free disk space: 27.38 GB'),(21696,1585695857.534900,2,'info','The disk has 28036.69 MB available'),(21703,1585695857.917551,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21705,1585695857.922550,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21707,1585740577.514609,1,'info','Initiating quick scan'),(21712,1585740577.658774,1,'info','-------------------'),(21713,1585740577.668159,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21714,1585740577.705424,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21717,1585826987.440962,1,'info','Initiating quick scan'),(21722,1585826987.579626,1,'info','-------------------'),(21723,1585826987.585066,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(21724,1585826987.587606,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21727,1585913485.015793,1,'info','Initiating quick scan'),(21732,1585913485.193792,1,'info','-------------------'),(21733,1585913485.204008,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21734,1585913485.208572,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21736,1585954881.112714,1,'info','Scheduled Wordfence scan starting at Friday 3rd of April 2020 11:01:21 PM'),(21738,1585954882.339467,1,'info','Contacting Wordfence to initiate scan'),(21743,1585954884.732645,2,'info','Total disk space: 218.66 GB -- Free disk space: 23.03 GB'),(21744,1585954884.737113,2,'info','The disk has 23579.79 MB available'),(21751,1585954885.183081,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21753,1585954885.196898,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21755,1585999818.490941,1,'info','Initiating quick scan'),(21760,1585999818.594828,1,'info','-------------------'),(21761,1585999818.600449,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(21762,1585999818.602897,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21765,1586086284.841064,1,'info','Initiating quick scan'),(21770,1586086284.989452,1,'info','-------------------'),(21771,1586086284.998962,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(21772,1586086285.003112,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21775,1586172790.597815,1,'info','Initiating quick scan'),(21780,1586172791.052263,1,'info','-------------------'),(21781,1586172791.096182,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(21782,1586172791.135264,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21784,1586214124.734312,1,'info','Scheduled Wordfence scan starting at Monday 6th of April 2020 11:02:04 PM'),(21786,1586214126.153827,1,'info','Contacting Wordfence to initiate scan'),(21791,1586214129.848850,2,'info','Total disk space: 218.66 GB -- Free disk space: 21.34 GB'),(21792,1586214129.854941,2,'info','The disk has 21851.25 MB available'),(21799,1586214130.330650,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21801,1586214130.340436,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21803,1586259809.939936,1,'info','Initiating quick scan'),(21808,1586259810.081439,1,'info','-------------------'),(21809,1586259810.086450,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21810,1586259810.088683,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21813,1586346167.452113,1,'info','Initiating quick scan'),(21818,1586346167.601723,1,'info','-------------------'),(21819,1586346167.609765,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21820,1586346167.613740,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21823,1586431953.748891,1,'info','Initiating quick scan'),(21828,1586431953.887293,1,'info','-------------------'),(21829,1586431953.899891,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21830,1586431953.907763,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21832,1586473465.072665,1,'info','Scheduled Wordfence scan starting at Thursday 9th of April 2020 11:04:25 PM'),(21834,1586473466.491268,1,'info','Contacting Wordfence to initiate scan'),(21839,1586473468.891165,2,'info','Total disk space: 218.66 GB -- Free disk space: 18.21 GB'),(21840,1586473468.894114,2,'info','The disk has 18642.17 MB available'),(21847,1586473469.504818,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21849,1586473469.514166,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21851,1586518390.951881,1,'info','Initiating quick scan'),(21856,1586518391.458820,1,'info','-------------------'),(21857,1586518391.550290,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21858,1586518391.567439,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21861,1586604508.226323,1,'info','Initiating quick scan'),(21866,1586604508.447536,1,'info','-------------------'),(21867,1586604508.454497,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(21868,1586604508.457998,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21871,1586690922.048400,1,'info','Initiating quick scan'),(21876,1586690922.248941,1,'info','-------------------'),(21877,1586690922.266676,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21878,1586690922.275176,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21880,1586732575.390439,1,'info','Scheduled Wordfence scan starting at Sunday 12th of April 2020 11:02:55 PM'),(21882,1586732604.011206,1,'info','Contacting Wordfence to initiate scan'),(21887,1586732606.497174,2,'info','Total disk space: 218.66 GB -- Free disk space: 19.08 GB'),(21888,1586732606.499946,2,'info','The disk has 19537.45 MB available'),(21895,1586732606.848211,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21897,1586732606.853941,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21899,1586777359.015625,1,'info','Initiating quick scan'),(21904,1586777359.131290,1,'info','-------------------'),(21905,1586777359.137339,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(21906,1586777359.140567,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21909,1586863862.996017,1,'info','Initiating quick scan'),(21914,1586863863.228832,1,'info','-------------------'),(21915,1586863863.241102,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21916,1586863863.246509,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21919,1586950735.930634,1,'info','Initiating quick scan'),(21924,1586950736.130004,1,'info','-------------------'),(21925,1586950736.141242,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 46 MB'),(21926,1586950736.147058,1,'info','Quick Scan Complete. Scanned in 1 second.'),(21928,1586991607.218970,1,'info','Scheduled Wordfence scan starting at Wednesday 15th of April 2020 11:00:07 PM'),(21930,1586991609.061927,1,'info','Contacting Wordfence to initiate scan'),(21935,1586991612.734817,2,'info','Total disk space: 239.66 GB -- Free disk space: 57.42 GB'),(21936,1586991612.742908,2,'info','The disk has 58798.35 MB available'),(21943,1586991613.320234,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21945,1586991613.339076,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21947,1587036680.261214,1,'info','Initiating quick scan'),(21952,1587036680.522961,1,'info','-------------------'),(21953,1587036680.532515,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(21954,1587036680.536899,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21957,1587123464.292592,1,'info','Initiating quick scan'),(21962,1587123464.476391,1,'info','-------------------'),(21963,1587123464.486976,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(21964,1587123464.491827,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21967,1587209606.364937,1,'info','Initiating quick scan'),(21972,1587209606.660455,1,'info','-------------------'),(21973,1587209606.673556,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(21974,1587209606.680038,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(21976,1587250821.894363,1,'info','Scheduled Wordfence scan starting at Saturday 18th of April 2020 11:00:21 PM'),(21978,1587250823.367129,1,'info','Contacting Wordfence to initiate scan'),(21983,1587250825.777107,2,'info','Total disk space: 239.66 GB -- Free disk space: 56.45 GB'),(21984,1587250825.780051,2,'info','The disk has 57806.73 MB available'),(21991,1587250826.146033,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(21993,1587250826.152927,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(21995,1587295867.718295,1,'info','Initiating quick scan'),(22000,1587295867.847999,1,'info','-------------------'),(22001,1587295867.853793,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22002,1587295867.856725,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22005,1587382137.963060,1,'info','Initiating quick scan'),(22010,1587382138.128893,1,'info','-------------------'),(22011,1587382138.138806,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(22012,1587382138.146966,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22015,1587468724.599502,1,'info','Initiating quick scan'),(22020,1587468724.772322,1,'info','-------------------'),(22021,1587468724.781225,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(22022,1587468724.785453,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22024,1587510095.386193,1,'info','Scheduled Wordfence scan starting at Tuesday 21st of April 2020 11:01:35 PM'),(22026,1587510096.941198,1,'info','Contacting Wordfence to initiate scan'),(22031,1587510099.534330,2,'info','Total disk space: 239.66 GB -- Free disk space: 52.19 GB'),(22032,1587510099.593086,2,'info','The disk has 53444.33 MB available'),(22039,1587510100.181128,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22041,1587510100.192561,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22043,1587555002.688110,1,'info','Initiating quick scan'),(22048,1587555002.797470,1,'info','-------------------'),(22049,1587555002.803028,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22050,1587555002.805572,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22053,1587641945.526899,1,'info','Initiating quick scan'),(22058,1587641945.642323,1,'info','-------------------'),(22059,1587641945.650704,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(22060,1587641945.654491,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22063,1587727722.449432,1,'info','Initiating quick scan'),(22068,1587727722.596140,1,'info','-------------------'),(22069,1587727722.608788,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(22070,1587727722.614057,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22072,1587770256.112331,1,'info','Scheduled Wordfence scan starting at Friday 24th of April 2020 11:17:36 PM'),(22074,1587770257.274467,1,'info','Contacting Wordfence to initiate scan'),(22079,1587770260.901031,2,'info','Total disk space: 239.66 GB -- Free disk space: 52.65 GB'),(22080,1587770260.906256,2,'info','The disk has 53914.13 MB available'),(22087,1587770261.309629,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22089,1587770261.315608,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22091,1587814615.009452,1,'info','Initiating quick scan'),(22096,1587814615.103959,1,'info','-------------------'),(22097,1587814615.108520,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(22098,1587814615.110842,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22101,1587900505.649482,1,'info','Initiating quick scan'),(22106,1587900505.845239,1,'info','-------------------'),(22107,1587900505.864244,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(22108,1587900505.873255,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22111,1587987334.618712,1,'info','Initiating quick scan'),(22116,1587987334.720156,1,'info','-------------------'),(22117,1587987334.725562,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22118,1587987334.728561,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22120,1588028479.342408,1,'info','Scheduled Wordfence scan starting at Monday 27th of April 2020 11:01:19 PM'),(22122,1588028480.865636,1,'info','Contacting Wordfence to initiate scan'),(22127,1588028483.461817,2,'info','Total disk space: 239.66 GB -- Free disk space: 51.7 GB'),(22128,1588028483.469325,2,'info','The disk has 52942.49 MB available'),(22135,1588028483.992446,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22137,1588028484.004457,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22139,1588073521.305742,1,'info','Initiating quick scan'),(22144,1588073521.432154,1,'info','-------------------'),(22145,1588073521.439363,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22146,1588073521.442853,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22149,1588160117.077221,1,'info','Initiating quick scan'),(22154,1588160117.235856,1,'info','-------------------'),(22155,1588160117.245507,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22156,1588160117.250125,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22159,1588246144.277704,1,'info','Initiating quick scan'),(22164,1588246144.476419,1,'info','-------------------'),(22165,1588246144.487322,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 28 MB'),(22166,1588246144.492575,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22168,1588287621.324659,1,'info','Scheduled Wordfence scan starting at Thursday 30th of April 2020 11:00:21 PM'),(22170,1588287622.736696,1,'info','Contacting Wordfence to initiate scan'),(22175,1588287625.387956,2,'info','Total disk space: 239.66 GB -- Free disk space: 47.36 GB'),(22176,1588287625.391615,2,'info','The disk has 48492.79 MB available'),(22183,1588287625.835289,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22185,1588287625.848609,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22187,1588332662.095298,1,'info','Initiating quick scan'),(22192,1588332662.207881,1,'info','-------------------'),(22193,1588332662.215796,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(22194,1588332662.219359,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22197,1588421053.926477,1,'info','Initiating quick scan'),(22202,1588421054.033685,1,'info','-------------------'),(22203,1588421054.041876,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22204,1588421054.045668,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22207,1588507234.126883,1,'info','Initiating quick scan'),(22212,1588507234.210331,1,'info','-------------------'),(22213,1588507234.213488,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 32 MB'),(22214,1588507234.214919,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22216,1588550532.652106,1,'info','Scheduled Wordfence scan starting at Monday 4th of May 2020 12:02:12 AM'),(22218,1588550534.007165,1,'info','Contacting Wordfence to initiate scan'),(22223,1588550537.650703,2,'info','Total disk space: 239.66 GB -- Free disk space: 46.56 GB'),(22224,1588550537.654135,2,'info','The disk has 47681.73 MB available'),(22231,1588550538.085728,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22233,1588550538.095232,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22235,1588591859.450895,1,'info','Initiating quick scan'),(22240,1588591859.582921,1,'info','-------------------'),(22241,1588591859.589715,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22242,1588591859.593152,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22245,1588678340.263597,1,'info','Initiating quick scan'),(22250,1588678340.489986,1,'info','-------------------'),(22251,1588678340.511567,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22252,1588678340.521061,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22255,1588764553.390159,1,'info','Initiating quick scan'),(22260,1588764553.494091,1,'info','-------------------'),(22261,1588764553.499522,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22262,1588764553.501945,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22264,1588806004.929464,1,'info','Scheduled Wordfence scan starting at Wednesday 6th of May 2020 11:00:04 PM'),(22266,1588806006.479268,1,'info','Contacting Wordfence to initiate scan'),(22271,1588806008.981697,2,'info','Total disk space: 239.66 GB -- Free disk space: 39.12 GB'),(22272,1588806008.986348,2,'info','The disk has 40056.32 MB available'),(22279,1588806009.413225,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22281,1588806009.421530,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22283,1588851107.465503,1,'info','Initiating quick scan'),(22288,1588851107.647347,1,'info','-------------------'),(22289,1588851107.658811,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22290,1588851107.664541,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22293,1588938062.854398,1,'info','Initiating quick scan'),(22298,1588938063.011149,1,'info','-------------------'),(22299,1588938063.019041,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22300,1588938063.022718,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22303,1589024199.728365,1,'info','Initiating quick scan'),(22308,1589024199.832230,1,'info','-------------------'),(22309,1589024199.837533,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(22310,1589024199.840049,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22312,1589065214.479776,1,'info','Scheduled Wordfence scan starting at Saturday 9th of May 2020 11:00:14 PM'),(22314,1589065217.159949,1,'info','Contacting Wordfence to initiate scan'),(22319,1589065219.651424,2,'info','Total disk space: 239.66 GB -- Free disk space: 37.69 GB'),(22320,1589065219.656794,2,'info','The disk has 38596.73 MB available'),(22327,1589065220.203726,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22329,1589065220.209354,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22331,1589110296.141178,1,'info','Initiating quick scan'),(22336,1589110296.287506,1,'info','-------------------'),(22337,1589110296.293791,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22338,1589110296.297104,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22341,1589196591.163660,1,'info','Initiating quick scan'),(22346,1589196591.328154,1,'info','-------------------'),(22347,1589196591.347593,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22348,1589196591.353649,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22351,1589282913.429420,1,'info','Initiating quick scan'),(22356,1589282913.550234,1,'info','-------------------'),(22357,1589282913.568838,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22358,1589282913.571610,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22360,1589324706.074511,1,'info','Scheduled Wordfence scan starting at Tuesday 12th of May 2020 11:05:06 PM'),(22362,1589324707.583465,1,'info','Contacting Wordfence to initiate scan'),(22367,1589324711.261194,2,'info','Total disk space: 239.66 GB -- Free disk space: 34.91 GB'),(22368,1589324711.266297,2,'info','The disk has 35747.97 MB available'),(22375,1589324711.673830,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22377,1589324711.685562,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22379,1589369424.164692,1,'info','Initiating quick scan'),(22384,1589369424.334316,1,'info','-------------------'),(22385,1589369424.347483,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22386,1589369424.352275,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22389,1589455790.225970,1,'info','Initiating quick scan'),(22394,1589455790.365993,1,'info','-------------------'),(22395,1589455790.371662,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22396,1589455790.375933,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22399,1589542134.176016,1,'info','Initiating quick scan'),(22404,1589542134.323602,1,'info','-------------------'),(22405,1589542134.330142,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(22406,1589542134.333208,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22408,1589584110.037912,1,'info','Scheduled Wordfence scan starting at Friday 15th of May 2020 11:08:30 PM'),(22410,1589584111.481328,1,'info','Contacting Wordfence to initiate scan'),(22415,1589584113.920754,2,'info','Total disk space: 239.66 GB -- Free disk space: 32.26 GB'),(22416,1589584113.923861,2,'info','The disk has 33030.44 MB available'),(22423,1589584114.357516,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22425,1589584114.364982,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22427,1589628713.421891,1,'info','Initiating quick scan'),(22432,1589628713.553133,1,'info','-------------------'),(22433,1589628713.561707,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 26 MB'),(22434,1589628713.565496,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22437,1589715107.835578,1,'info','Initiating quick scan'),(22442,1589715107.990935,1,'info','-------------------'),(22443,1589715107.999686,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22444,1589715108.003801,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22447,1589801431.729396,1,'info','Initiating quick scan'),(22452,1589801431.916181,1,'info','-------------------'),(22453,1589801431.924186,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22454,1589801431.928210,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22456,1589842930.886651,1,'info','Scheduled Wordfence scan starting at Monday 18th of May 2020 11:02:10 PM'),(22458,1589842932.407660,1,'info','Contacting Wordfence to initiate scan'),(22463,1589842934.802580,2,'info','Total disk space: 239.66 GB -- Free disk space: 31.92 GB'),(22464,1589842934.805972,2,'info','The disk has 32686.97 MB available'),(22471,1589842935.206869,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22473,1589842935.214727,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22475,1589888244.005400,1,'info','Initiating quick scan'),(22480,1589888244.208326,1,'info','-------------------'),(22481,1589888244.241496,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22482,1589888244.260298,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22485,1589974138.445076,1,'info','Initiating quick scan'),(22490,1589974138.825651,1,'info','-------------------'),(22491,1589974138.850486,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(22492,1589974138.862838,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22495,1590060985.269981,1,'info','Initiating quick scan'),(22500,1590060985.599951,1,'info','-------------------'),(22501,1590060985.643780,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(22502,1590060985.650768,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22504,1590102027.217729,1,'info','Scheduled Wordfence scan starting at Thursday 21st of May 2020 11:00:27 PM'),(22506,1590102028.557012,1,'info','Contacting Wordfence to initiate scan'),(22511,1590102032.442734,2,'info','Total disk space: 239.66 GB -- Free disk space: 26.18 GB'),(22512,1590102032.451385,2,'info','The disk has 26809.78 MB available'),(22519,1590102032.915302,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22521,1590102032.926064,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22523,1590146985.566574,1,'info','Initiating quick scan'),(22528,1590146985.871954,1,'info','-------------------'),(22529,1590146985.889564,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22530,1590146985.895888,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22533,1590245775.115062,1,'info','Initiating quick scan'),(22538,1590245775.233340,1,'info','-------------------'),(22539,1590245775.239182,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(22540,1590245775.241538,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22543,1590319970.464891,1,'info','Initiating quick scan'),(22548,1590319970.672078,1,'info','-------------------'),(22549,1590319970.679212,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(22550,1590319970.682246,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22552,1590361209.948740,1,'info','Scheduled Wordfence scan starting at Sunday 24th of May 2020 11:00:09 PM'),(22554,1590361212.014379,1,'info','Contacting Wordfence to initiate scan'),(22559,1590361214.596717,2,'info','Total disk space: 239.66 GB -- Free disk space: 21.65 GB'),(22560,1590361214.603219,2,'info','The disk has 22170.75 MB available'),(22567,1590361216.521910,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22569,1590361216.535168,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>796</b><br />\n'),(22571,1590407233.084791,1,'info','Initiating quick scan'),(22576,1590407233.323056,1,'info','-------------------'),(22577,1590407233.341756,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22578,1590407233.350172,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22581,1590491349.828999,1,'info','Initiating quick scan'),(22586,1590491350.053685,1,'info','-------------------'),(22587,1590491350.066263,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 6 MB'),(22588,1590491350.071767,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22591,1590577779.160920,1,'info','Initiating quick scan'),(22596,1590577779.528736,1,'info','-------------------'),(22597,1590577779.572086,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(22598,1590577779.593097,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22600,1590620944.809630,1,'info','Scheduled Wordfence scan starting at Wednesday 27th of May 2020 11:09:04 PM'),(22602,1590620946.165098,1,'info','Contacting Wordfence to initiate scan'),(22607,1590620948.543022,2,'info','Total disk space: 239.66 GB -- Free disk space: 21.19 GB'),(22608,1590620948.547533,2,'info','The disk has 21703.16 MB available'),(22615,1590620948.993110,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22617,1590620949.001867,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22619,1590665110.942137,1,'info','Initiating quick scan'),(22624,1590665111.143626,1,'info','-------------------'),(22625,1590665111.165932,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22626,1590665111.181000,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22629,1590750769.299927,1,'info','Initiating quick scan'),(22634,1590750769.678328,1,'info','-------------------'),(22635,1590750769.707420,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 26 MB'),(22636,1590750769.720096,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22639,1590837433.431956,1,'info','Initiating quick scan'),(22644,1590837433.578871,1,'info','-------------------'),(22645,1590837433.590851,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(22646,1590837433.596713,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22648,1590879605.509264,1,'info','Scheduled Wordfence scan starting at Saturday 30th of May 2020 11:00:05 PM'),(22650,1590879607.046504,1,'info','Contacting Wordfence to initiate scan'),(22655,1590879610.705046,2,'info','Total disk space: 239.66 GB -- Free disk space: 21.08 GB'),(22656,1590879610.711036,2,'info','The disk has 21587.77 MB available'),(22663,1590879611.812188,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22665,1590879611.822622,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22667,1590923512.317061,1,'info','Initiating quick scan'),(22672,1590923512.482575,1,'info','-------------------'),(22673,1590923512.491516,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(22674,1590923512.495708,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22677,1591010320.046650,1,'info','Initiating quick scan'),(22682,1591010320.159531,1,'info','-------------------'),(22683,1591010320.166824,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22684,1591010320.170459,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22687,1591096244.870046,1,'info','Initiating quick scan'),(22692,1591096245.204668,1,'info','-------------------'),(22693,1591096245.217863,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22694,1591096245.223638,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22696,1591138805.841121,1,'info','Scheduled Wordfence scan starting at Tuesday 2nd of June 2020 11:00:05 PM'),(22698,1591138807.482508,1,'info','Contacting Wordfence to initiate scan'),(22703,1591138810.094268,2,'info','Total disk space: 239.66 GB -- Free disk space: 19.22 GB'),(22704,1591138810.101331,2,'info','The disk has 19681.8 MB available'),(22711,1591138810.804089,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22713,1591138810.811508,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22715,1591182692.863267,1,'info','Initiating quick scan'),(22720,1591182693.347869,1,'info','-------------------'),(22721,1591182693.376438,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 30 MB'),(22722,1591182693.389481,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22725,1591269213.977917,1,'info','Initiating quick scan'),(22730,1591269214.149721,1,'info','-------------------'),(22731,1591269214.163086,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(22732,1591269214.169737,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22735,1591355492.186268,1,'info','Initiating quick scan'),(22740,1591355492.333711,1,'info','-------------------'),(22741,1591355492.345010,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(22742,1591355492.350488,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22744,1591398138.357444,1,'info','Scheduled Wordfence scan starting at Friday 5th of June 2020 11:02:18 PM'),(22746,1591398172.280967,1,'info','Contacting Wordfence to initiate scan'),(22751,1591398174.770092,2,'info','Total disk space: 239.66 GB -- Free disk space: 31.45 GB'),(22752,1591398174.776739,2,'info','The disk has 32205.63 MB available'),(22759,1591398175.288994,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22761,1591398175.302215,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22763,1591441921.882246,1,'info','Initiating quick scan'),(22768,1591441922.026371,1,'info','-------------------'),(22769,1591441922.037695,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(22770,1591441922.042804,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22773,1591528415.889934,1,'info','Initiating quick scan'),(22778,1591528416.060346,1,'info','-------------------'),(22779,1591528416.075361,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 30 MB'),(22780,1591528416.083995,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22783,1591614841.914810,1,'info','Initiating quick scan'),(22788,1591614842.139952,1,'info','-------------------'),(22789,1591614842.153902,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(22790,1591614842.160956,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22792,1591657401.828506,1,'info','Scheduled Wordfence scan starting at Monday 8th of June 2020 11:03:21 PM'),(22794,1591657403.797900,1,'info','Contacting Wordfence to initiate scan'),(22799,1591657407.621773,2,'info','Total disk space: 239.66 GB -- Free disk space: 30.75 GB'),(22800,1591657407.634614,2,'info','The disk has 31486.21 MB available'),(22807,1591657408.507278,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22809,1591657408.535832,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22811,1591700980.021442,1,'info','Initiating quick scan'),(22816,1591700980.128835,1,'info','-------------------'),(22817,1591700980.135461,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(22818,1591700980.138556,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22821,1591787937.989415,1,'info','Initiating quick scan'),(22826,1591787938.111963,1,'info','-------------------'),(22827,1591787938.123152,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 52 MB'),(22828,1591787938.128212,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22831,1591874434.932997,1,'info','Initiating quick scan'),(22836,1591874435.053795,1,'info','-------------------'),(22837,1591874435.059926,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(22838,1591874435.063529,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22840,1591916452.407165,1,'info','Scheduled Wordfence scan starting at Thursday 11th of June 2020 11:00:52 PM'),(22842,1591916453.671617,1,'info','Contacting Wordfence to initiate scan'),(22847,1591916456.089024,2,'info','Total disk space: 239.66 GB -- Free disk space: 28.89 GB'),(22848,1591916456.092637,2,'info','The disk has 29582.79 MB available'),(22855,1591916456.484514,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22857,1591916456.490950,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22859,1591960150.580704,1,'info','Initiating quick scan'),(22864,1591960150.743990,1,'info','-------------------'),(22865,1591960150.753113,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 30 MB'),(22866,1591960150.757316,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22869,1592046945.639177,1,'info','Initiating quick scan'),(22874,1592046945.837721,1,'info','-------------------'),(22875,1592046945.846296,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(22876,1592046945.850175,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22879,1592133160.092580,1,'info','Initiating quick scan'),(22884,1592133160.281392,1,'info','-------------------'),(22885,1592133160.293110,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(22886,1592133160.299734,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22888,1592175629.370812,1,'info','Scheduled Wordfence scan starting at Sunday 14th of June 2020 11:00:29 PM'),(22890,1592175631.599896,1,'info','Contacting Wordfence to initiate scan'),(22895,1592175634.065174,2,'info','Total disk space: 239.66 GB -- Free disk space: 28.12 GB'),(22896,1592175634.070612,2,'info','The disk has 28793.47 MB available'),(22903,1592175634.577603,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22905,1592175634.598292,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22907,1592219656.460859,1,'info','Initiating quick scan'),(22912,1592219656.655446,1,'info','-------------------'),(22913,1592219656.666526,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(22914,1592219656.672251,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22917,1592305966.482250,1,'info','Initiating quick scan'),(22922,1592305967.336186,1,'info','-------------------'),(22923,1592305967.380186,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(22924,1592305967.416493,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22927,1592392246.637154,1,'info','Initiating quick scan'),(22932,1592392247.245181,1,'info','-------------------'),(22933,1592392247.264878,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(22934,1592392247.280588,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22936,1592434962.215758,1,'info','Scheduled Wordfence scan starting at Wednesday 17th of June 2020 11:02:42 PM'),(22938,1592434963.575376,1,'info','Contacting Wordfence to initiate scan'),(22943,1592434967.568479,2,'info','Total disk space: 239.66 GB -- Free disk space: 26.02 GB'),(22944,1592434967.575010,2,'info','The disk has 26645.97 MB available'),(22951,1592434968.124838,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(22953,1592434968.146955,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(22955,1592478951.690448,1,'info','Initiating quick scan'),(22960,1592478951.817045,1,'info','-------------------'),(22961,1592478951.824727,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(22962,1592478951.829333,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22965,1592565488.457483,1,'info','Initiating quick scan'),(22970,1592565488.767543,1,'info','-------------------'),(22971,1592565488.801438,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(22972,1592565488.810685,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22975,1592651434.931503,1,'info','Initiating quick scan'),(22980,1592651435.090631,1,'info','-------------------'),(22981,1592651435.107775,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(22982,1592651435.113260,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22984,1592694349.377589,1,'info','Scheduled Wordfence scan starting at Saturday 20th of June 2020 11:05:49 PM'),(22986,1592694350.846041,1,'info','Contacting Wordfence to initiate scan'),(22991,1592694353.260597,2,'info','Total disk space: 239.66 GB -- Free disk space: 23.35 GB'),(22992,1592694353.266424,2,'info','The disk has 23914.75 MB available'),(22999,1592694353.710662,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23001,1592694353.727299,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23003,1592737882.634287,1,'info','Initiating quick scan'),(23008,1592737882.742845,1,'info','-------------------'),(23009,1592737882.748451,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 30 MB'),(23010,1592737882.750871,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23013,1592825354.826335,1,'info','Initiating quick scan'),(23018,1592825355.215705,1,'info','-------------------'),(23019,1592825355.230362,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(23020,1592825355.235358,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23023,1592910953.729111,1,'info','Initiating quick scan'),(23028,1592910954.450279,1,'info','-------------------'),(23029,1592910954.470618,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23030,1592910954.481608,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23032,1592953508.995010,1,'info','Scheduled Wordfence scan starting at Tuesday 23rd of June 2020 11:05:08 PM'),(23034,1592953510.658084,1,'info','Contacting Wordfence to initiate scan'),(23039,1592953513.132139,2,'info','Total disk space: 239.66 GB -- Free disk space: 21.75 GB'),(23040,1592953513.139573,2,'info','The disk has 22276.78 MB available'),(23047,1592953513.691435,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23049,1592953513.701873,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23051,1592997050.918828,1,'info','Initiating quick scan'),(23056,1592997051.086171,1,'info','-------------------'),(23057,1592997051.100105,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23058,1592997051.106109,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23061,1593083352.180495,1,'info','Initiating quick scan'),(23066,1593083352.372093,1,'info','-------------------'),(23067,1593083352.387071,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(23068,1593083352.395770,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23071,1593170503.546139,1,'info','Initiating quick scan'),(23076,1593170503.862226,1,'info','-------------------'),(23077,1593170503.877765,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 24 MB'),(23078,1593170503.887891,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23080,1593212463.429580,1,'info','Scheduled Wordfence scan starting at Friday 26th of June 2020 11:01:03 PM'),(23082,1593212464.893795,1,'info','Contacting Wordfence to initiate scan'),(23087,1593212468.403333,2,'info','Total disk space: 239.66 GB -- Free disk space: 20.62 GB'),(23088,1593212468.407841,2,'info','The disk has 21109.86 MB available'),(23095,1593212468.867225,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23097,1593212468.880224,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23099,1593256774.097583,1,'info','Initiating quick scan'),(23104,1593256774.241628,1,'info','-------------------'),(23105,1593256774.248001,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23106,1593256774.251227,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23109,1593342678.418897,1,'info','Initiating quick scan'),(23114,1593342678.569124,1,'info','-------------------'),(23115,1593342678.580242,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23116,1593342678.585429,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23119,1593427049.849758,1,'info','Initiating quick scan'),(23124,1593427050.030056,1,'info','-------------------'),(23125,1593427050.047277,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(23126,1593427050.053678,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23128,1593471677.976039,1,'info','Scheduled Wordfence scan starting at Monday 29th of June 2020 11:01:17 PM'),(23130,1593471679.401309,1,'info','Contacting Wordfence to initiate scan'),(23135,1593471681.810206,2,'info','Total disk space: 239.66 GB -- Free disk space: 18.87 GB'),(23136,1593471681.820499,2,'info','The disk has 19323.61 MB available'),(23143,1593471682.324299,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23145,1593471682.346019,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23147,1593513670.236314,1,'info','Initiating quick scan'),(23152,1593513670.413866,1,'info','-------------------'),(23153,1593513670.421494,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23154,1593513670.425724,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23157,1593599911.252978,1,'info','Initiating quick scan'),(23162,1593599911.414455,1,'info','-------------------'),(23163,1593599911.429518,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 26 MB'),(23164,1593599911.439417,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23167,1593686689.636179,1,'info','Initiating quick scan'),(23172,1593686689.798071,1,'info','-------------------'),(23173,1593686689.807652,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23174,1593686689.812048,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23176,1593730834.324191,1,'info','Scheduled Wordfence scan starting at Thursday 2nd of July 2020 11:00:34 PM'),(23178,1593730836.364489,1,'info','Contacting Wordfence to initiate scan'),(23183,1593730839.062015,2,'info','Total disk space: 239.66 GB -- Free disk space: 16.39 GB'),(23184,1593730839.070384,2,'info','The disk has 16783.77 MB available'),(23191,1593730839.936389,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23193,1593730839.974081,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23195,1593772706.535136,1,'info','Initiating quick scan'),(23200,1593772706.714713,1,'info','-------------------'),(23201,1593772706.726614,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23202,1593772706.732674,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23205,1593859113.582914,1,'info','Initiating quick scan'),(23210,1593859113.753755,1,'info','-------------------'),(23211,1593859113.762730,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(23212,1593859113.768097,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23215,1593946001.158135,1,'info','Initiating quick scan'),(23220,1593946001.323042,1,'info','-------------------'),(23221,1593946001.333405,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23222,1593946001.337936,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23224,1593990329.316872,1,'info','Scheduled Wordfence scan starting at Sunday 5th of July 2020 11:05:29 PM'),(23226,1593990330.603588,1,'info','Contacting Wordfence to initiate scan'),(23231,1593990333.976451,2,'info','Total disk space: 239.66 GB -- Free disk space: 15.24 GB'),(23232,1593990333.981775,2,'info','The disk has 15603.7 MB available'),(23239,1593990334.492064,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23241,1593990334.504328,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23243,1594032172.417417,1,'info','Initiating quick scan'),(23248,1594032172.643007,1,'info','-------------------'),(23249,1594032172.654880,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23250,1594032172.663576,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23253,1594118254.394457,1,'info','Initiating quick scan'),(23258,1594118254.582030,1,'info','-------------------'),(23259,1594118254.593421,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(23260,1594118254.599292,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23263,1594204675.489301,1,'info','Initiating quick scan'),(23268,1594204676.582986,1,'info','-------------------'),(23269,1594204676.634036,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(23270,1594204676.645398,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23272,1594249798.949873,1,'info','Scheduled Wordfence scan starting at Wednesday 8th of July 2020 11:09:58 PM'),(23274,1594249800.288894,1,'info','Contacting Wordfence to initiate scan'),(23279,1594249802.683963,2,'info','Total disk space: 239.66 GB -- Free disk space: 13.46 GB'),(23280,1594249802.690020,2,'info','The disk has 13782.43 MB available'),(23287,1594249803.211274,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23289,1594249803.246728,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23291,1594291592.936311,1,'info','Initiating quick scan'),(23296,1594291593.742102,1,'info','-------------------'),(23297,1594291593.772339,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 28 MB'),(23298,1594291593.793805,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23301,1594377497.977956,1,'info','Initiating quick scan'),(23306,1594377498.132509,1,'info','-------------------'),(23307,1594377498.139400,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23308,1594377498.142708,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23311,1594463857.703630,1,'info','Initiating quick scan'),(23316,1594463857.935051,1,'info','-------------------'),(23317,1594463857.953729,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23318,1594463857.962643,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23320,1594509396.375493,1,'info','Scheduled Wordfence scan starting at Saturday 11th of July 2020 11:16:36 PM'),(23322,1594509397.674097,1,'info','Contacting Wordfence to initiate scan'),(23327,1594509400.083381,2,'info','Total disk space: 239.66 GB -- Free disk space: 5.84 GB'),(23328,1594509400.089931,2,'info','The disk has 5975.73 MB available'),(23335,1594509400.818044,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23337,1594509400.853965,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23339,1594550980.878451,1,'info','Initiating quick scan'),(23341,1594550980.898019,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23342,1594550980.973560,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23343,1594550981.098301,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23344,1594550981.108050,1,'info','-------------------'),(23345,1594550981.116701,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23346,1594550981.120742,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23347,1594550981.124456,10,'info','SUM_FINAL:Scan complete. You have 12 new issues to fix. See below.'),(23348,1594636654.779243,10,'info','SUM_PREP:Preparing a new scan.'),(23349,1594636654.794497,1,'info','Initiating quick scan'),(23350,1594636654.809698,10,'info','SUM_START:Checking Web Application Firewall status'),(23351,1594636654.816648,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23352,1594636654.849983,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23353,1594636655.022559,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23354,1594636655.043207,1,'info','-------------------'),(23355,1594636655.058111,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(23356,1594636655.065539,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23357,1594636655.072073,10,'info','SUM_FINAL:Scan complete. You have 12 new issues to fix. See below.'),(23358,1594723089.880993,10,'info','SUM_PREP:Preparing a new scan.'),(23359,1594723089.894906,1,'info','Initiating quick scan'),(23360,1594723089.908943,10,'info','SUM_START:Checking Web Application Firewall status'),(23361,1594723089.914117,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23362,1594723089.930161,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23363,1594723090.060624,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23364,1594723090.072864,1,'info','-------------------'),(23365,1594723090.082698,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(23366,1594723090.086883,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23367,1594723090.090953,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23368,1594767837.021491,1,'info','Scheduled Wordfence scan starting at Tuesday 14th of July 2020 11:03:57 PM'),(23369,1594767838.647807,10,'info','SUM_PREP:Preparing a new scan.'),(23370,1594767838.694426,1,'info','Contacting Wordfence to initiate scan'),(23371,1594767839.078408,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23372,1594767841.149651,10,'info','SUM_START:Checking for the most secure way to get IPs'),(23373,1594767842.361439,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23374,1594767842.410202,10,'info','SUM_START:Scanning to check available disk space'),(23375,1594767842.429103,2,'info','Total disk space: 239.66 GB -- Free disk space: 6.89 GB'),(23376,1594767842.438838,2,'info','The disk has 7050.57 MB available'),(23377,1594767842.446776,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23378,1594767842.490052,10,'info','SUM_START:Checking Web Application Firewall status'),(23379,1594767842.556353,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23380,1594767842.622945,10,'info','SUM_START:Checking for future GeoIP support'),(23381,1594767842.640245,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23382,1594767842.677804,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(23383,1594767843.047008,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23384,1594767843.054246,10,'info','SUM_KILLED:Previous scan terminated with an error. See below.'),(23385,1594767843.062668,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23386,1594810038.859438,10,'info','SUM_PREP:Preparing a new scan.'),(23387,1594810038.870270,1,'info','Initiating quick scan'),(23388,1594810038.882281,10,'info','SUM_START:Checking Web Application Firewall status'),(23389,1594810038.886731,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23390,1594810038.910493,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23391,1594810039.091963,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23392,1594810039.107994,1,'info','-------------------'),(23393,1594810039.128469,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(23394,1594810039.139231,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23395,1594810039.149475,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23396,1594895860.968915,10,'info','SUM_PREP:Preparing a new scan.'),(23397,1594895860.980692,1,'info','Initiating quick scan'),(23398,1594895860.993012,10,'info','SUM_START:Checking Web Application Firewall status'),(23399,1594895860.998035,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23400,1594895861.025823,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23401,1594895861.171764,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23402,1594895861.182308,1,'info','-------------------'),(23403,1594895861.191050,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(23404,1594895861.195507,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23405,1594895861.199555,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23406,1594982995.568287,10,'info','SUM_PREP:Preparing a new scan.'),(23407,1594982995.577259,1,'info','Initiating quick scan'),(23408,1594982995.585065,10,'info','SUM_START:Checking Web Application Firewall status'),(23409,1594982995.588275,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23410,1594982995.600690,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23411,1594982995.702770,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23412,1594982995.709734,1,'info','-------------------'),(23413,1594982995.715477,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),(23414,1594982995.718379,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23415,1594982995.721301,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23416,1595026801.872468,1,'info','Scheduled Wordfence scan starting at Friday 17th of July 2020 11:00:01 PM'),(23417,1595026803.241542,10,'info','SUM_PREP:Preparing a new scan.'),(23418,1595026803.266171,1,'info','Contacting Wordfence to initiate scan'),(23419,1595026803.689002,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23420,1595026805.724514,10,'info','SUM_START:Checking for the most secure way to get IPs'),(23421,1595026805.739185,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23422,1595026805.765823,10,'info','SUM_START:Scanning to check available disk space'),(23423,1595026805.780781,2,'info','Total disk space: 239.66 GB -- Free disk space: 18.21 GB'),(23424,1595026805.786180,2,'info','The disk has 18648.03 MB available'),(23425,1595026805.790908,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23426,1595026805.818649,10,'info','SUM_START:Checking Web Application Firewall status'),(23427,1595026805.841302,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23428,1595026806.312265,10,'info','SUM_START:Checking for future GeoIP support'),(23429,1595026806.343770,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23430,1595026806.396084,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(23431,1595026806.848056,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23432,1595026806.860200,10,'info','SUM_KILLED:Previous scan terminated with an error. See below.'),(23433,1595026806.871137,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23434,1595068991.984110,10,'info','SUM_PREP:Preparing a new scan.'),(23435,1595068991.997813,1,'info','Initiating quick scan'),(23436,1595068992.011145,10,'info','SUM_START:Checking Web Application Firewall status'),(23437,1595068992.021580,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23438,1595068992.040865,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23439,1595068992.203571,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23440,1595068992.214909,1,'info','-------------------'),(23441,1595068992.223821,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(23442,1595068992.228359,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23443,1595068992.233672,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23444,1595155097.087488,10,'info','SUM_PREP:Preparing a new scan.'),(23445,1595155097.103053,1,'info','Initiating quick scan'),(23446,1595155097.121340,10,'info','SUM_START:Checking Web Application Firewall status'),(23447,1595155097.132912,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23448,1595155097.172279,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23449,1595155097.331786,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23450,1595155097.348501,1,'info','-------------------'),(23451,1595155097.362635,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23452,1595155097.369820,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23453,1595155097.376979,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23454,1595241856.493365,10,'info','SUM_PREP:Preparing a new scan.'),(23455,1595241856.511563,1,'info','Initiating quick scan'),(23456,1595241856.524939,10,'info','SUM_START:Checking Web Application Firewall status'),(23457,1595241856.530140,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23458,1595241856.548782,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23459,1595241856.667662,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23460,1595241856.683797,1,'info','-------------------'),(23461,1595241856.697228,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20 MB'),(23462,1595241856.702615,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23463,1595241856.707713,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23464,1595286543.196506,1,'info','Scheduled Wordfence scan starting at Monday 20th of July 2020 11:09:03 PM'),(23465,1595286545.086358,10,'info','SUM_PREP:Preparing a new scan.'),(23466,1595286545.122533,1,'info','Contacting Wordfence to initiate scan'),(23467,1595286545.508293,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23468,1595286547.566516,10,'info','SUM_START:Checking for the most secure way to get IPs'),(23469,1595286547.600465,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23470,1595286547.682861,10,'info','SUM_START:Scanning to check available disk space'),(23471,1595286547.725485,2,'info','Total disk space: 239.66 GB -- Free disk space: 10.7 GB'),(23472,1595286547.747685,2,'info','The disk has 10953.59 MB available'),(23473,1595286547.769061,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23474,1595286547.905267,10,'info','SUM_START:Checking Web Application Firewall status'),(23475,1595286547.971033,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23476,1595286548.071308,10,'info','SUM_START:Checking for future GeoIP support'),(23477,1595286548.095077,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23478,1595286548.156812,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(23479,1595286548.756678,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23480,1595286548.764221,10,'info','SUM_KILLED:Previous scan terminated with an error. See below.'),(23481,1595286548.779098,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n'),(23482,1595328149.684489,10,'info','SUM_PREP:Preparing a new scan.'),(23483,1595328149.698353,1,'info','Initiating quick scan'),(23484,1595328149.710084,10,'info','SUM_START:Checking Web Application Firewall status'),(23485,1595328149.714862,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23486,1595328149.731827,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23487,1595328149.924759,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23488,1595328149.938620,1,'info','-------------------'),(23489,1595328149.954058,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 26 MB'),(23490,1595328149.959287,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23491,1595328149.963777,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23492,1595414306.150570,10,'info','SUM_PREP:Preparing a new scan.'),(23493,1595414306.163034,1,'info','Initiating quick scan'),(23494,1595414306.175482,10,'info','SUM_START:Checking Web Application Firewall status'),(23495,1595414306.181120,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23496,1595414306.204989,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23497,1595414306.357517,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23498,1595414306.381506,1,'info','-------------------'),(23499,1595414306.400071,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),(23500,1595414306.413191,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23501,1595414306.423449,10,'info','SUM_FINAL:Scan complete. You have 13 new issues to fix. See below.'),(23502,1595501211.238169,10,'info','SUM_PREP:Preparing a new scan.'),(23503,1595501211.255077,1,'info','Initiating quick scan'),(23504,1595501211.271630,10,'info','SUM_START:Checking Web Application Firewall status'),(23505,1595501211.279001,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23506,1595501211.309906,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23507,1595501211.525369,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23508,1595501211.543081,1,'info','-------------------'),(23509,1595501211.559033,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(23510,1595501211.570991,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23511,1595501211.576685,10,'info','SUM_FINAL:Scan complete. You have 14 new issues to fix. See below.'),(23512,1595545695.734538,1,'info','Scheduled Wordfence scan starting at Thursday 23rd of July 2020 11:08:15 PM'),(23513,1595545697.217983,10,'info','SUM_PREP:Preparing a new scan.'),(23514,1595545697.278165,1,'info','Contacting Wordfence to initiate scan'),(23515,1595545697.622352,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23516,1595545699.679340,10,'info','SUM_START:Checking for the most secure way to get IPs'),(23517,1595545700.795241,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23518,1595545700.831363,10,'info','SUM_START:Scanning to check available disk space'),(23519,1595545700.847862,2,'info','Total disk space: 239.66 GB -- Free disk space: 9.63 GB'),(23520,1595545700.854694,2,'info','The disk has 9862.63 MB available'),(23521,1595545700.861254,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23522,1595545700.894927,10,'info','SUM_START:Checking Web Application Firewall status'),(23523,1595545700.911528,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23524,1595545700.949549,10,'info','SUM_START:Checking for future GeoIP support'),(23525,1595545700.970560,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23526,1595545701.006942,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(23527,1595545701.389779,2,'error','Scan terminated with error: Wordfence could not read the contents of your base WordPress directory. This usually indicates your permissions are so strict that your web server can\'t read your WordPress directory.'),(23528,1595545701.396150,10,'info','SUM_KILLED:Previous scan terminated with an error. See below.'),(23529,1595545701.402835,1,'error','<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/,C:\\__work\\websites\\chicagolandremodeling.com/): Access is denied. (code: 5) in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(C:\\__work\\websites\\chicagolandremodeling.com/): failed to open dir: No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n<br />\n<b>Warning</b>:  scandir(): (errno 2): No such file or directory in <b>C:\\__work\\websites\\chicagolandremodeling.com\\wp-content\\plugins\\wordfence\\lib\\wfScanEngine.php</b> on line <b>800</b><br />\n');
/*!40000 ALTER TABLE `wp_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wftrafficrates`
--

DROP TABLE IF EXISTS `wp_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wftrafficrates`
--

LOCK TABLES `wp_wftrafficrates` WRITE;
/*!40000 ALTER TABLE `wp_wftrafficrates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wftrafficrates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wr_contactform_fields`
--

DROP TABLE IF EXISTS `wp_wr_contactform_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wr_contactform_fields` (
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `field_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_instructions` text COLLATE utf8mb4_unicode_ci,
  `field_position` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_ordering` int(10) unsigned NOT NULL DEFAULT '0',
  `field_settings` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`field_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wr_contactform_fields`
--

LOCK TABLES `wp_wr_contactform_fields` WRITE;
/*!40000 ALTER TABLE `wp_wr_contactform_fields` DISABLE KEYS */;
INSERT INTO `wp_wr_contactform_fields` VALUES (3,799,'email','email','','','left',1,'{\"id\":\"3\",\"identify\":\"email\",\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"Email\",\"customClass\":\"\",\"valueConfirm\":\"\",\"identify\":\"email\"},\"type\":\"email\",\"position\":\"left\"}'),(4,799,'paragraph-text','message','','','left',3,'{\"id\":\"4\",\"identify\":\"message\",\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"6\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"Message\",\"customClass\":\"\",\"identify\":\"message\"},\"type\":\"paragraph-text\",\"position\":\"left\"}'),(5,799,'single-line-text','single_line_text_16136509717_24_40','','','left',0,'{\"id\":\"5\",\"identify\":\"single_line_text_16136509717_24_40\",\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"Name\",\"identify\":\"single_line_text_16136509717_24_40\",\"customClass\":\"\"},\"type\":\"single-line-text\",\"position\":\"left\"}'),(6,799,'single-line-text','single_line_text_77489715017_26_4','','','left',2,'{\"id\":\"6\",\"identify\":\"single_line_text_77489715017_26_4\",\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":\"1\",\"limitMin\":\"20\",\"limitMax\":\"0\",\"limitType\":\"Characters\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"Phone\",\"identify\":\"single_line_text_77489715017_26_4\",\"customClass\":\"\"},\"type\":\"single-line-text\",\"position\":\"left\"}');
/*!40000 ALTER TABLE `wp_wr_contactform_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wr_contactform_form_pages`
--

DROP TABLE IF EXISTS `wp_wr_contactform_form_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wr_contactform_form_pages` (
  `page_id` int(11) NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_id` int(11) NOT NULL,
  `page_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_template` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_container` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`page_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wr_contactform_form_pages`
--

LOCK TABLES `wp_wr_contactform_form_pages` WRITE;
/*!40000 ALTER TABLE `wp_wr_contactform_form_pages` DISABLE KEYS */;
INSERT INTO `wp_wr_contactform_form_pages` VALUES (1,'Page 1',799,'[{\"id\":\"5\",\"type\":\"single-line-text\",\"position\":\"left\",\"identify\":\"single_line_text_16136509717_24_40\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"Name\",\"identify\":\"single_line_text_16136509717_24_40\",\"customClass\":\"\"}},{\"id\":\"3\",\"type\":\"email\",\"position\":\"left\",\"identify\":\"email\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"Email\",\"customClass\":\"\",\"valueConfirm\":\"\",\"identify\":\"email\"}},{\"id\":\"6\",\"type\":\"single-line-text\",\"position\":\"left\",\"identify\":\"single_line_text_77489715017_26_4\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":\"1\",\"limitMin\":\"20\",\"limitMax\":\"0\",\"limitType\":\"Characters\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"Phone\",\"identify\":\"single_line_text_77489715017_26_4\",\"customClass\":\"\"}},{\"id\":\"4\",\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"message\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"6\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"Message\",\"customClass\":\"\",\"identify\":\"message\"}}]','','[[{\"columnName\":\"left\",\"columnClass\":\"span12\"}]]');
/*!40000 ALTER TABLE `wp_wr_contactform_form_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wr_contactform_submission_data`
--

DROP TABLE IF EXISTS `wp_wr_contactform_submission_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wr_contactform_submission_data` (
  `submission_data_id` int(11) NOT NULL AUTO_INCREMENT,
  `submission_id` int(11) NOT NULL,
  `form_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `field_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `submission_data_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`submission_data_id`),
  KEY `submission_data_id` (`submission_data_id`),
  KEY `submission_id` (`submission_id`),
  KEY `form_id` (`form_id`),
  KEY `field_id` (`field_id`)
) ENGINE=InnoDB AUTO_INCREMENT=400 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wr_contactform_submission_data`
--

LOCK TABLES `wp_wr_contactform_submission_data` WRITE;
/*!40000 ALTER TABLE `wp_wr_contactform_submission_data` DISABLE KEYS */;
INSERT INTO `wp_wr_contactform_submission_data` VALUES (1,805,799,0,'os','Windows'),(2,805,799,0,'browser','Chrome'),(3,805,799,0,'ip','89.71.229.79'),(4,805,799,5,'single-line-text','Kacper'),(5,805,799,3,'email','kacper@infosystrade.com'),(6,805,799,6,'single-line-text','773279545'),(7,805,799,4,'paragraph-text','test message\r\n'),(8,806,799,0,'os','Windows'),(9,806,799,0,'browser','Chrome'),(10,806,799,0,'ip','89.71.229.79'),(11,806,799,5,'single-line-text','Kacper'),(12,806,799,3,'email','kacper@strony123.com'),(13,806,799,6,'single-line-text','7732795975'),(14,806,799,4,'paragraph-text','Official test of a quick quote on the site. Please reply to: kacper@strony123.com if you received this message'),(15,807,799,0,'os','Windows'),(16,807,799,0,'browser','Chrome'),(17,807,799,0,'ip','194.146.131.132'),(18,807,799,5,'single-line-text','test'),(19,807,799,3,'email','test@wp.pl'),(20,807,799,6,'single-line-text','32322'),(21,807,799,4,'paragraph-text','dsdasasdadas'),(22,821,799,0,'os','Apple'),(23,821,799,0,'browser','Chrome'),(24,821,799,0,'ip','24.13.87.153'),(25,821,799,5,'single-line-text','Chris Cacci'),(26,821,799,3,'email','ccacci60@gmail.com'),(27,821,799,6,'single-line-text','917-545-5915'),(28,821,799,4,'paragraph-text','I am a condo owner in Evanston, IL. I would like to replace my wood and carpet with porcelain tile. I am in the process of getting estimates. Please contact me at your earliest convenience.'),(29,823,799,0,'os','Windows'),(30,823,799,0,'browser','Chrome'),(31,823,799,0,'ip','182.73.111.14'),(32,823,799,5,'single-line-text','Billy Turner'),(33,823,799,3,'email','info@itbent.com'),(34,823,799,6,'single-line-text','783-859-5894'),(35,823,799,4,'paragraph-text','Hi,\r\n\r\nIf you are looking to reach a higher position in Google Rankings, give us a chance to assist you with the best Organic Ranking services only @ $99/Month.\r\nWe also offer Web Design services starting @ $299 only.\r\n\r\nTo explore more about our services, please feel free to visit us at www.itbent.com\r\n\r\nThanks &amp; Regards\r\nBilly\r\n7838595894 | Skype: IT.BENT'),(36,826,799,0,'os','Windows'),(37,826,799,0,'browser','Chrome'),(38,826,799,0,'ip','212.106.0.245'),(39,826,799,5,'single-line-text','test'),(40,826,799,3,'email','test@test.pl'),(41,826,799,6,'single-line-text','123123123'),(42,826,799,4,'paragraph-text','sdgdsg'),(43,888,799,0,'os','Windows'),(44,888,799,0,'browser','Chrome'),(45,888,799,0,'ip','194.146.131.132'),(46,888,799,5,'single-line-text','test'),(47,888,799,3,'email','pawiust@gmail.com'),(48,888,799,6,'single-line-text','3233232'),(49,888,799,4,'paragraph-text','test'),(50,892,799,0,'os','Windows'),(51,892,799,0,'browser','Chrome'),(52,892,799,0,'ip','89.71.229.79'),(53,892,799,5,'single-line-text','Kacper'),(54,892,799,3,'email','kacper@strony123.com'),(55,892,799,6,'single-line-text','7732795418'),(56,892,799,4,'paragraph-text','test message, do not reply'),(57,902,799,0,'os','Windows'),(58,902,799,0,'browser','Chrome'),(59,902,799,0,'ip','73.75.32.53'),(60,902,799,5,'single-line-text','JoAnn Ross-Tucker'),(61,902,799,3,'email','joannrosstucker@yahoo.com'),(62,902,799,6,'single-line-text','3123885743'),(63,902,799,4,'paragraph-text','Hello:  I am remodeling a home and required estimates for a replacement of staircase - City of Chicago code.  And possibly completing two bathrooms after my HVAC contractor is finished. Thank you,\r\n\r\nJoAnn'),(64,903,799,0,'os','Windows'),(65,903,799,0,'browser','Chrome'),(66,903,799,0,'ip','134.249.51.228'),(67,903,799,5,'single-line-text',''),(68,903,799,3,'email','jiutregoupj@yandex.com'),(69,903,799,6,'single-line-text',''),(70,903,799,4,'paragraph-text','pz3280 kl1168 &lt;a href=http://viagrafromcanada.men&gt;cheap viagra pill&lt;/a&gt; xd8357 '),(71,904,799,0,'os','Windows'),(72,904,799,0,'browser','Chrome'),(73,904,799,0,'ip','134.249.51.228'),(74,904,799,5,'single-line-text',''),(75,904,799,3,'email','jiutregoupj@yandex.com'),(76,904,799,6,'single-line-text',''),(77,904,799,4,'paragraph-text','bw2223yb9143 &lt;a href=&quot; http://paydayloansonline.men &quot;&gt;payday loan online&lt;/a&gt; zk5278bd1522wo6412 '),(78,908,799,0,'os','Windows'),(79,908,799,0,'browser','Firefox'),(80,908,799,0,'ip','134.249.51.228'),(81,908,799,5,'single-line-text',''),(82,908,799,3,'email','jiutriopsupj@yandex.com'),(83,908,799,6,'single-line-text',''),(84,908,799,4,'paragraph-text','fa9416 http://viagra-rx-online.com viagra effect on women ly7038tq817qm3883 rd9459qr3810'),(85,909,799,0,'os','Windows'),(86,909,799,0,'browser','Chrome'),(87,909,799,0,'ip','134.249.141.24'),(88,909,799,5,'single-line-text',''),(89,909,799,3,'email','uiporuebcvi@yandex.com'),(90,909,799,6,'single-line-text',''),(91,909,799,4,'paragraph-text','bc263 http://viagra-rx-online.com funny viagra pictures rd3424is9237jc388 th5310oz8764 &lt;a href=http://viagra-rx-online.com&gt;100 mg Viagra Cost&lt;/a&gt; hz262jv9941bz9139 us2403ui8477 &lt;a href=&quot; http://viagra-rx-online.com &quot;&gt;Buy Viagra&lt;/a&gt; qz838sw5937td5585 mv2825bu6965'),(92,914,799,0,'os','Windows'),(93,914,799,0,'browser','Firefox'),(94,914,799,0,'ip','46.118.153.31'),(95,914,799,5,'single-line-text',''),(96,914,799,3,'email','uwuiopisreu@yandex.com'),(97,914,799,6,'single-line-text',''),(98,914,799,4,'paragraph-text','lt4284 &lt;a href=&quot; http://viagra-rx-online.com &quot;&gt;canadian viagra 50mg&lt;/a&gt; zq5398rv1682lb2282 wj3273kt2824'),(99,915,799,0,'os','Windows'),(100,915,799,0,'browser','Chrome'),(101,915,799,0,'ip','134.249.141.24'),(102,915,799,5,'single-line-text',''),(103,915,799,3,'email','uipoussebcvi@yandex.com'),(104,915,799,6,'single-line-text',''),(105,915,799,4,'paragraph-text','ii3233 http://levitra24.pw no rx levitra online er5782ru994 '),(106,916,799,0,'os','Windows'),(107,916,799,0,'browser','Firefox'),(108,916,799,0,'ip','46.118.157.125'),(109,916,799,5,'single-line-text',''),(110,916,799,3,'email','ya6010@havffytf.com'),(111,916,799,6,'single-line-text',''),(112,916,799,4,'paragraph-text','sv5343uy5788 &lt;a href=&quot; http://canadapharmacy24.top &quot;&gt;canada pharmacy&lt;/a&gt; at7886th370tu9566 '),(113,920,799,0,'os','Windows'),(114,920,799,0,'browser','Firefox'),(115,920,799,0,'ip','134.249.51.228'),(116,920,799,5,'single-line-text',''),(117,920,799,3,'email','jiutriopsfspj@yandex.com'),(118,920,799,6,'single-line-text',''),(119,920,799,4,'paragraph-text','wf5068 qp7875 &lt;a href=http://levitra24.pw&gt;buy levitra online&lt;/a&gt; yf9001 hi8298 wb8052 &lt;a href=http://cialis24.top&gt;where to buy cialis in canada&lt;/a&gt; kx1273 jw9017 yy844 &lt;a href=http://paydayloan24.bid&gt;payday loan&lt;/a&gt; hy8192 '),(120,937,799,0,'os','Windows'),(121,937,799,0,'browser','Mozilla'),(122,937,799,0,'ip','73.50.16.146'),(123,937,799,5,'single-line-text','Mario Rangel'),(124,937,799,3,'email','mrangel2424@yahoo.com'),(125,937,799,6,'single-line-text','7732133138'),(126,937,799,4,'paragraph-text','I am interested in a quote to install wallpaper in 2  rooms. '),(127,938,799,0,'os','iPhone'),(128,938,799,0,'browser','iPhone'),(129,938,799,0,'ip','66.87.76.30'),(130,938,799,5,'single-line-text','Michael Means'),(131,938,799,3,'email','mmeans76@yahoo.com'),(132,938,799,6,'single-line-text','708-439-7482'),(133,938,799,4,'paragraph-text','Good morning, I\'m purchasing a home and I\'m using a 203k loan. First wanted to know if you guys comfortable with using 203k loans process?  If so, would like to know if I could set an appointment to get an estimate. The property in located 671 Manistee ave in Calumet City il. I\'m looking to finish the basement and installation of a bathroom. There is currently no bathroom in basement. I don\'t have measurements, but it is a raised ranch. If it could be this week, available between 9-11 am. \r\nMichael Means \r\nmmeans76@yahoo.com\r\n708-439-7482'),(134,951,799,0,'os','Windows'),(135,951,799,0,'browser','Chrome'),(136,951,799,0,'ip','146.236.202.6'),(137,951,799,5,'single-line-text','Scott Orbin'),(138,951,799,3,'email','scott@scottorbin.com'),(139,951,799,6,'single-line-text','847-452-5469'),(140,951,799,4,'paragraph-text','I got your information from Angie\'s List.  I\'m have a house that is a forer two flat in North Center and I need to gut rehab two bathrooms.  Is this something that you could assist with and if so how could I go about setting up an appointment to get an estimate?  I\'d love to get something set up as soon as possible and get started right away too.  Thanks for your help.\r\n\r\nScott Orbin\r\nscott@scottorbin.com\r\n847.452.5469'),(141,978,799,0,'os','Windows'),(142,978,799,0,'browser','Chrome'),(143,978,799,0,'ip','103.220.210.144'),(144,978,799,5,'single-line-text','Luke Mckey'),(145,978,799,3,'email','mckeyluke@gmail.com'),(146,978,799,6,'single-line-text','8420862837'),(147,978,799,4,'paragraph-text','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Word-Press is not installed properly, in the blogs\r\n10. Website Speed Development (Both Mobile and Desktop)\r\nPlease check via Google Developer -\r\nhttps://developers.google.com/speed/pagespeed/ \r\n11. Favicon needs to be changed too.\r\n12. Off &ndash;Page SEO work\r\n \r\nLots are pending&hellip;&hellip;&hellip;&hellip;&hellip;..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search &amp; your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this free advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\n\r\nLuke Mckey\r\n \r\nIf you did not wish to receive this, please reply with &quot;unsubscribe&quot; in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with &quot;unsubscribe&quot; in the subject line and we will take care that you do not receive any further promotional mail.\r\n'),(148,1019,799,0,'os','Apple'),(149,1019,799,0,'browser','Chrome'),(150,1019,799,0,'ip','24.13.34.176'),(151,1019,799,5,'single-line-text','Michelle Carey'),(152,1019,799,3,'email','scarey3033@comcast.net'),(153,1019,799,6,'single-line-text','8472770764'),(154,1019,799,4,'paragraph-text','looking for a quote for some construction work in our kitchen . thank you '),(155,1023,799,0,'os','Windows'),(156,1023,799,0,'browser','Chrome'),(157,1023,799,0,'ip','156.101.9.1'),(158,1023,799,5,'single-line-text','Denise'),(159,1023,799,3,'email','dsegal@wm.com'),(160,1023,799,6,'single-line-text','3126083378'),(161,1023,799,4,'paragraph-text','I am looking to get a quote on remodeling my kitchen\r\n'),(162,1024,799,0,'os','Apple'),(163,1024,799,0,'browser','Chrome'),(164,1024,799,0,'ip','73.22.148.37'),(165,1024,799,5,'single-line-text','Chad Bernstein'),(166,1024,799,3,'email','cdbernstein@gmail.com'),(167,1024,799,6,'single-line-text','7277420144'),(168,1024,799,4,'paragraph-text','I am reaching out to get information, pricing, etc for a flooring issue we are having at our condo. We live in a 3rd floor walk up (gut rehabbed in 2008 but building is approx 80 years old). We have hardwood throughout, carpet in two bedrooms and we have very squeaky floors throughout. After assessing in depth, it appears to be a loose joist issue and likely bad sub-floor/mat installation. The biggest issues are in the bedrooms and are VERY noticeable in terms of volume, but would like to take a look at the hardwood areas as well. \r\n\r\nIs this something your group repairs and fixes? I would be happy to talk on the phone or provide more info via email to help get the process started. '),(169,1025,799,0,'os','iPad'),(170,1025,799,0,'browser','iPad'),(171,1025,799,0,'ip','50.4.141.79'),(172,1025,799,5,'single-line-text','Laura Patterson '),(173,1025,799,3,'email','Lpatter292@aol.com'),(174,1025,799,6,'single-line-text','7734479679'),(175,1025,799,4,'paragraph-text','Looking for quote  for bathroom remodel. '),(176,1026,799,0,'os','Windows'),(177,1026,799,0,'browser','Firefox'),(178,1026,799,0,'ip','110.232.248.242'),(179,1026,799,5,'single-line-text','Max Williams'),(180,1026,799,3,'email','seo2@googlepositions.com'),(181,1026,799,6,'single-line-text','7077060205'),(182,1026,799,4,'paragraph-text','\r\n Hello and good morning\r\n \r\nI am Max Alias Jitesh, Marketing Manager with a reputable online marketing company based in India.\r\n\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\n\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use &quot;link farms&quot; or &quot;black hat&quot; methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less than half of what other companies charge.\r\n\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\n\r\nIn order for us to respond to your request for information, please include your company&rsquo;s website address (mandatory) and or phone number.\r\n\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\n\r\nThanks and Regards\r\nMax Alias Jitesh\r\n\r\n'),(183,1027,799,0,'os','Apple'),(184,1027,799,0,'browser','Safari'),(185,1027,799,0,'ip','198.167.129.10'),(186,1027,799,5,'single-line-text','Warren Lapham'),(187,1027,799,3,'email','warren@lapham.org'),(188,1027,799,6,'single-line-text','3127314941'),(189,1027,799,4,'paragraph-text','I am looking for someone to trim a piece of wooden wall paneling that was removed to install a new electrical panel.  The panel is larger than the one it replaced.  I also need a new wooden door to cover the electrical panel as well as drywall and fiberglass insulation behind the wooden wall paneling.n  Please let me know if you are interested in this work and if you are available soon.  Thank you!'),(190,1092,799,0,'os','Apple'),(191,1092,799,0,'browser','Safari'),(192,1092,799,0,'ip','50.158.31.93'),(193,1092,799,5,'single-line-text','David Korzatkowski'),(194,1092,799,3,'email','korzlove@gmail.com'),(195,1092,799,6,'single-line-text','312-914-6686'),(196,1092,799,4,'paragraph-text','Hi.  We have some work to do on our little townhouse before we sell.  I\'d like to have the roof looked and and see if there is anything wrong.  We also need 1 wall of our basement walls drywalled, and the ceiling needs work - maybe drywalled, too.  '),(197,1096,799,0,'os','Windows'),(198,1096,799,0,'browser','Chrome'),(199,1096,799,0,'ip','73.50.118.76'),(200,1096,799,5,'single-line-text','Aaron DeCamp'),(201,1096,799,3,'email','aaron.decamp@gmail.com'),(202,1096,799,6,'single-line-text','7346572864'),(203,1096,799,4,'paragraph-text','I would like to get a quote on a small bathroom remodel in Lincoln Park.  I would like the project to be completed by May 1.  Please contact me at your earliest convenience. Thank you'),(204,1134,799,0,'os','Windows'),(205,1134,799,0,'browser','Chrome'),(206,1134,799,0,'ip','98.228.36.43'),(207,1134,799,5,'single-line-text','Devorah seem'),(208,1134,799,3,'email','devorahb529@gmail.com'),(209,1134,799,6,'single-line-text','7735764852'),(210,1134,799,4,'paragraph-text','Hi,\r\n\r\nWe have a condo that we want to remodel.  Flooring, Kitchen Remodeling, Bathroom Tile.  We would like to get a Quote.  \r\n\r\nI have availability on Friday, May 4th between 4pm-5pm.  Please let me know if you are available to come by and see what needs to be done and give me a quote.  3900 N Lake Shore Dr. #25B, Chicago, IL 60613\r\n\r\nThank you.\r\n\r\nDevorah Solomon\r\n773-576-4852'),(211,1179,799,0,'os','iPhone'),(212,1179,799,0,'browser','iPhone'),(213,1179,799,0,'ip','172.58.140.212'),(214,1179,799,5,'single-line-text','Brian  Cunningham'),(215,1179,799,3,'email','Bkcunningham@sbcglobal.net'),(216,1179,799,6,'single-line-text','7737873249'),(217,1179,799,4,'paragraph-text','Leak info living room ceiling'),(218,1214,799,0,'os','Android'),(219,1214,799,0,'browser','Chrome'),(220,1214,799,0,'ip','107.77.207.150'),(221,1214,799,5,'single-line-text','Jewel Williams '),(222,1214,799,3,'email','Jewdol3998@att.net'),(223,1214,799,6,'single-line-text','773 -721-3998'),(224,1214,799,4,'paragraph-text','Garage repair estimate '),(225,1215,799,0,'os','Windows'),(226,1215,799,0,'browser','Firefox'),(227,1215,799,0,'ip','108.214.12.37'),(228,1215,799,5,'single-line-text','Aaron Blatt'),(229,1215,799,3,'email','aaronblatt@outlook.com'),(230,1215,799,6,'single-line-text','312-447-1968'),(231,1215,799,4,'paragraph-text','Looking at remodeling kitchen and bathrooms in a Lincoln Park condo.'),(232,1216,799,0,'os','Windows'),(233,1216,799,0,'browser','Chrome'),(234,1216,799,0,'ip','38.142.17.58'),(235,1216,799,5,'single-line-text','Shannon Bultemeier'),(236,1216,799,3,'email','shannon.bultemeier@gmail.com'),(237,1216,799,6,'single-line-text','3123011068'),(238,1216,799,4,'paragraph-text','We are looking to remodel our master bath (priority) as well as our guest bath and kitchen.  We would like to meet with you to receive a quote for services.  Look forward to hearing from you!'),(239,1218,799,0,'os','Apple'),(240,1218,799,0,'browser','Safari'),(241,1218,799,0,'ip','67.103.198.154'),(242,1218,799,5,'single-line-text','Carla Ham'),(243,1218,799,3,'email','CBH737@GMAIL.COM'),(244,1218,799,6,'single-line-text','8472199992'),(245,1218,799,4,'paragraph-text','Looking to remodel master bath, kitchen and create walk-in closet in an 1800 soft loft ASAP! '),(246,1235,799,0,'os','iPhone'),(247,1235,799,0,'browser','iPhone'),(248,1235,799,0,'ip','73.211.213.171'),(249,1235,799,5,'single-line-text','Dan'),(250,1235,799,3,'email','Gambolwiti@yahoo.com'),(251,1235,799,6,'single-line-text','7087534361'),(252,1235,799,4,'paragraph-text','Enclosed patio'),(253,1247,799,0,'os','Windows'),(254,1247,799,0,'browser','Chrome'),(255,1247,799,0,'ip','73.22.70.186'),(256,1247,799,5,'single-line-text','caitlin condon'),(257,1247,799,3,'email','caitlincondon1@gmail.com'),(258,1247,799,6,'single-line-text','6308359244'),(259,1247,799,4,'paragraph-text','Hi! We are looking to add cabinets and counter space to our kitchen. Additionally, we would love to replace our existing counter tops. Thank you! '),(260,1259,799,0,'os','Apple'),(261,1259,799,0,'browser','Firefox'),(262,1259,799,0,'ip','96.92.255.225'),(263,1259,799,5,'single-line-text','Matt Yasecko'),(264,1259,799,3,'email','yasecko@gmail.com'),(265,1259,799,6,'single-line-text','708-421-8017'),(266,1259,799,4,'paragraph-text','We\'d like to get a quote to finish our basement, which is generally unfinished at the moment.  Thanks!'),(267,1260,799,0,'os','Windows'),(268,1260,799,0,'browser','Chrome'),(269,1260,799,0,'ip','24.13.104.29'),(270,1260,799,5,'single-line-text','Juan Morales'),(271,1260,799,3,'email','juanchc@comcast.net'),(272,1260,799,6,'single-line-text','773-814-2158'),(273,1260,799,4,'paragraph-text','basement remodeling'),(274,1315,799,0,'os','Windows'),(275,1315,799,0,'browser','Chrome'),(276,1315,799,0,'ip','165.225.0.77'),(277,1315,799,5,'single-line-text','Maggie Strasbaugh'),(278,1315,799,3,'email','maggie.strasbaugh@gmail.com'),(279,1315,799,6,'single-line-text','419-421-1457'),(280,1315,799,4,'paragraph-text','I recently purchased a 2-bedroom, 1-bath condo in the Lakeview neighborhood of Chicago. I am looking to replace the bathtub, tile surround, and glass doors in my bathroom, re-frame an existing doorway/install a new door in the second bedroom, and potentially re-tile my fireplace surround.\r\n\r\nI would like to schedule an estimate appointment. Please let me know a day/time that is convenient for you and we can move forward from there.'),(281,1319,799,0,'os','Windows'),(282,1319,799,0,'browser','Chrome'),(283,1319,799,0,'ip','73.110.75.96'),(284,1319,799,5,'single-line-text','vitalii kozakevych'),(285,1319,799,3,'email','foryouremodeling@gmail.com'),(286,1319,799,6,'single-line-text','3124839858'),(287,1319,799,4,'paragraph-text','Hello! \r\nIf your company needs subcontractors and you have a lot of work, our crew is looking for a job. If you intrested please reach me out 312 483 9858 - Vitalii. \r\nThank you for your time! Have a great day! \r\n\r\n\r\nCompany name: 4 You Remodeling\r\nAddress: 2241 w Rice st\r\nContact information: phone number - +1 312 483 9858\r\n                     email - foryouremodeling@gmail.com\r\nCrew description: there are three people in our team\r\nOccupation: Kitchen &amp; Bath Remodeling including all works(demolition, framing, plumbing, electrical, wallboard, flooring (except hard wood))\r\nInsuarances: - General Liability; - Workers compensation; - Auto insuarance.\r\n\r\nHere is the link on photos of our work  \r\nhttps://drive.google.com/drive/folders/0B678YS0FY8FjaWtEVEZtWlpkNFE'),(288,1320,799,0,'os','Android'),(289,1320,799,0,'browser','Chrome'),(290,1320,799,0,'ip','107.77.206.117'),(291,1320,799,5,'single-line-text','Monica Harris-Buckley'),(292,1320,799,3,'email','mharris81@att.net'),(293,1320,799,6,'single-line-text','708-453-0210'),(294,1320,799,4,'paragraph-text','I\'d like to obtain a quote for a bathroom remodel. Replacing the tub, tile, toilet, vanity and flooring.'),(295,1326,799,0,'os','Windows'),(296,1326,799,0,'browser','Firefox'),(297,1326,799,0,'ip','73.51.52.249'),(298,1326,799,5,'single-line-text','Peter'),(299,1326,799,3,'email','peterflooring@comcast.net'),(300,1326,799,6,'single-line-text','17734812266'),(301,1326,799,4,'paragraph-text','we are flooring company in the achicagoi area for more than 30 years if you need some subcontractor please call as or email us'),(302,1327,799,0,'os','Windows'),(303,1327,799,0,'browser','Chrome'),(304,1327,799,0,'ip','172.8.60.74'),(305,1327,799,5,'single-line-text','Sylvia'),(306,1327,799,3,'email','jhernandez050711@icloud.com'),(307,1327,799,6,'single-line-text','708-724-0036'),(308,1327,799,4,'paragraph-text','Would like my whole basement remolded. '),(309,1341,799,0,'os','Windows'),(310,1341,799,0,'browser','Chrome'),(311,1341,799,0,'ip','167.115.15.2'),(312,1341,799,5,'single-line-text','ed salazar'),(313,1341,799,3,'email','edsal4@hotmail.com'),(314,1341,799,6,'single-line-text','7082283536'),(315,1341,799,4,'paragraph-text','i would like to get a quote on remodeling a bathroom on the second floor. I live in Elmwood Park.'),(316,1342,799,0,'os','Windows'),(317,1342,799,0,'browser','Chrome'),(318,1342,799,0,'ip','74.93.65.13'),(319,1342,799,5,'single-line-text','Emily Hendel'),(320,1342,799,3,'email','emilyhendel77@gmail.com'),(321,1342,799,6,'single-line-text','3124027148'),(322,1342,799,4,'paragraph-text','We are looking to rehab the attic on our three story home in Little Village.  Here\'s the work we\'d like to do:\r\nBasic:\r\n1.	Kneeling walls with at least 4 sliding door openings on each side of attic\r\n2.	Wire existing outlets and add one more outlet on each side of attic plus an additional 25 amp at front of house to handle AC unit (Wire outlets to a separate breaker, not to an existing breaker)\r\n3.	Drywall, taping, and mudding of entire attic\r\n4.	Install subfloor\r\n5.	Remove upright pipe that is no longer being used\r\n6.	Reposition chimney braces and drywall around chimney\r\n7.	Reposition beam on stairwell to increase overhead clearance &ndash; must keep wide enough to move furniture in and out\r\n8.	Install half wall by stairwell &ndash; framed with drywall\r\n9.	Install two overhead light fixtures with a switch at the bottom of the stairs\r\n\r\nAdditional work depending on cost:\r\n1.	Install compact stairway or pull down attic ship ladder at front of attic to allow for two exits\r\n2.	Remove chimney and redo venting\r\n3.	Installation of a half-bath (longer term vision)\r\n'),(323,1343,799,0,'os','Apple'),(324,1343,799,0,'browser','Chrome'),(325,1343,799,0,'ip','73.36.162.252'),(326,1343,799,5,'single-line-text','Thomas C Conlon'),(327,1343,799,3,'email','tcconlon@gmail.com'),(328,1343,799,6,'single-line-text','3124809363'),(329,1343,799,4,'paragraph-text','I would like to finish a loft style bedroom. I would need to complete the walls and add a door. I would need about 20 feet (length), 4 feet (height) of sheetrock or paneling, and a door. '),(330,1344,799,0,'os','Windows'),(331,1344,799,0,'browser','Chrome'),(332,1344,799,0,'ip','173.165.39.185'),(333,1344,799,5,'single-line-text','Elizabeth Dykstra'),(334,1344,799,3,'email','betsygiggles@gmail.com'),(335,1344,799,6,'single-line-text','3128480690'),(336,1344,799,4,'paragraph-text','We are interested in remodeling a 6\'x6\' downstairs bath in a traditional Chicago-style bungalow.'),(337,1350,799,0,'os','Apple'),(338,1350,799,0,'browser','Chrome'),(339,1350,799,0,'ip','108.90.245.111'),(340,1350,799,5,'single-line-text','Eboni Howard'),(341,1350,799,3,'email','eboni.howard@gmail.com'),(342,1350,799,6,'single-line-text','312-502-6826'),(343,1350,799,4,'paragraph-text','Estimate to build a mortar shower base, 30&quot; W x 58&quot; L. I had a plumber build a new basement bathroom, with shower. He ended when he put in the shower liner. I am working with contractors that will finish the bathroom (tile, paint, fixtures). However, it appears I have a gap in contractors regarding who builds the mortar shower pan. The plumber tells me (after he was done with the job) a tiler setter builds the shower pan with mortar.  My other contractors can tile, put only used pre-formed shower bases and does not build a mortar has not built a cement shower pan. \r\nCan you please let me know if building a shower base with concrete is a service you provide? Thank you.'),(344,1351,799,0,'os','Apple'),(345,1351,799,0,'browser','Chrome'),(346,1351,799,0,'ip','67.162.109.132'),(347,1351,799,5,'single-line-text','Erica Molina'),(348,1351,799,3,'email','airlynn266@gmail.com'),(349,1351,799,6,'single-line-text','7735903841'),(350,1351,799,4,'paragraph-text','Would like to get a quote for remodeling our kitchen, 2 bathrooms, laundry room and some electrical work.'),(351,1352,799,0,'os','Apple'),(352,1352,799,0,'browser','Firefox'),(353,1352,799,0,'ip','73.74.56.249'),(354,1352,799,5,'single-line-text','Elise La Pierre'),(355,1352,799,3,'email','eliseplapierre@gmail.com'),(356,1352,799,6,'single-line-text','6303443739'),(357,1352,799,4,'paragraph-text','Hello,\r\nI am interested in getting an estimate for dry walling my laundry room. Some framing work will also be needed. I am available on Thursday/Friday/Saturday of this week as well as next Monday or Tuesday for someone to come by and provide an estimate.\r\n\r\nThank you,\r\nElise'),(358,1363,799,0,'os','Apple'),(359,1363,799,0,'browser','Chrome'),(360,1363,799,0,'ip','205.178.114.75'),(361,1363,799,5,'single-line-text','Haley Meadow'),(362,1363,799,3,'email','alcoveimages@gmail.com'),(363,1363,799,6,'single-line-text','8479247122'),(364,1363,799,4,'paragraph-text','Hello!\r\n\r\nMy name is Haley Meadow and I am an Architectural and Interior Design Photographer in the Chicagoland area. I wanted to reach out to you today so that we can get acquainted and to pretty much let you know that I exist : ). To view samples of my work please visit alcoveimages.com Please let me know if I could ever be of help in your high-end marketable photography needs.\r\n\r\n\r\nThank you for your time,\r\n\r\n​Haley Meadow\r\nArchitectural and Interior Design Photographer\r\n\r\nalcoveimages.com\r\n\r\nalcoveimages@gmail.com\r\n\r\n847-924-7122'),(365,1365,799,0,'os','Android'),(366,1365,799,0,'browser','Chrome'),(367,1365,799,0,'ip','99.203.143.19'),(368,1365,799,5,'single-line-text','Shineka Terrell-Green '),(369,1365,799,3,'email','Treboyz@ymail.com'),(370,1365,799,6,'single-line-text','7087056042'),(371,1365,799,4,'paragraph-text',''),(372,1368,799,0,'os','iPhone'),(373,1368,799,0,'browser','iPhone'),(374,1368,799,0,'ip','107.77.209.210'),(375,1368,799,5,'single-line-text','Alex Curtis'),(376,1368,799,3,'email','achriscurtis@gmail.com'),(377,1368,799,6,'single-line-text','13176276619'),(378,1368,799,4,'paragraph-text','I would like to get a quote for a remodel of a bathroom'),(379,1372,799,0,'os','iPhone'),(380,1372,799,0,'browser','iPhone'),(381,1372,799,0,'ip','23.122.56.66'),(382,1372,799,5,'single-line-text','Rae Sunderman'),(383,1372,799,3,'email','raesunderman@gmail.com'),(384,1372,799,6,'single-line-text','847-710-3564'),(385,1372,799,4,'paragraph-text','Hello, we are looking at remodeling the two bathrooms in our home. We plan to keep them structurally the same and keep parts like the toilets, vanity and sink but want to retile the floors / showers, new glass doors, painting (walls and vanity in one bathroom), new counter top / window sill, and some other minor repairs to dry wall and a fan.\r\nAdditionally we have some wood damage on a stair and our front door / wood around the enterance that needs to be repaired and repainted.'),(386,1373,799,0,'os','iPhone'),(387,1373,799,0,'browser','iPhone'),(388,1373,799,0,'ip','23.122.56.66'),(389,1373,799,5,'single-line-text','Rae Sunderman'),(390,1373,799,3,'email','raesunderman@gmail.com'),(391,1373,799,6,'single-line-text','847-710-3564'),(392,1373,799,4,'paragraph-text','Hello, we are looking at remodeling the two bathrooms in our home. We plan to keep them structurally the same and keep parts like the toilets, vanity and sink but want to retile the floors / showers, new glass doors, painting (walls and vanity in one bathroom), new counter top / window sill, and some other minor repairs to dry wall and a fan.\r\nAdditionally we have some wood damage on a stair and our front door / wood around the enterance that needs to be repaired and repainted.'),(393,1380,799,0,'os','Apple'),(394,1380,799,0,'browser','Chrome'),(395,1380,799,0,'ip','24.136.25.66'),(396,1380,799,5,'single-line-text','monica urda'),(397,1380,799,3,'email','monica.urda@gmail.com'),(398,1380,799,6,'single-line-text','2245779062'),(399,1380,799,4,'paragraph-text','interested in remodeling vintage bathroom.');
/*!40000 ALTER TABLE `wp_wr_contactform_submission_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`)
) ENGINE=InnoDB AUTO_INCREMENT=357 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://chicagolandremodeling.com/author/admin/','47:c29356dacd420385f7c38ce22d6661c3',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/8b7a1e6db28416e85c912bb0950ce634?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/8b7a1e6db28416e85c912bb0950ce634?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-26 11:09:04','2021-02-05 00:56:21',1,NULL,NULL,NULL,NULL,0,NULL),(2,'https://chicagolandremodeling.com/','34:84ba442fc25eace24fbffec1ef0075d8',8,'post','page',1,0,'Home',NULL,'Home','publish',NULL,0,NULL,NULL,NULL,'remodeling contractors chicago',50,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg',NULL,'first-content-image',NULL,9,0,NULL,'2020-05-26 11:09:04','2021-02-04 00:35:41',1,NULL,NULL,NULL,NULL,0,10),(3,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg','78:052cd0400b65c50607da9006fdd7bc9f',1230,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg',NULL,'1230','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg','1230','attachment-image','{\"width\":225,\"height\":225,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/07\\/quality-badge.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/07\\/quality-badge.jpg\",\"size\":\"full\",\"id\":1230,\"alt\":\"quality badge logo\",\"pixels\":50625,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-26 11:09:04','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,0,NULL),(4,'https://chicagolandremodeling.com/gallery/','42:978f83499e79cabc88a2ed30ca36e4f9',910,'post','page',1,0,'Gallery',NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-26 11:38:02','2021-02-04 01:03:39',1,NULL,NULL,NULL,NULL,0,NULL),(5,'https://chicagolandremodeling.com/kitchen-gallery/','50:b6d0985dd248fdd8615cdd9434869da9',981,'post','page',1,0,'Kitchen Gallery',NULL,'kitchen gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-26 11:38:05','2021-02-04 00:38:48',1,NULL,NULL,NULL,NULL,0,NULL),(9,'https://chicagolandremodeling.com/bathroom-gallery/','51:1a385f37aaafe1819465d854dfde1b68',979,'post','page',1,0,'Bathroom Gallery',NULL,'bathroom gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-26 11:38:27','2021-02-04 01:03:10',1,NULL,NULL,NULL,NULL,0,NULL),(10,'https://chicagolandremodeling.com/basements/','44:8a7deecc7987c533cbf3755c1a93f469',599,'post','post',1,0,'Basement',NULL,'Basements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg',NULL,'1017','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg','1017','featured-image','{\"width\":639,\"height\":381,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg\",\"size\":\"full\",\"id\":1017,\"alt\":\"Basements remodel project\",\"pixels\":243459,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-05-26 11:38:54','2021-02-04 01:53:59',1,NULL,NULL,NULL,NULL,0,2),(11,'https://chicagolandremodeling.com/gutters-downspouts/','53:15eb6a3ba613e5a1f7f479f2894fd6b5',254,'post','post',1,0,'Fast and reliable gutter and downspout replacement in Chicagoland!','Chicagoland Remodeling is a top rated and reliable home remodeling and repair company. Fast and affordable quality work including gutters and downspouts. Call us today for a free estimate.','Gutters + Downspouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/gutters.png',NULL,'371','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/gutters.png','371','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/gutters.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/gutters.png\",\"size\":\"full\",\"id\":371,\"alt\":\"roof and gutters\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 11:38:58','2020-05-26 16:38:58',1,NULL,NULL,NULL,NULL,0,NULL),(12,'https://chicagolandremodeling.com/bedrooms/','43:541c06db887cfec9397fac642ff4b1d7',250,'post','post',1,0,'Bedrooms',NULL,'Bedrooms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/bedrooms.png',NULL,'369','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/bedrooms.png','369','featured-image','{\"width\":612,\"height\":257,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/bedrooms.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/bedrooms.png\",\"size\":\"full\",\"id\":369,\"alt\":\"Bedrooms remodeling projects\",\"pixels\":157284,\"type\":\"image/png\"}',0,1,NULL,'2020-05-26 11:39:02','2021-02-04 17:49:20',1,NULL,NULL,NULL,NULL,0,1),(14,'https://chicagolandremodeling.com/offices-commercial-spaces/','60:4370f6896060e819f0b8384a92548e3e',672,'post','post',1,0,'Commercial Spaces',NULL,'Office','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg',NULL,'1127','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg','1127','featured-image','{\"width\":673,\"height\":401,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg\",\"size\":\"full\",\"id\":1127,\"alt\":\"funitures in office\",\"pixels\":269873,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-05-26 11:39:07','2021-02-04 17:47:49',1,NULL,NULL,NULL,NULL,0,1),(15,'https://chicagolandremodeling.com/dinning-rooms/','48:528be5473d91bc26ecc56c6d25bb3d52',239,'post','post',1,0,'Build or renovate your dining room to create a family eating space','Top quality dining room renovation and remodeling by the quality, licensed craftsmen at Chicagoland Remodeling. Create a new eating space for your family. Call us today for a free estimate.','Dining Rooms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonDining.png',NULL,'271','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonDining.png','271','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonDining.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonDining.png\",\"size\":\"full\",\"id\":271,\"alt\":\"dining room before and after remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-26 11:39:11','2020-05-26 16:39:11',1,NULL,NULL,NULL,NULL,0,NULL),(16,'https://chicagolandremodeling.com/bathroom-remodeling/','54:7fcb6d2d6c291e60e356f9aef5f1b01b',956,'post','post',1,0,'Bathroom',NULL,'Bathroom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg',NULL,'964','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg','964','featured-image','{\"width\":673,\"height\":401,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg\",\"size\":\"full\",\"id\":964,\"alt\":\"minimalistic style bathroom project\",\"pixels\":269873,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-05-26 11:39:16','2021-02-04 01:37:45',1,NULL,NULL,NULL,NULL,0,3),(17,'https://chicagolandremodeling.com/family-rooms/','47:37d04adf236c014367899caeeec86cba',243,'post','post',1,0,'Expand your existing family room or create a family room addition','Create a space for your family by adding a family room to your home. Renovate or remodel your home to include a new room for your family. Call us today for a free estimate.','Family Rooms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/familyrooms.png',NULL,'370','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/familyrooms.png','370','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/familyrooms.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/familyrooms.png\",\"size\":\"full\",\"id\":370,\"alt\":\"living room remodeling project\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-26 11:39:16','2020-05-26 16:39:16',1,NULL,NULL,NULL,NULL,0,NULL),(18,'https://chicagolandremodeling.com/living-room-gallery/','54:a40e870a6aa4edf17c2e39a7b861f6f6',983,'post','page',1,0,'Living Room Gallery',NULL,'living room gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-26 11:39:21','2021-02-04 00:40:22',1,NULL,NULL,NULL,NULL,0,NULL),(19,'https://chicagolandremodeling.com/about-us/','43:041a5c79a8cd559afe2defedcc1bc23f',32,'post','page',1,0,'About Us',NULL,'About Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg',NULL,'280','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg','280','featured-image','{\"width\":612,\"height\":216,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg\",\"size\":\"full\",\"id\":280,\"alt\":\"contractor during remodeling\",\"pixels\":132192,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-26 11:39:27','2021-02-04 01:02:03',1,NULL,NULL,NULL,NULL,0,3),(20,'https://chicagolandremodeling.com/testimonials/','47:723340604b7e980c95f3f9dd5da87e9f',40,'post','page',1,0,'Testimonials',NULL,'Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-26 11:39:30','2021-02-04 01:23:48',1,NULL,NULL,NULL,NULL,0,NULL),(21,'https://chicagolandremodeling.com/stairs/','41:548ad17eac45e11ad85c6469b52b5477',264,'post','post',1,0,'Keep your home safe by repairing and maintaining your stairs','Donât let an accident happen on your stairs! Top quality interior and exterior stair repair by Chicagoland Remodeling. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.','Stairs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/stairs.png',NULL,'376','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/stairs.png','376','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/stairs.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/stairs.png\",\"size\":\"full\",\"id\":376,\"alt\":\"Stairs after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-26 11:39:36','2020-05-26 16:39:36',1,NULL,NULL,NULL,NULL,0,NULL),(22,'https://chicagolandremodeling.com/strony-internetowe-chicago/','61:b607584e797937e6d44c669543217ad6',8178,'post','page',1,0,'Pozycjonowanie Stron & Strony Internetowe Chicago, IL | Strony123',NULL,'Strony Internetowe Chicago','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-26 11:39:38','2020-05-26 16:39:38',1,NULL,NULL,NULL,NULL,0,NULL),(26,'https://chicagolandremodeling.com/kitchen-remodeling/','53:dd01f53a92f6112abe8fb6940b906133',959,'post','post',1,0,'Kitchen',NULL,'Kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg',NULL,'965','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg','965','featured-image','{\"width\":673,\"height\":401,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg\",\"size\":\"full\",\"id\":965,\"alt\":\"elegant style kitchen project\",\"pixels\":269873,\"type\":\"image/jpeg\"}',0,1,NULL,'2020-05-26 11:40:01','2021-02-04 01:44:45',1,NULL,NULL,NULL,NULL,0,3),(27,'https://chicagolandremodeling.com/reviews/','42:52cced5dc0c9b662df4e975c88fabd25',NULL,'post-type-archive','reviews',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Reviews',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 11:42:55','2020-05-26 16:42:55',1,NULL,NULL,NULL,NULL,0,NULL),(29,'https://chicagolandremodeling.com/patios/','41:ca6404367cd2aa5e765447157b66edc7',260,'post','post',1,0,'Create a new patio with Chicagoland Remodeling','Chicagoland Remodeling creates and repairs patios across the Chicagoland area. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.','Patios','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/patios.png',NULL,'372','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/patios.png','372','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/patios.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/patios.png\",\"size\":\"full\",\"id\":372,\"alt\":\"patio remodeling project\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 12:16:37','2020-05-26 17:16:37',1,NULL,NULL,NULL,NULL,0,NULL),(30,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle2.png','73:f65df896308bdfaa8399cf8384d9b4e1',8019,'post','attachment',1,8012,NULL,NULL,'roselle2','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle2.png',NULL,'8019','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle2.png','8019','attachment-image','{\"width\":302,\"height\":100,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/roselle2.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/roselle2.png\",\"size\":\"full\",\"id\":8019,\"alt\":\"\",\"pixels\":30200,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 12:43:24','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(31,'https://chicagolandremodeling.com/printers-row/','47:0ec009bd6bdabaa19487bf3c9c625599',336,'post','post',1,0,NULL,NULL,'Printers&#8217; Row','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowKitchen.png',NULL,'275','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowKitchen.png','275','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowKitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowKitchen.png\",\"size\":\"full\",\"id\":275,\"alt\":\"kitchen before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 12:54:26','2020-05-26 17:54:26',1,NULL,NULL,NULL,NULL,0,NULL),(32,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen8.jpg','81:7c98ba4b1579e62bc28d0fb32c966fcc',350,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen8.jpg',NULL,'350','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen8.jpg','350','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen8.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen8.jpg\",\"size\":\"full\",\"id\":350,\"alt\":\"kitchen after remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 12:54:26','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(33,'https://chicagolandremodeling.com/sample-page-2/','48:bf58dbe0c09416626c190feb2fd53222',7,'post','page',1,0,NULL,NULL,'Sample Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 13:11:59','2020-05-26 18:11:59',1,NULL,NULL,NULL,NULL,0,NULL),(34,'https://chicagolandremodeling.com/contact-us/','45:04a4cb5d83362139bd8f99ff8700561c',44,'post','page',1,0,'Contact Us',NULL,'Contact Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,0,NULL,'2020-05-26 13:12:51','2021-02-04 01:13:36',1,NULL,NULL,NULL,NULL,0,1),(35,'https://chicagolandremodeling.com/5-design-tips-know-remodeling-bathroom/','73:6a3b1e336ed7c0a7917f7a1d01c16fea',1354,'post','post',1,0,NULL,NULL,'5 Design Tips','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg',NULL,'1355','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg','1355','featured-image','{\"width\":800,\"height\":500,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg\",\"size\":\"full\",\"id\":1355,\"alt\":\"\",\"pixels\":400000,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-26 13:34:33','2021-02-04 18:33:50',1,NULL,NULL,NULL,NULL,0,2),(36,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg','82:bf0afccbd6748c83d0c3e372a9badac3',1127,'post','attachment',1,672,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg',NULL,'1127','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/Commercial-Spaces.jpg','1127','attachment-image','{\"width\":673,\"height\":401,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/Commercial-Spaces.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/Commercial-Spaces.jpg\",\"size\":\"full\",\"id\":1127,\"alt\":\"funitures in office\",\"pixels\":269873,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 13:58:36','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(37,'https://chicagolandremodeling.com/reviews/patricia-mendez/','58:9649898e134bf0b00977868067966e0c',1038,'post','reviews',1,0,NULL,NULL,'Patricia Mendez','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 14:06:57','2020-05-26 19:06:57',1,NULL,NULL,NULL,NULL,0,NULL),(38,'https://chicagolandremodeling.com/roofing-1/','44:d8d8d97e30befcc21701d6c340b269ba',186,'post','post',1,0,NULL,NULL,'Commercial Roof','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1.png',NULL,'473','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1.png','473','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1.png\",\"size\":\"full\",\"id\":473,\"alt\":\"remodeling contractors on roof\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 14:11:10','2020-05-26 19:11:10',1,NULL,NULL,NULL,NULL,0,NULL),(39,'https://chicagolandremodeling.com/?slide=813','44:808928d4aa7163a2fd3e64c0b7e6477f',813,'post','slide',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg',NULL,'918','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg','918','featured-image','{\"width\":1920,\"height\":750,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1-2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1-2.jpg\",\"size\":\"full\",\"id\":918,\"alt\":\"kitchen and dining room remodeling project\",\"pixels\":1440000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 14:32:41','2020-05-26 19:32:41',1,NULL,NULL,NULL,NULL,0,NULL),(40,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1.jpg','72:535106a2259e5914db26b46295987845',814,'post','attachment',1,813,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1.jpg',NULL,'814','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1.jpg','814','attachment-image','{\"width\":1920,\"height\":960,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1.jpg\",\"size\":\"full\",\"id\":814,\"alt\":\"finished kitchen remodeling project\",\"pixels\":1843200,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 14:32:41','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(41,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/blog_roofing_header.png','84:5fdfc46de97290b6a01144b005cc7216',191,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/blog_roofing_header.png',NULL,'191','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/blog_roofing_header.png','191','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/blog_roofing_header.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/blog_roofing_header.png\",\"size\":\"full\",\"id\":191,\"alt\":\"finished roof remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 14:35:18','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(42,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b.jpg','70:8a5c01fa13fb2b5da07fb9cf8a6d4144',1009,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b.jpg',NULL,'1009','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b.jpg','1009','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img1b.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img1b.jpg\",\"size\":\"full\",\"id\":1009,\"alt\":\"white washbasin\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-26 14:41:53','2021-02-03 19:36:54',1,NULL,NULL,NULL,NULL,1,NULL),(43,'https://chicagolandremodeling.com/category/roofing/','51:9975dbaf0323510eb7a8a9187c8b02fd',8,'term','category',NULL,NULL,NULL,NULL,'Roofing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 14:58:10','2020-05-26 19:58:10',1,NULL,NULL,NULL,NULL,0,NULL),(44,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png','78:f107d27ac0d342182d84868cdf64b955',865,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png',NULL,'865','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png','865','attachment-image','{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/SmithProBadge.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/SmithProBadge.png\",\"size\":\"full\",\"id\":865,\"alt\":\"SmithProBadge logo\",\"pixels\":22500,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-26 15:06:55','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(45,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 15:31:58','2020-09-24 17:01:40',1,NULL,NULL,NULL,NULL,0,NULL),(46,'https://chicagolandremodeling.com/thankyou/','43:9c8c9ccd849e84b76579bede8427929a',886,'post','page',1,0,'Thank You!',NULL,'ThankYou','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-26 15:50:34','2021-02-04 01:04:44',1,NULL,NULL,NULL,NULL,0,NULL),(47,'https://chicagolandremodeling.com/6-budget-kitchen-remodeling-ideas/','68:80184e9edd5284d642ee22da18204de7',1424,'post','post',1,0,'Blog - 6 Budget Ideas',NULL,'6 Budget remodeling ideas','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg',NULL,'1427','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg','1427','featured-image','{\"width\":900,\"height\":500,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg\",\"size\":\"full\",\"id\":1427,\"alt\":\"kitchen remodeling tips\",\"pixels\":450000,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-26 16:59:25','2021-02-04 18:31:13',1,NULL,NULL,NULL,NULL,0,2),(48,'https://chicagolandremodeling.com/category/siding-menu/','55:80d581bfa8d2b75f86ced3676e751f0b',18,'term','category',NULL,NULL,NULL,NULL,'Siding &amp; Windows Menu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 17:07:23','2020-05-26 22:07:23',1,NULL,NULL,NULL,NULL,0,NULL),(49,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/Kitchen-Remodeling-Orange-County-1.jpg','99:37bef3fef7b8d94b50c1220c5a3c6d9f',1045,'post','attachment',1,981,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/Kitchen-Remodeling-Orange-County-1.jpg',NULL,'1045','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/Kitchen-Remodeling-Orange-County-1.jpg','1045','attachment-image','{\"width\":2000,\"height\":1333,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/Kitchen-Remodeling-Orange-County-1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/Kitchen-Remodeling-Orange-County-1.jpg\",\"size\":\"full\",\"id\":1045,\"alt\":\"kitchen remodeling tips\",\"pixels\":2666000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 17:17:40','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(50,'https://chicagolandremodeling.com/category/blog/','48:acd3f6341706582a928e67d3f045b2ee',20,'term','category',NULL,NULL,'Blog',NULL,'Blog',NULL,NULL,0,NULL,NULL,NULL,'Blog',32,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-26 17:19:17','2021-02-04 18:09:00',1,NULL,NULL,NULL,NULL,0,NULL),(51,'https://chicagolandremodeling.com/planning-your-ideal-kitchen-remodel/','70:68f73b4433557ee9c9eefaa77207ed14',7954,'post','post',1,0,'Blog - Ideal Kitchen',NULL,'Planning Your Ideal Kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg',NULL,'1427','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg','1427','featured-image','{\"width\":900,\"height\":500,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg\",\"size\":\"full\",\"id\":1427,\"alt\":\"kitchen remodeling tips\",\"pixels\":450000,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-26 17:19:29','2021-02-04 18:09:13',1,NULL,NULL,NULL,NULL,0,2),(52,'https://chicagolandremodeling.com/mendota-hall-bath/','52:c9d0b3b73a91fe1fa83759abef4b2d9c',403,'post','post',1,0,NULL,NULL,'Mendota, IL Hall Bath','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaHallbath.png',NULL,'409','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaHallbath.png','409','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaHallbath.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaHallbath.png\",\"size\":\"full\",\"id\":409,\"alt\":\"bathroom before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 17:35:13','2020-05-26 22:35:13',1,NULL,NULL,NULL,NULL,0,NULL),(53,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath5.jpg','81:53eff56a37dcc347806eeee30e8b0ea4',150,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath5.jpg',NULL,'150','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath5.jpg','150','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath5.jpg\",\"size\":\"full\",\"id\":150,\"alt\":\"bath and glaze exchange\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 17:35:13','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(54,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom_home.jpg','78:62d520adbe45bfa6456be9a76df76d1e',958,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom_home.jpg',NULL,'958','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom_home.jpg','958','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bathroom_home.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bathroom_home.jpg\",\"size\":\"full\",\"id\":958,\"alt\":\"light space bathroom\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 18:03:50','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(55,'https://chicagolandremodeling.com/matteson-il-bath/','51:0052db8c54bc955e081db6d5ec10d73e',439,'post','post',1,0,NULL,NULL,'Matteson, IL Bath','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/matteson.png',NULL,'270','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/matteson.png','270','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/matteson.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/matteson.png\",\"size\":\"full\",\"id\":270,\"alt\":\"bathroom before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 18:59:23','2020-05-26 23:59:23',1,NULL,NULL,NULL,NULL,0,NULL),(56,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath3.jpg','78:472f16488649cb8d7b217c2616f78293',128,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath3.jpg',NULL,'128','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath3.jpg','128','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath3.jpg\",\"size\":\"full\",\"id\":128,\"alt\":\"uncompleted bath remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 18:59:23','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(57,'https://chicagolandremodeling.com/roofing-location-a/','53:08fa3cbfa3ba0ed3df5781f90baa6f64',517,'post','post',1,0,NULL,NULL,'Roofing Location A','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4.png',NULL,'476','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4.png','476','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4.png\",\"size\":\"full\",\"id\":476,\"alt\":\"roof before and after remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 19:01:16','2020-05-27 00:01:16',1,NULL,NULL,NULL,NULL,0,NULL),(58,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/chicagoland-remodeling-logo.png','92:377ef6a11212e0326166b2847c611252',8113,'post','attachment',1,7986,NULL,NULL,'chicagoland-remodeling-logo','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/chicagoland-remodeling-logo.png',NULL,'8113','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/chicagoland-remodeling-logo.png','8113','attachment-image','{\"width\":302,\"height\":100,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/chicagoland-remodeling-logo.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/chicagoland-remodeling-logo.png\",\"size\":\"full\",\"id\":8113,\"alt\":\"\",\"pixels\":30200,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 19:16:58','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(59,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath5.jpg','78:cb51abedbfbf1f6b22da0090022b50bf',130,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath5.jpg',NULL,'130','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath5.jpg','130','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath5.jpg\",\"size\":\"full\",\"id\":130,\"alt\":\"bath after exchange\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 19:36:25','2020-05-27 00:36:25',1,NULL,NULL,NULL,NULL,0,NULL),(60,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath2.jpg','81:a377d2631c82b1c45f7b2c8885291214',147,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath2.jpg',NULL,'147','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath2.jpg','147','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath2.jpg\",\"size\":\"full\",\"id\":147,\"alt\":\"shower cabin before remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 20:20:05','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(61,'https://chicagolandremodeling.com/roofing-2/','44:2d8e6e0e1417c6e5e83cc2b22aa62729',199,'post','post',1,0,NULL,NULL,'Wood Shingles Roofing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2.png',NULL,'474','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2.png','474','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2.png\",\"size\":\"full\",\"id\":474,\"alt\":\"roof before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 20:22:34','2020-05-27 01:22:34',1,NULL,NULL,NULL,NULL,0,NULL),(62,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_3.jpg','75:b18112d91dd83f13e24802274cb8492c',491,'post','attachment',1,199,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_3.jpg',NULL,'491','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_3.jpg','491','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_3.jpg\",\"size\":\"full\",\"id\":491,\"alt\":\"roof after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-26 20:22:34','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(64,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60630.png','70:ccf06e8880d34ac60211aa798d28ef13',8075,'post','attachment',1,8073,NULL,NULL,'60630','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60630.png',NULL,'8075','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60630.png','8075','attachment-image','{\"width\":350,\"height\":116,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/60630.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/60630.png\",\"size\":\"full\",\"id\":8075,\"alt\":\"\",\"pixels\":40600,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 20:29:01','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(65,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1.jpg','69:186c8617d156ed63543eec79d4255ad7',1005,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1.jpg',NULL,'1005','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1.jpg','1005','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img1.jpg\",\"size\":\"full\",\"id\":1005,\"alt\":\"kitchen renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-26 21:04:43','2021-02-03 19:44:45',1,NULL,NULL,NULL,NULL,1,NULL),(66,'https://chicagolandremodeling.com/category/uncategorized/','57:b2bbc658c1eaf288216d2f01ff7c6af8',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-26 21:54:31','2020-05-27 02:54:31',1,NULL,NULL,NULL,NULL,0,NULL),(67,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/60606-NEW.png','74:2fa6a1c8abc2a5916efc3ab1dab058b8',8109,'post','attachment',1,7994,NULL,NULL,'60606-NEW','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/60606-NEW.png',NULL,'8109','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/60606-NEW.png','8109','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/60606-NEW.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/60606-NEW.png\",\"size\":\"full\",\"id\":8109,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-26 22:34:16','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(68,'https://chicagolandremodeling.com/services/','43:011df23593edac043a8f3fa5827fa387',34,'post','page',1,0,'Services',NULL,'Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-26 22:42:10','2021-02-04 01:05:35',1,NULL,NULL,NULL,NULL,0,NULL),(69,'https://chicagolandremodeling.com/soffit-fascia/','48:689aba07d8dfaa5d1c6bf322d864ae39',252,'post','post',1,0,NULL,NULL,'Soffit + Fascia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/soffits.png',NULL,'374','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/soffits.png','374','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/soffits.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/soffits.png\",\"size\":\"full\",\"id\":374,\"alt\":\"completed roof remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 02:31:25','2020-05-27 07:31:25',1,NULL,NULL,NULL,NULL,0,NULL),(70,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_1.jpg','75:7b72529250d9a3bf18dd2f55bbe61399',486,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_1.jpg',NULL,'486','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_1.jpg','486','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1_1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1_1.jpg\",\"size\":\"full\",\"id\":486,\"alt\":\"contractors during roof repair\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 06:39:42','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(71,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen1.jpg','81:296581386c3a20456a8803fb589f30d4',343,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen1.jpg',NULL,'343','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen1.jpg','343','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen1.jpg\",\"size\":\"full\",\"id\":343,\"alt\":\"kitchen before remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 07:32:37','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(73,'https://chicagolandremodeling.com/printers-row-bath-2/','54:f8d72c5a9d4f5ba8cb954ea8c3779364',436,'post','post',1,0,NULL,NULL,'Printers&#8217; Row Bath','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowBath.png',NULL,'274','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowBath.png','274','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowBath.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowBath.png\",\"size\":\"full\",\"id\":274,\"alt\":\"bathroom before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 09:16:56','2020-05-27 14:16:56',1,NULL,NULL,NULL,NULL,0,NULL),(74,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg','73:8d7846fe80531a81637e8faed5a15848',964,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg',NULL,'964','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bathroom.jpg','964','attachment-image','{\"width\":673,\"height\":401,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bathroom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bathroom.jpg\",\"size\":\"full\",\"id\":964,\"alt\":\"minimalistic style bathroom project\",\"pixels\":269873,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 09:48:56','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(75,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen_home.jpg','77:dfd0c240db9c4d719ee8d92a8077da71',960,'post','attachment',1,959,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen_home.jpg',NULL,'960','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen_home.jpg','960','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/kitchen_home.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/kitchen_home.jpg\",\"size\":\"full\",\"id\":960,\"alt\":\"homely kitchen remodel\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 09:52:21','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(76,'https://chicagolandremodeling.com/reviews/samuel-hale/','54:c3969604ac77299fa111ba231ef732b5',1035,'post','reviews',1,0,NULL,NULL,'Samuel Hale','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 09:59:36','2020-05-27 14:59:36',1,NULL,NULL,NULL,NULL,0,NULL),(77,'https://chicagolandremodeling.com/do-it-yourself-bathroom-ideas/','64:bccc96a3614b99f00e29f988f3d921a7',7945,'post','post',1,0,'Blog - Bathroom Ideas',NULL,'Do it yourself bathroom ideas','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg',NULL,'7946','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg','7946','featured-image','{\"width\":1920,\"height\":1080,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg\",\"size\":\"full\",\"id\":7946,\"alt\":\"Professional bathroom remodeling contractors\",\"pixels\":2073600,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-27 10:40:45','2021-02-04 18:21:16',1,NULL,NULL,NULL,NULL,0,2),(78,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg','67:0011e46d57ecdbeb5b424aae52fbe40b',7946,'post','attachment',1,7945,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg',NULL,'7946','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/09/zz.jpg','7946','attachment-image','{\"width\":1920,\"height\":1080,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/09\\/zz.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/09\\/zz.jpg\",\"size\":\"full\",\"id\":7946,\"alt\":\"Professional bathroom remodeling contractors\",\"pixels\":2073600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 10:40:45','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(79,'https://chicagolandremodeling.com/mendota-master-bath/','54:502d3c9ad300a2a4fba488db09e6f671',412,'post','post',1,0,NULL,NULL,'Mendota, IL Master Bath','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaMasterbath.png',NULL,'415','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaMasterbath.png','415','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaMasterbath.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaMasterbath.png\",\"size\":\"full\",\"id\":415,\"alt\":\"bathrom before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 10:46:27','2020-05-27 15:46:27',1,NULL,NULL,NULL,NULL,0,NULL),(80,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath2.jpg','83:d012c673bcdbf6e8b1705bf1799987d8',157,'post','attachment',1,412,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath2.jpg',NULL,'157','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath2.jpg','157','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaMasterbath2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaMasterbath2.jpg\",\"size\":\"full\",\"id\":157,\"alt\":\"bathroom before remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 10:46:27','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(81,'https://chicagolandremodeling.com/additional-roofing/','53:671164726df4bb90a733042c70490a9c',233,'post','post',1,0,'Chicagoland Remodeling for new and replacement soffits and fascia','Chicagoland Remodeling is a top rated and reliable window and siding remodeling and repair company. Fast and affordable quality soffits and fascia. Call us today for a free estimate.','Additional Roofing Services','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/blog_roofing_header.png',NULL,'191','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/blog_roofing_header.png','191','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/blog_roofing_header.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/blog_roofing_header.png\",\"size\":\"full\",\"id\":191,\"alt\":\"finished roof remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 10:57:04','2020-05-27 15:57:04',1,NULL,NULL,NULL,NULL,0,NULL),(82,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b.jpg','70:1be74558f5bc708519b832a856d15fc8',1011,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b.jpg',NULL,'1011','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b.jpg','1011','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img3b.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img3b.jpg\",\"size\":\"full\",\"id\":1011,\"alt\":\"elegant bathroom project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-27 11:15:36','2021-02-03 19:36:54',1,NULL,NULL,NULL,NULL,1,NULL),(83,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath12.jpg','79:c0a5399912199010c1b434dda97eb989',443,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath12.jpg',NULL,'443','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath12.jpg','443','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonBath12.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonBath12.jpg\",\"size\":\"full\",\"id\":443,\"alt\":\"bathroom remodeling contractors chicago bathroom after replacement\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 11:20:44','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(84,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB1.jpg','79:957231f645784b5037c2d7b4bfb4ecf8',588,'post','attachment',1,34,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB1.jpg',NULL,'588','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB1.jpg','588','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/service_THUMB1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/service_THUMB1.jpg\",\"size\":\"full\",\"id\":588,\"alt\":\"Chimney\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 11:39:37','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(85,'https://chicagolandremodeling.com/category/kitchen-menu/','56:cda66b73db6bc77ca9c640a1ef99b1d0',16,'term','category',NULL,NULL,NULL,NULL,'Kitchen Menu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 11:59:34','2020-05-27 16:59:34',1,NULL,NULL,NULL,NULL,0,NULL),(86,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg','107:1cf404f6d8fb04d673327b1464cad4d7',1427,'post','attachment',1,1424,NULL,NULL,'vinyl_replacment_windows_benefits-900&#215;500','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg',NULL,'1427','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/03/vinyl_replacment_windows_benefits-900x500.jpeg','1427','attachment-image','{\"width\":900,\"height\":500,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/03\\/vinyl_replacment_windows_benefits-900x500.jpeg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/03\\/vinyl_replacment_windows_benefits-900x500.jpeg\",\"size\":\"full\",\"id\":1427,\"alt\":\"kitchen remodeling tips\",\"pixels\":450000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 12:21:35','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(88,'https://chicagolandremodeling.com/matteson-illinois/','52:65655cb408cb9b5981b9e36bbbb03f7a',333,'post','post',1,0,NULL,NULL,'Matteson, Illinois','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonKitchen.png',NULL,'272','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonKitchen.png','272','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonKitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonKitchen.png\",\"size\":\"full\",\"id\":272,\"alt\":\"kitchen before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 14:34:50','2020-05-27 19:34:50',1,NULL,NULL,NULL,NULL,0,NULL),(90,'https://chicagolandremodeling.com/reviews/alex-pittman/','55:f4197174954e81209ceb3d778672ce38',927,'post','reviews',1,0,NULL,NULL,'Alex Pittman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 15:50:33','2020-05-27 20:50:33',1,NULL,NULL,NULL,NULL,0,NULL),(91,'https://chicagolandremodeling.com/contact-error/','48:b4b600e25d223207339af387d3e67d6c',703,'post','page',1,0,'Connect Error | Chicagoland Remodeling - Home Remodeling Contractors Chicago',NULL,'Contact Error','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 15:51:18','2020-05-27 20:51:18',1,NULL,NULL,NULL,NULL,0,NULL),(92,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath8.jpg','81:f941bb3abef4cd9c1d9ff6ef90957f27',153,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath8.jpg',NULL,'153','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath8.jpg','153','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath8.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath8.jpg\",\"size\":\"full\",\"id\":153,\"alt\":\"washbasin after exchange\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 16:00:45','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(93,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1-1.png','75:7133335b6e23dcc37f63b780e58edb6c',862,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1-1.png',NULL,'862','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1-1.png','862','attachment-image','{\"width\":466,\"height\":193,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/badgem-1-1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/badgem-1-1.png\",\"size\":\"full\",\"id\":862,\"alt\":\"bbb logo\",\"pixels\":89938,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 16:53:17','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(94,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg','86:4852d29aa88d7674a992080ef26cc6b7',786,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg',NULL,'786','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg','786','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/commercial_remodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/commercial_remodeling.jpg\",\"size\":\"full\",\"id\":786,\"alt\":\"office remodeling project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-27 17:42:44','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(95,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath7.jpg','81:cf77cbb9de6c3473faf78f88bde841ad',152,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath7.jpg',NULL,'152','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath7.jpg','152','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath7.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath7.jpg\",\"size\":\"full\",\"id\":152,\"alt\":\"shower and glaze after remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 20:02:26','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(96,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen7.jpg','81:e7c775a400629dde1eb392a14c4ea084',349,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen7.jpg',NULL,'349','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen7.jpg','349','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen7.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen7.jpg\",\"size\":\"full\",\"id\":349,\"alt\":\"Kitchen Floor\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 20:12:55','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(97,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath1.jpg','78:abb0bd569d4d07bfde480c7456827f1c',126,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath1.jpg',NULL,'126','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath1.jpg','126','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath1.jpg\",\"size\":\"full\",\"id\":126,\"alt\":\"shower cabin and bath before remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-27 20:12:57','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(98,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg','71:c2cbf3711874983af22d2f0eeb200a3f',791,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg',NULL,'791','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg','791','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/stairs.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/stairs.jpg\",\"size\":\"full\",\"id\":791,\"alt\":\"elegant stairs\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-27 20:13:01','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(99,'https://chicagolandremodeling.com/powder-room/','46:7430b9a96906201132a2d486577a98ce',246,'post','post',1,0,NULL,NULL,'Powder Room','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaPowderroom.png',NULL,'318','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaPowderroom.png','318','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaPowderroom.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaPowderroom.png\",\"size\":\"full\",\"id\":318,\"alt\":\"bathroom before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-27 20:22:34','2020-05-28 01:22:34',1,NULL,NULL,NULL,NULL,0,NULL),(100,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2.jpg','69:6e26dfd55be77ab89bf6d6bd6867e854',1006,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2.jpg',NULL,'1006','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2.jpg','1006','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img2.jpg\",\"size\":\"full\",\"id\":1006,\"alt\":\"dining room remodeling project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-27 20:33:06','2021-02-03 19:44:45',1,NULL,NULL,NULL,NULL,1,NULL),(101,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png','66:de2f349cd59ccff601818a5f09939410',828,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png',NULL,'828','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png','828','attachment-image','{\"width\":128,\"height\":128,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/g.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/g.png\",\"size\":\"full\",\"id\":828,\"alt\":\"google + logo\",\"pixels\":16384,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-27 21:15:30','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(102,'https://chicagolandremodeling.com/contact-success/','50:932fc7d0108bf3734c697252b0eb5095',705,'post','page',1,0,'Contact Succes | Chicagoland Remodeling - Home Remodeling Contractors Chicago',NULL,'Contact Success','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 21:38:47','2020-05-28 02:38:47',1,NULL,NULL,NULL,NULL,0,NULL),(103,'https://chicagolandremodeling.com/category/kitchen/','51:70d55f401380945f6621fa7321ad4800',9,'term','category',NULL,NULL,NULL,NULL,'Kitchen',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-27 23:54:24','2020-05-28 04:54:24',1,NULL,NULL,NULL,NULL,0,NULL),(104,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b.jpg','88:3ee89b33529b167ff54d5ca4615d8cf0',849,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b.jpg',NULL,'849','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b.jpg','849','attachment-image','{\"width\":1024,\"height\":1024,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/5540543936_423e37dae4_b.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/5540543936_423e37dae4_b.jpg\",\"size\":\"full\",\"id\":849,\"alt\":\"yelp logo\",\"pixels\":1048576,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-28 00:13:59','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(105,'https://chicagolandremodeling.com/seminary-bath/','48:ae5d305d936b336f9c903f2cd1422693',447,'post','post',1,0,NULL,NULL,'Seminary Ave, Chicago Bath','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/seminaryBathroom1.png',NULL,'449','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/seminaryBathroom1.png','449','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/seminaryBathroom1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/seminaryBathroom1.png\",\"size\":\"full\",\"id\":449,\"alt\":\"bathroom before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 02:25:07','2020-05-28 07:25:07',1,NULL,NULL,NULL,NULL,0,NULL),(106,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath2.jpg','78:38e6db685d084bda1fa11b573d03d9c3',170,'post','attachment',1,447,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath2.jpg',NULL,'170','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath2.jpg','170','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath2.jpg\",\"size\":\"full\",\"id\":170,\"alt\":\"bathroom before remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 02:25:07','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(107,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/3654978-50x50.png','78:ad0afaa3e0b60226e8067f606b249b60',860,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/3654978-50x50.png',NULL,'860','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/3654978-50x50.png','860','attachment-image','{\"width\":50,\"height\":50,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/3654978-50x50.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/3654978-50x50.png\",\"size\":\"full\",\"id\":860,\"alt\":\"angie\'s list logo\",\"pixels\":2500,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 02:35:35','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(108,'https://chicagolandremodeling.com/home-remodeling-tips-chicago-il/','66:f5ac0e7091f63904ebe2d0ce6211a62f',8170,'post','post',1,0,'Blog - Tips',NULL,'Blog &#8211; Tips','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg',NULL,'8173','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg','8173','featured-image','{\"width\":2560,\"height\":1709,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg\",\"size\":\"full\",\"id\":8173,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-28 04:52:22','2021-02-04 18:00:29',1,NULL,NULL,NULL,NULL,0,1),(109,'https://chicagolandremodeling.com/how-to-renovate-an-old-house/','63:594dbca0b48d4be53fd563f86e7d7697',7939,'post','post',1,0,'Blog - How to',NULL,'How to renovate an old house?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg',NULL,'7941','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg','7941','featured-image','{\"width\":1920,\"height\":1397,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg\",\"size\":\"full\",\"id\":7941,\"alt\":\"kitchen remodeling contractors\",\"pixels\":2682240,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-28 04:52:22','2021-02-04 18:22:44',1,NULL,NULL,NULL,NULL,0,NULL),(110,'https://chicagolandremodeling.com/kitchen-remodelling-tips-to-make-your-space-look-bigger-2/','92:359e942f72b960392f10954c9178656e',7934,'post','post',1,0,'Blog - Tips',NULL,'Kitchen &#8211; tips to make your space look bigger','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg',NULL,'7935','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg','7935','featured-image','{\"width\":\"1350\",\"height\":\"900\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg\",\"size\":\"full\",\"id\":7935,\"alt\":\"kitchen remodeling contractors\",\"pixels\":1215000,\"type\":\"image/jpeg\"}',0,0,NULL,'2020-05-28 04:52:22','2021-02-04 18:27:03',1,NULL,NULL,NULL,NULL,0,NULL),(111,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath4.jpg','81:855128143062da438e5c8791f38ddfca',149,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath4.jpg',NULL,'149','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath4.jpg','149','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath4.jpg\",\"size\":\"full\",\"id\":149,\"alt\":\"glaze remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 06:49:36','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(112,'https://chicagolandremodeling.com/category/bathroom/','52:14160f05a24fdcc7670b71c26432360e',10,'term','category',NULL,NULL,NULL,NULL,'Bathroom',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-28 09:33:14','2020-05-28 14:33:14',1,NULL,NULL,NULL,NULL,0,NULL),(113,'https://chicagolandremodeling.com/?slide=816','44:e283e32314b5f4d41cf508cde393d145',816,'post','slide',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg',NULL,'919','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg','919','featured-image','{\"width\":1920,\"height\":750,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2-2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2-2.jpg\",\"size\":\"full\",\"id\":919,\"alt\":\"bathroom with grey tiles\",\"pixels\":1440000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 10:15:36','2020-05-28 15:15:36',1,NULL,NULL,NULL,NULL,0,NULL),(114,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg','74:1a64c8625280d4b0a975cd7438adcbe7',918,'post','attachment',1,816,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg',NULL,'918','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider1-2.jpg','918','attachment-image','{\"width\":1920,\"height\":750,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1-2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider1-2.jpg\",\"size\":\"full\",\"id\":918,\"alt\":\"kitchen and dining room remodeling project\",\"pixels\":1440000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 10:15:36','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(115,'https://chicagolandremodeling.com/shingles/','43:3e685811dcaa97d208bb8fc2b9c1cc2e',231,'post','post',1,0,'When you need new shingles call Chicagoland Remodeling!','Looking for a top rated and reliable roofing company to replace your shingles? Call Chicagoland Remodeling. We specialize in roofing and roof repairs; fast and affordable quality shingle installation. Call us today for a free estimate','Shingles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.png',NULL,'308','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.png','308','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.png\",\"size\":\"full\",\"id\":308,\"alt\":\"roof remodeling project\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 11:43:14','2020-05-28 16:43:14',1,NULL,NULL,NULL,NULL,0,NULL),(116,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles2.jpg','74:99eab86901884dd0ead2c007b2d0c4bb',311,'post','attachment',1,231,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles2.jpg',NULL,'311','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles2.jpg','311','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles2.jpg\",\"size\":\"full\",\"id\":311,\"alt\":\"completed Shingle roof remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 11:43:14','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(117,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles1.jpg','74:ea9220b17bd0f64fb31b8256ffbb87df',310,'post','attachment',1,231,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles1.jpg',NULL,'310','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles1.jpg','310','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles1.jpg\",\"size\":\"full\",\"id\":310,\"alt\":\"Shingle roof after remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 12:18:33','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(118,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg','87:1b851188fc4c9e41ebcaf9a3c3754262',8173,'post','attachment',1,8170,NULL,NULL,'home remodeling','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg',NULL,'8173','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/04/home-remodeling-scaled.jpg','8173','attachment-image','{\"width\":2560,\"height\":1709,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2020\\/04\\/home-remodeling-scaled.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2020\\/04\\/home-remodeling-scaled.jpg\",\"size\":\"full\",\"id\":8173,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 12:27:06','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(119,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/northbrook-przerabianiec.png','89:d2645cc23e5fae464f9fafb8bf71dd39',8101,'post','attachment',1,8100,NULL,NULL,'northbrook-przerabianiec','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/northbrook-przerabianiec.png',NULL,'8101','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/northbrook-przerabianiec.png','8101','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/northbrook-przerabianiec.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/northbrook-przerabianiec.png\",\"size\":\"full\",\"id\":8101,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 12:52:34','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(120,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg','72:1d7f6cf513336ced1a7705c8a67445f2',965,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg',NULL,'965','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/kitchen.jpg','965','attachment-image','{\"width\":673,\"height\":401,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/kitchen.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/kitchen.jpg\",\"size\":\"full\",\"id\":965,\"alt\":\"elegant style kitchen project\",\"pixels\":269873,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 14:07:56','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(121,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle-1.png','74:90e1ba0635fe1dae31eb9f0ccd80b8ed',8013,'post','attachment',1,8012,NULL,NULL,'roselle (1)','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle-1.png',NULL,'8013','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/roselle-1.png','8013','attachment-image','{\"width\":302,\"height\":100,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/roselle-1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/roselle-1.png\",\"size\":\"full\",\"id\":8013,\"alt\":\"\",\"pixels\":30200,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 14:26:13','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(122,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/GLEN-ELLYN.png','75:895745282bc0bb317c23f5f0f7e73334',8118,'post','attachment',1,7992,NULL,NULL,'GLEN-ELLYN','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/GLEN-ELLYN.png',NULL,'8118','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/GLEN-ELLYN.png','8118','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/GLEN-ELLYN.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/GLEN-ELLYN.png\",\"size\":\"full\",\"id\":8118,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 15:05:23','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(123,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/elmwood.png','72:d1bc3611886deb1b159fae12769acd28',8023,'post','attachment',1,7996,NULL,NULL,'elmwood','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/elmwood.png',NULL,'8023','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/elmwood.png','8023','attachment-image','{\"width\":302,\"height\":80,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/elmwood.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/elmwood.png\",\"size\":\"full\",\"id\":8023,\"alt\":\"\",\"pixels\":24160,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 16:07:43','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(124,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen1.jpg','81:5942965275853a6ad2fe1db92e5169a8',139,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen1.jpg',NULL,'139','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen1.jpg','139','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen1.jpg\",\"size\":\"full\",\"id\":139,\"alt\":\"kitchen before remodeling by Chicagoland Remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 16:20:15','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(125,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/decksPorches.jpg','77:70b2fe851a8a0de0c7a60cf8c9a44ffe',690,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/decksPorches.jpg',NULL,'690','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/decksPorches.jpg','690','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/decksPorches.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/decksPorches.jpg\",\"size\":\"full\",\"id\":690,\"alt\":\"wooden balcony\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 16:25:58','2020-05-28 21:25:58',1,NULL,NULL,NULL,NULL,0,NULL),(126,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613.png','70:d052ac92f8449ad7e3d04b5317915937',8021,'post','attachment',1,7996,NULL,NULL,'60613','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613.png',NULL,'8021','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613.png','8021','attachment-image','{\"width\":307,\"height\":102,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60613.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60613.png\",\"size\":\"full\",\"id\":8021,\"alt\":\"\",\"pixels\":31314,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-28 17:26:41','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(127,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b.jpg','70:d6be134ad993ff79392f5af0492868f2',1010,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b.jpg',NULL,'1010','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b.jpg','1010','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img2b.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img2b.jpg\",\"size\":\"full\",\"id\":1010,\"alt\":\"washbasin after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-28 17:58:24','2021-02-03 19:36:54',1,NULL,NULL,NULL,NULL,1,NULL),(128,'https://chicagolandremodeling.com/reviews/lauren-gross/','55:a43c7db65aaf59c16cd829338ca5f88e',1029,'post','reviews',1,0,NULL,NULL,'Lauren Gross','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-28 18:05:10','2020-05-28 23:05:10',1,NULL,NULL,NULL,NULL,0,NULL),(129,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg','76:72f49c2b4186ba74f1b3217d7a9c29c7',787,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg',NULL,'787','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg','787','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/dining_room.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/dining_room.jpg\",\"size\":\"full\",\"id\":787,\"alt\":\"old-fashioned dining room project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-28 18:32:27','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(130,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding8.jpg','78:e268573146d739d2566535f00b4dd84f',111,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding8.jpg',NULL,'111','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding8.jpg','111','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding8.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding8.jpg\",\"size\":\"full\",\"id\":111,\"alt\":\"house after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 18:37:40','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(131,'https://chicagolandremodeling.com/log-in/','41:a67f009456be184b95cb678aba72254d',46,'post','page',1,0,'Log in',NULL,'Log In','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-28 19:05:17','2021-02-04 01:14:04',1,NULL,NULL,NULL,NULL,0,NULL),(132,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB2.jpg','79:3bf1b3898e5a8ce54eae898d1ec39855',589,'post','attachment',1,34,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB2.jpg',NULL,'589','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/service_THUMB2.jpg','589','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/service_THUMB2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/service_THUMB2.jpg\",\"size\":\"full\",\"id\":589,\"alt\":\"basement\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-28 19:16:51','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(133,'https://chicagolandremodeling.com/reviews/eric-tran/','52:9762a3735831f602b1ef46d6a57c8e1d',1037,'post','reviews',1,0,NULL,NULL,'Eric Tran','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-28 19:58:41','2020-05-29 00:58:41',1,NULL,NULL,NULL,NULL,0,NULL),(134,'https://chicagolandremodeling.com/reviews/leah-howard/','54:b67cec1ef296b57483f13f6c2db63320',1040,'post','reviews',1,0,NULL,NULL,'Leah Howard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-28 19:59:41','2020-05-29 00:59:41',1,NULL,NULL,NULL,NULL,0,NULL),(135,'https://chicagolandremodeling.com/category/roofing-menu/','56:2ceec029d79afb6661e3e9b77a3888b5',15,'term','category',NULL,NULL,NULL,NULL,'Roofing Menu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-28 19:59:57','2020-05-29 00:59:57',1,NULL,NULL,NULL,NULL,0,NULL),(136,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath9.jpg','81:d5a8e79893899280bfc2b39a7cf9f08e',154,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath9.jpg',NULL,'154','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath9.jpg','154','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath9.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath9.jpg\",\"size\":\"full\",\"id\":154,\"alt\":\"finished bathroom remodeling project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 01:27:55','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(137,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg','83:3d04530a5a5500f11cbe7148eaed9060',1355,'post','attachment',1,1354,NULL,NULL,'bathroom-photos-10','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg',NULL,'1355','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/11/bathroom-photos-10.jpg','1355','attachment-image','{\"width\":800,\"height\":500,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/11\\/bathroom-photos-10.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/11\\/bathroom-photos-10.jpg\",\"size\":\"full\",\"id\":1355,\"alt\":\"\",\"pixels\":400000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 02:53:50','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(138,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg','97:f022f438d9cf0fa99b45fd0e8ce47a7b',7935,'post','attachment',1,7934,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg',NULL,'7935','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/photo-1495433324511-bf8e92934d90.jpg','7935','attachment-image','{\"width\":\"1350\",\"height\":\"900\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/08\\/photo-1495433324511-bf8e92934d90.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/08\\/photo-1495433324511-bf8e92934d90.jpg\",\"size\":\"full\",\"id\":7935,\"alt\":\"kitchen remodeling contractors\",\"pixels\":1215000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 08:41:29','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(139,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_chimney.jpg','77:c13565f4db43de0992818a3492e355fc',626,'post','attachment',1,34,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_chimney.jpg',NULL,'626','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_chimney.jpg','626','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_chimney.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_chimney.jpg\",\"size\":\"full\",\"id\":626,\"alt\":\"chimney and roof\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 10:41:02','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(140,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath3.jpg','83:dff4161e3685698a6047c740d535c03c',158,'post','attachment',1,412,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath3.jpg',NULL,'158','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaMasterbath3.jpg','158','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaMasterbath3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaMasterbath3.jpg\",\"size\":\"full\",\"id\":158,\"alt\":\"basement remodeling in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 11:13:28','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(141,'https://chicagolandremodeling.com/reviews/jeremy-wong/','54:08f8e3230f5360dfdc3effcbeeca963d',1039,'post','reviews',1,0,NULL,NULL,'Jeremy Wong','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-29 11:55:15','2020-05-29 16:55:15',1,NULL,NULL,NULL,NULL,0,NULL),(142,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen5.jpg','81:414b39ce2ca203405395a778cc9a50a2',347,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen5.jpg',NULL,'347','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen5.jpg','347','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen5.jpg\",\"size\":\"full\",\"id\":347,\"alt\":\"Kitchen Remodel project in Progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 13:01:35','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(143,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg','72:7a57e1fa1ab1faa3774e6bfadae4532e',785,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg',NULL,'785','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg','785','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/bedroom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/bedroom.jpg\",\"size\":\"full\",\"id\":785,\"alt\":\"homely bedroom remodeling project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-29 13:16:20','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(144,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg','84:d6642bfe3ae977941ef9f2ed94307242',784,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg',NULL,'784','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg','784','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/bathroom_remodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/bathroom_remodeling.jpg\",\"size\":\"full\",\"id\":784,\"alt\":\"bathroom after remodeling\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-29 13:49:14','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(145,'https://chicagolandremodeling.com/bwg_gallery/living-room/','58:c21c87b7de1c7ee70d34995a6c8afb26',1349,'post','bwg_gallery',1,0,NULL,NULL,'living room','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11,0,NULL,'2020-05-29 14:10:51','2020-05-29 19:10:51',1,NULL,NULL,NULL,NULL,0,NULL),(146,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-9.png','72:9ee64da875a46ee129c46d4ac3d28e5a',8043,'post','attachment',1,8042,NULL,NULL,'image (9)','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-9.png',NULL,'8043','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-9.png','8043','attachment-image','{\"width\":327,\"height\":88,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-9.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-9.png\",\"size\":\"full\",\"id\":8043,\"alt\":\"\",\"pixels\":28776,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-29 14:26:35','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(147,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg','68:2c456c64cc37858d03ef13ee609e85ff',7941,'post','attachment',1,7939,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg',NULL,'7941','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/313.jpg','7941','attachment-image','{\"width\":1920,\"height\":1397,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/08\\/313.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/08\\/313.jpg\",\"size\":\"full\",\"id\":7941,\"alt\":\"kitchen remodeling contractors\",\"pixels\":2682240,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 14:37:30','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(148,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3.jpg','69:f147ea4a74671ac0475bc0a14e334e89',1007,'post','attachment',1,956,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3.jpg',NULL,'1007','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3.jpg','1007','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/img3.jpg\",\"size\":\"full\",\"id\":1007,\"alt\":\"white funitures in kitchen\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-29 14:46:15','2021-02-03 19:44:45',1,NULL,NULL,NULL,NULL,1,NULL),(149,'https://chicagolandremodeling.com/reviews/randal-parker/','56:77bd2ea87d7b724200b18786c034f549',929,'post','reviews',1,0,NULL,NULL,'Randal Parker','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-29 15:14:18','2020-05-29 20:14:18',1,NULL,NULL,NULL,NULL,0,NULL),(150,'https://chicagolandremodeling.com/reviews/micheal-nguyen/','57:1bed682cd7a2ac9ba142343b83e7f47f',1041,'post','reviews',1,0,NULL,NULL,'Micheal Nguyen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-29 15:21:59','2020-05-29 20:21:59',1,NULL,NULL,NULL,NULL,0,NULL),(151,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath6.jpg','81:9a5c3dc771a23b48d43a181f357ee577',151,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath6.jpg',NULL,'151','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath6.jpg','151','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath6.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath6.jpg\",\"size\":\"full\",\"id\":151,\"alt\":\"hall remodeling in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 15:44:49','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(152,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large.jpg','89:948bbfe802cc31578f6205e20fed9ff3',850,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large.jpg',NULL,'850','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large.jpg','850','attachment-image','{\"width\":320,\"height\":371,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/MapQuest_Tall_Logo_Large.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/MapQuest_Tall_Logo_Large.jpg\",\"size\":\"full\",\"id\":850,\"alt\":\"mapquest logo\",\"pixels\":118720,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-29 15:51:02','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(153,'https://chicagolandremodeling.com/reviews/rick-flores/','54:02315a7a50928f5d17f222c0da790dac',928,'post','reviews',1,0,NULL,NULL,'Rick Flores','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-29 15:56:04','2020-05-29 20:56:04',1,NULL,NULL,NULL,NULL,0,NULL),(154,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen6.jpg','81:2adc80d30644ccc7b4365f9164abd6db',144,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen6.jpg',NULL,'144','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen6.jpg','144','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen6.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen6.jpg\",\"size\":\"full\",\"id\":144,\"alt\":\"Kitchen after Remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 16:53:43','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(155,'https://chicagolandremodeling.com/category/bathroom-menu/','57:c235a247368b6ed7315cf79f32cae693',17,'term','category',NULL,NULL,NULL,NULL,'Bathroom Menu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-29 17:28:28','2020-05-29 22:28:28',1,NULL,NULL,NULL,NULL,0,NULL),(156,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-10.png','73:3cdd52853af636b120a78b7d82da2f34',8050,'post','attachment',1,8047,NULL,NULL,'image (10)','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-10.png',NULL,'8050','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-10.png','8050','attachment-image','{\"width\":341,\"height\":103,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-10.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-10.png\",\"size\":\"full\",\"id\":8050,\"alt\":\"\",\"pixels\":35123,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-29 17:34:17','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(157,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath9.jpg','78:563cba1314f28f057f958414b752eecb',442,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath9.jpg',NULL,'442','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonBath9.jpg','442','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonBath9.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonBath9.jpg\",\"size\":\"full\",\"id\":442,\"alt\":\"bathroom after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 20:37:50','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(158,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath1.jpg','78:31bcc607d31ac0fb61a53e7d645c9b7e',169,'post','attachment',1,447,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath1.jpg',NULL,'169','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath1.jpg','169','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath1.jpg\",\"size\":\"full\",\"id\":169,\"alt\":\"bathroom before renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-29 21:51:24','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(159,'https://chicagolandremodeling.com/reviews/frank-morris/','55:39ac5c476d61b99b7c0c80df791f0aee',921,'post','reviews',1,0,NULL,NULL,'Frank Morris','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-30 00:27:52','2020-05-30 05:27:52',1,NULL,NULL,NULL,NULL,0,NULL),(160,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen5.jpg','81:83bd895a483a9120cc646e57532d3237',143,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen5.jpg',NULL,'143','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen5.jpg','143','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen5.jpg\",\"size\":\"full\",\"id\":143,\"alt\":\"completed Kitchen Remodel project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 05:00:18','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(161,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg','71:7e1f80b0f88ba1c4863b0f0011bdb75f',1017,'post','attachment',1,599,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg',NULL,'1017','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/living.jpg','1017','attachment-image','{\"width\":639,\"height\":381,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/living.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/living.jpg\",\"size\":\"full\",\"id\":1017,\"alt\":\"Basements remodel project\",\"pixels\":243459,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 06:54:03','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(162,'https://chicagolandremodeling.com/roofing-location-b/','53:3406ce6679112d877d282a07681e003b',514,'post','post',1,0,NULL,NULL,'Roofing Location B','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3.png',NULL,'475','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3.png','475','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3.png\",\"size\":\"full\",\"id\":475,\"alt\":\"shingle roof before and after remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-30 07:30:35','2020-05-30 12:30:35',1,NULL,NULL,NULL,NULL,0,NULL),(164,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/officeCommercial.jpg','81:1b642779e27dec85e56cdb078d2a5023',676,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/officeCommercial.jpg',NULL,'676','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/officeCommercial.jpg','676','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/officeCommercial.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/officeCommercial.jpg\",\"size\":\"full\",\"id\":676,\"alt\":\"office remodeling project\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 10:20:39','2020-05-30 15:20:39',1,NULL,NULL,NULL,NULL,0,NULL),(165,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_1.jpg','75:7804f41b0bee39af5f8f7ce399abc2c9',489,'post','attachment',1,199,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_1.jpg',NULL,'489','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_1.jpg','489','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_1.jpg\",\"size\":\"full\",\"id\":489,\"alt\":\"garage roof before repair\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 10:29:02','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(166,'https://chicagolandremodeling.com/reviews/robert-griffin/','57:1b3ce46c06221c06af753dbab6871f87',923,'post','reviews',1,0,NULL,NULL,'Robert Griffin','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-30 13:18:11','2020-05-30 18:18:11',1,NULL,NULL,NULL,NULL,0,NULL),(167,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg','84:2a585e41cd6560a1abf1446e10c91c82',783,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg',NULL,'783','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg','783','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/basement_remodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/basement_remodeling.jpg\",\"size\":\"full\",\"id\":783,\"alt\":\"basement remodeling project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-30 14:38:59','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(168,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen2.jpg','81:8f307dd09b030fc2a3130ded3bfb9284',344,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen2.jpg',NULL,'344','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen2.jpg','344','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen2.jpg\",\"size\":\"full\",\"id\":344,\"alt\":\"walls before renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 14:50:39','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(169,'https://chicagolandremodeling.com/category/decks-menu/','54:23c69f8762a0a9e124c272280c78e20c',19,'term','category',NULL,NULL,NULL,NULL,'Decks &amp; Porches menu',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-30 16:35:24','2020-05-30 21:35:24',1,NULL,NULL,NULL,NULL,0,NULL),(170,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1.png','73:1a2745687e1bb915a9ed56d12d6e3b03',858,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1.png',NULL,'858','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/badgem-1.png','858','attachment-image','{\"width\":466,\"height\":193,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/badgem-1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/badgem-1.png\",\"size\":\"full\",\"id\":858,\"alt\":\"bbb logo\",\"pixels\":89938,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-30 17:36:25','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(171,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512.png','84:1ee871c586679a9ee025df658f6aae54',835,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512.png',NULL,'835','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512.png','835','attachment-image','{\"width\":512,\"height\":512,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/square-facebook-512.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/square-facebook-512.png\",\"size\":\"full\",\"id\":835,\"alt\":\"facebook logo\",\"pixels\":262144,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-30 17:46:31','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(172,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath10.jpg','79:580af1331dc2be4892cd02b00700b1aa',135,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath10.jpg',NULL,'135','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath10.jpg','135','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath10.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath10.jpg\",\"size\":\"full\",\"id\":135,\"alt\":\"new bath after remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 19:01:13','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(173,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/basements.jpg','74:500f58f5ac9d1f9628bf02b47f34b204',671,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/basements.jpg',NULL,'671','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/basements.jpg','671','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/basements.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/basements.jpg\",\"size\":\"full\",\"id\":671,\"alt\":\"elegant style basement remodeling\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 19:24:37','2020-05-31 00:24:37',1,NULL,NULL,NULL,NULL,0,NULL),(174,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen2.jpg','81:84880d0a9dde8da947fbe2d724237546',140,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen2.jpg',NULL,'140','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen2.jpg','140','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen2.jpg\",\"size\":\"full\",\"id\":140,\"alt\":\"uncompleted Kitchen Remodeling project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 19:26:38','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(175,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/roofing1_2.jpg','75:99898b5334f680d257f097440aa7978c',501,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/roofing1_2.jpg',NULL,'501','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/roofing1_2.jpg','501','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/roofing1_2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/roofing1_2.jpg\",\"size\":\"full\",\"id\":501,\"alt\":\"roof damage\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 21:16:06','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(176,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath2.jpg','78:0ca7015f2aff21b9a5e0583396ddacb9',127,'post','attachment',1,439,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath2.jpg',NULL,'127','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonBath2.jpg','127','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonBath2.jpg\",\"size\":\"full\",\"id\":127,\"alt\":\"Bath Before makeover\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-30 21:48:44','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(177,'https://chicagolandremodeling.com/wp-content/uploads/2019/11/chicagoland-home-remodeling-contractors-logo.png','109:89fe52b48083ff0e14d76be4bac89c04',8128,'post','attachment',1,7994,NULL,NULL,'chicagoland-home-remodeling-contractors-logo','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/11/chicagoland-home-remodeling-contractors-logo.png',NULL,'8128','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/11/chicagoland-home-remodeling-contractors-logo.png','8128','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/11\\/chicagoland-home-remodeling-contractors-logo.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/11\\/chicagoland-home-remodeling-contractors-logo.png\",\"size\":\"full\",\"id\":8128,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-30 22:58:36','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(178,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn.png','71:ffb341738bb050d5c578f14d8ae4a37c',872,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn.png',NULL,'872','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn.png','872','attachment-image','{\"width\":1189,\"height\":357,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/bannnn.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/bannnn.png\",\"size\":\"full\",\"id\":872,\"alt\":\"graph\",\"pixels\":424473,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-30 23:54:45','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(179,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen3.jpg','81:9431aeeb8bec156fb5f728ace61b25ed',345,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen3.jpg',NULL,'345','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen3.jpg','345','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen3.jpg\",\"size\":\"full\",\"id\":345,\"alt\":\"Kitchen floor remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-31 06:26:24','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(180,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen3.jpg','81:e0db5bce8130022590df9a0dc247f607',141,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen3.jpg',NULL,'141','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen3.jpg','141','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen3.jpg\",\"size\":\"full\",\"id\":141,\"alt\":\"Kitchen Remodel in Progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-31 09:02:58','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(181,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg','73:f328e48e256ada0b3f9146f59b1aeeda',790,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg',NULL,'790','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg','790','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/painting.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/painting.jpg\",\"size\":\"full\",\"id\":790,\"alt\":\"modern style basements\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-31 10:28:06','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(182,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2.jpg','72:33f6c1a2169910c820d799123c1e279a',815,'post','attachment',1,813,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2.jpg',NULL,'815','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2.jpg','815','attachment-image','{\"width\":1920,\"height\":960,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2.jpg\",\"size\":\"full\",\"id\":815,\"alt\":\"modern style bathroom remodel project\",\"pixels\":1843200,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-31 10:42:36','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(183,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618.png','77:96d9a9808c9a2c2b1d86882b1191d3fa',8010,'post','attachment',1,7986,NULL,NULL,'chicago60618','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618.png',NULL,'8010','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618.png','8010','attachment-image','{\"width\":331,\"height\":105,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/chicago60618.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/chicago60618.png\",\"size\":\"full\",\"id\":8010,\"alt\":\"\",\"pixels\":34755,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-31 11:12:36','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(184,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015.png','75:f45b6ec8e5965becd9dbb1a7c33cdb18',880,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015.png',NULL,'880','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015.png','880','attachment-image','{\"width\":529,\"height\":437,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/angie-2015.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/angie-2015.png\",\"size\":\"full\",\"id\":880,\"alt\":\"angie\'s list logo\",\"pixels\":231173,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-05-31 12:15:28','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(185,'https://chicagolandremodeling.com/reviews/taylor-weaver/','56:64251d905e5cac0dc1e7bb1ff2dce0b0',1043,'post','reviews',1,0,NULL,NULL,'Taylor Weaver','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-31 13:04:51','2020-05-31 18:04:51',1,NULL,NULL,NULL,NULL,0,NULL),(186,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60606.png','70:30dbfae4aaebd301c80501021b225cd6',8022,'post','attachment',1,7996,NULL,NULL,'60606','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60606.png',NULL,'8022','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60606.png','8022','attachment-image','{\"width\":302,\"height\":80,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60606.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60606.png\",\"size\":\"full\",\"id\":8022,\"alt\":\"\",\"pixels\":24160,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-31 13:35:38','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(187,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg','76:f4ea5cd0f3dfd1ff983121da2f0825d9',788,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg',NULL,'788','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg','788','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/family_room.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/family_room.jpg\",\"size\":\"full\",\"id\":788,\"alt\":\"living room project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-05-31 16:34:41','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(188,'https://chicagolandremodeling.com/lake-shore-drive-2/','53:70c7f91b62f5559793036f43a0d60a85',399,'post','post',1,0,NULL,NULL,'Lake Shore Drive','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/LSDkitchen.png',NULL,'269','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/LSDkitchen.png','269','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/LSDkitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/LSDkitchen.png\",\"size\":\"full\",\"id\":269,\"alt\":\"kitchen before and after remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-31 18:12:10','2020-05-31 23:12:10',1,NULL,NULL,NULL,NULL,0,NULL),(189,'https://chicagolandremodeling.com/reviews/dwayne-vega/','54:0a1a13aa64deb9f03773e3dc50be142b',1030,'post','reviews',1,0,NULL,NULL,'Dwayne Vega','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-31 18:44:47','2020-05-31 23:44:47',1,NULL,NULL,NULL,NULL,0,NULL),(190,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding1.jpg','78:023f8ec34ba2f3583d328b122f59f013',104,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding1.jpg',NULL,'104','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding1.jpg','104','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding1.jpg\",\"size\":\"full\",\"id\":104,\"alt\":\"siding before renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-31 20:48:43','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(191,'https://chicagolandremodeling.com/reviews/bernice-carson/','57:8337ce9e05ea552ff8d612f467820872',1034,'post','reviews',1,0,NULL,NULL,'Bernice Carson','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 02:06:56','2020-06-01 07:06:56',1,NULL,NULL,NULL,NULL,0,NULL),(192,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613-nazwa-listing.png','84:269e43fd3d09673e1b97a8c531871b7a',8033,'post','attachment',1,8030,NULL,NULL,'60613-nazwa listing','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613-nazwa-listing.png',NULL,'8033','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/60613-nazwa-listing.png','8033','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60613-nazwa-listing.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/60613-nazwa-listing.png\",\"size\":\"full\",\"id\":8033,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-01 02:42:46','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(193,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath1.jpg','81:38f2575d477a03604099956eeac04869',146,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath1.jpg',NULL,'146','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath1.jpg','146','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath1.jpg\",\"size\":\"full\",\"id\":146,\"alt\":\"toilet before remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-01 09:43:08','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(194,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles3.jpg','74:c7af09ab4926a20d921a5a65b99d063b',312,'post','attachment',1,231,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles3.jpg',NULL,'312','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles3.jpg','312','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles3.jpg\",\"size\":\"full\",\"id\":312,\"alt\":\"Shingle roof after remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-01 12:01:58','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(195,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath3.jpg','81:f79f249ea7eeceb7ef089a352b62b05d',148,'post','attachment',1,403,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath3.jpg',NULL,'148','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mendotaHallbath3.jpg','148','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mendotaHallbath3.jpg\",\"size\":\"full\",\"id\":148,\"alt\":\"contractors during glaze remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-01 15:37:44','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(196,'https://chicagolandremodeling.com/reviews/edmund-newton/','56:6171f753c5611cfd6c22a22941b852c3',1036,'post','reviews',1,0,NULL,NULL,'Edmund Newton','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:48:19','2020-06-02 00:48:19',1,NULL,NULL,NULL,NULL,0,NULL),(197,'https://chicagolandremodeling.com/reviews/elena-daniels/','56:26ad25913b7d4cb6a74b16ae05524401',1044,'post','reviews',1,0,NULL,NULL,'Elena Daniels','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:53:01','2020-06-02 00:53:01',1,NULL,NULL,NULL,NULL,0,NULL),(198,'https://chicagolandremodeling.com/reviews/jeff-obrien/','54:b23b5a632b46f590963304a3027731ed',922,'post','reviews',1,0,NULL,NULL,'Jeff Obrien','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:54:12','2020-06-02 00:54:12',1,NULL,NULL,NULL,NULL,0,NULL),(199,'https://chicagolandremodeling.com/reviews/sarah-huff/','53:826f5a384d91166724de5bde64d4abef',924,'post','reviews',1,0,NULL,NULL,'Sarah Huff','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:55:53','2020-06-02 00:55:53',1,NULL,NULL,NULL,NULL,0,NULL),(200,'https://chicagolandremodeling.com/reviews/kelly-osborne/','56:29fac55a9ee5f4ecaa7e4a7b09fb4ce0',925,'post','reviews',1,0,NULL,NULL,'Kelly Osborne','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:56:38','2020-06-02 00:56:38',1,NULL,NULL,NULL,NULL,0,NULL),(201,'https://chicagolandremodeling.com/reviews/harry-chapman/','56:fc6e7acc981621bcb0deaad9f42311be',926,'post','reviews',1,0,NULL,NULL,'Harry Chapman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-01 19:57:02','2020-06-02 00:57:02',1,NULL,NULL,NULL,NULL,0,NULL),(202,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-02 00:15:54','2020-09-24 17:01:40',1,NULL,NULL,NULL,NULL,0,NULL),(203,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen12.jpg','77:fa38435403e04ddecb4da2ce2171fd40',124,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen12.jpg',NULL,'124','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen12.jpg','124','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen12.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen12.jpg\",\"size\":\"full\",\"id\":124,\"alt\":\"kitchen funiture and household articles\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-02 09:59:47','2020-06-02 14:59:47',1,NULL,NULL,NULL,NULL,0,NULL),(204,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_windows.jpg','77:adb70dc5c0d36fc4ca4f51a1940e9d41',639,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_windows.jpg',NULL,'639','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_windows.jpg','639','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_windows.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_windows.jpg\",\"size\":\"full\",\"id\":639,\"alt\":\"window\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-02 12:50:43','2020-06-02 17:50:43',1,NULL,NULL,NULL,NULL,0,NULL),(205,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618-1.png','79:3a7a8b9f1556a07ab71102c5c80412c6',8024,'post','attachment',1,7996,NULL,NULL,'chicago60618','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618-1.png',NULL,'8024','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/07/chicago60618-1.png','8024','attachment-image','{\"width\":331,\"height\":105,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/chicago60618-1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/07\\/chicago60618-1.png\",\"size\":\"full\",\"id\":8024,\"alt\":\"\",\"pixels\":34755,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-02 17:55:30','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(206,'https://chicagolandremodeling.com/chimney/','42:a4dbed76050fe1fb038db6b6a5931343',234,'post','post',1,0,'When you need a new chimney you need Chicagoland Remodeling!','Chicagoland Remodeling is a top rated and reliable roofing and chimney repair and installation company. Fast and affordable quality work. Call us today for a free estimate.','Chimney','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/chimneys.png',NULL,'301','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/chimneys.png','301','featured-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/chimneys.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/chimneys.png\",\"size\":\"full\",\"id\":301,\"alt\":\"chimneys remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-02 18:29:06','2020-06-02 23:29:06',1,NULL,NULL,NULL,NULL,0,NULL),(207,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_2.jpg','75:d245a0864589a39e5dd6fec05d5e2c73',490,'post','attachment',1,199,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_2.jpg',NULL,'490','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2_2.jpg','490','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2_2.jpg\",\"size\":\"full\",\"id\":490,\"alt\":\"roof relacement project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-02 20:27:22','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(208,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen6.jpg','81:72fb6c5cbbe21a9e3d3c7c7968dda551',348,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen6.jpg',NULL,'348','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen6.jpg','348','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen6.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen6.jpg\",\"size\":\"full\",\"id\":348,\"alt\":\"Kitchen Remodel in Progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-02 20:30:00','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(209,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_3.jpg','75:9a38cddfa2216c892b908dfaaca23bd0',488,'post','attachment',1,186,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_3.jpg',NULL,'488','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1_3.jpg','488','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1_3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1_3.jpg\",\"size\":\"full\",\"id\":488,\"alt\":\"roof renovation project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-02 20:36:49','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(210,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-8.png','72:ebb39e1cbfcdbd4f91afac6e03415b78',8041,'post','attachment',1,8039,NULL,NULL,'image (8)','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-8.png',NULL,'8041','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/image-8.png','8041','attachment-image','{\"width\":293,\"height\":77,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-8.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/image-8.png\",\"size\":\"full\",\"id\":8041,\"alt\":\"\",\"pixels\":22561,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-02 21:13:28','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(211,'https://chicagolandremodeling.com/bwg_gallery/gallery/','54:0a88de3c9e74e2f28bc61e1f8f62cd4d',1346,'post','bwg_gallery',1,0,NULL,NULL,'gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31,0,NULL,'2020-06-03 03:45:54','2020-06-03 08:45:54',1,NULL,NULL,NULL,NULL,0,NULL),(212,'https://chicagolandremodeling.com/bwg_gallery/bathroom/','55:31ca310cddba5873f3242386c201082c',1347,'post','bwg_gallery',1,0,NULL,NULL,'bathroom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31,0,NULL,'2020-06-03 04:52:58','2020-06-03 09:52:58',1,NULL,NULL,NULL,NULL,0,NULL),(213,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_stairs.jpg','76:c27f6918ca605b79cc1eeaa0204f1d06',638,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_stairs.jpg',NULL,'638','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_stairs.jpg','638','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_stairs.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_stairs.jpg\",\"size\":\"full\",\"id\":638,\"alt\":\"stairs\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-04 07:57:41','2020-06-04 12:57:41',1,NULL,NULL,NULL,NULL,0,NULL),(214,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_shingles.jpg','78:060a3c1a8d8c684f19489c6248528fae',637,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_shingles.jpg',NULL,'637','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_shingles.jpg','637','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_shingles.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_shingles.jpg\",\"size\":\"full\",\"id\":637,\"alt\":\"shingle roof\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-04 14:05:45','2020-06-04 19:05:45',1,NULL,NULL,NULL,NULL,0,NULL),(215,'https://chicagolandremodeling.com/bwg_gallery/kitchen/','54:e50125cb6d23132cf9b4d1610800aaf8',1348,'post','bwg_gallery',1,0,NULL,NULL,'kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31,0,NULL,'2020-06-04 22:16:09','2020-06-05 03:16:09',1,NULL,NULL,NULL,NULL,0,NULL),(216,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath3.jpg','78:acc4179bd5f7fe7fcde82dfad373eaff',171,'post','attachment',1,447,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath3.jpg',NULL,'171','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/seminaryBath3.jpg','171','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/seminaryBath3.jpg\",\"size\":\"full\",\"id\":171,\"alt\":\"bathroom before makeover\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 02:23:10','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(217,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen4.jpg','81:4dd3e550970ec241e0928c3def9d9eb1',142,'post','attachment',1,333,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen4.jpg',NULL,'142','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/mattesonKitchen4.jpg','142','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/mattesonKitchen4.jpg\",\"size\":\"full\",\"id\":142,\"alt\":\"Kitchen after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 07:02:04','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(218,'https://chicagolandremodeling.com/reviews/randal-jenkins/','57:29d05963538387aaa230a947e54efac2',1032,'post','reviews',1,0,NULL,NULL,'Randal Jenkins','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 10:31:06','2020-06-05 15:31:06',1,NULL,NULL,NULL,NULL,0,NULL),(219,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg','74:181292d27207445e1e623d1aa5bf9436',919,'post','attachment',1,816,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg',NULL,'919','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/slider2-2.jpg','919','attachment-image','{\"width\":1920,\"height\":750,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2-2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/slider2-2.jpg\",\"size\":\"full\",\"id\":919,\"alt\":\"bathroom with grey tiles\",\"pixels\":1440000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-07 01:04:37','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(220,'https://chicagolandremodeling.com/reviews/amelia-sanchez/','57:5ef119025e8887818a642294c7bdbc2d',1033,'post','reviews',1,0,NULL,NULL,'Amelia Sanchez','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-07 02:04:55','2020-06-07 07:04:55',1,NULL,NULL,NULL,NULL,0,NULL),(221,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen4.jpg','81:bb226eacfe048bd7a434e3440a7bf97b',346,'post','attachment',1,336,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen4.jpg',NULL,'346','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersKitchen4.jpg','346','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersKitchen4.jpg\",\"size\":\"full\",\"id\":346,\"alt\":\"Kitchen Wall Removed\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-07 04:13:41','2020-06-29 10:37:20',1,NULL,NULL,NULL,NULL,1,NULL),(222,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_roofing.jpg','77:0a906c25a6e16f22022aa48390da0f18',636,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_roofing.jpg',NULL,'636','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_roofing.jpg','636','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_roofing.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_roofing.jpg\",\"size\":\"full\",\"id\":636,\"alt\":\"roof\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-07 05:03:04','2020-06-07 10:03:04',1,NULL,NULL,NULL,NULL,0,NULL),(223,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60639.png','70:c93ec787e52b52c9814beb191a166d74',8037,'post','attachment',1,8035,NULL,NULL,'60639','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60639.png',NULL,'8037','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/60639.png','8037','attachment-image','{\"width\":300,\"height\":99,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/60639.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/60639.png\",\"size\":\"full\",\"id\":8037,\"alt\":\"\",\"pixels\":29700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-07 23:47:35','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,1,NULL),(224,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg','123:8585565d8c67ba466e620a13ee845c5b',1141,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg',NULL,'1141','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg','1141','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg\",\"size\":\"full\",\"id\":1141,\"alt\":\"home after remodeling\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-06-08 02:08:33','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,0,NULL),(225,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_patios.jpg','76:591b6c5f985f4d022d20c8753714338c',635,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_patios.jpg',NULL,'635','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_patios.jpg','635','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_patios.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_patios.jpg\",\"size\":\"full\",\"id\":635,\"alt\":\"icon\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-08 06:53:50','2020-06-08 11:53:50',1,NULL,NULL,NULL,NULL,0,NULL),(226,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingOutdoor.jpg','85:863aceb419f1c05815371d17a926af95',634,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingOutdoor.jpg',NULL,'634','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingOutdoor.jpg','634','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_paintingOutdoor.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_paintingOutdoor.jpg\",\"size\":\"full\",\"id\":634,\"alt\":\"roof\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-09 07:30:34','2020-06-09 12:30:34',1,NULL,NULL,NULL,NULL,0,NULL),(228,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingIndoor.jpg','84:0c2960208fb9054edd91f3561b7f99a7',633,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingIndoor.jpg',NULL,'633','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_paintingIndoor.jpg','633','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_paintingIndoor.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_paintingIndoor.jpg\",\"size\":\"full\",\"id\":633,\"alt\":\"living room\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-10 19:08:00','2020-06-11 00:08:00',1,NULL,NULL,NULL,NULL,0,NULL),(229,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/DSC05754.jpg','73:8a43c61ca22832f2bd392aff5a03b58e',1139,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/DSC05754.jpg',NULL,'1139','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/DSC05754.jpg','1139','attachment-image','{\"width\":1200,\"height\":900,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/DSC05754.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/DSC05754.jpg\",\"size\":\"full\",\"id\":1139,\"alt\":\"completed home remodeling project\",\"pixels\":1080000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-11 01:19:59','2020-06-11 06:19:59',1,NULL,NULL,NULL,NULL,0,NULL),(230,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/settings.png','73:4cc57b323cb816e9da8a8f6373769435',1330,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/settings.png',NULL,'1330','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/settings.png','1330','attachment-image','{\"width\":512,\"height\":512,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/settings.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/settings.png\",\"size\":\"full\",\"id\":1330,\"alt\":\"settings logo\",\"pixels\":262144,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-06-11 11:28:55','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,0,NULL),(231,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg','83:e51f5c3cca0da6d7d9236516611aa047',789,'post','attachment',1,8,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg',NULL,'789','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg','789','attachment-image','{\"width\":293,\"height\":293,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/kitchen_remodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2016\\/12\\/kitchen_remodeling.jpg\",\"size\":\"full\",\"id\":789,\"alt\":\"homely kitchen remodel project\",\"pixels\":85849,\"type\":\"image\\/jpeg\"}',NULL,1,NULL,'2020-06-12 04:51:44','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,1,NULL),(232,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen.png','75:ebf86e647f56bc149f5e35179ca84394',112,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen.png',NULL,'112','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen.png','112','attachment-image','{\"width\":\"486\",\"height\":\"250\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen.png\",\"size\":\"full\",\"id\":112,\"alt\":\"kitchen before and after renovation\",\"pixels\":121500,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-12 21:17:36','2020-06-13 02:17:36',1,NULL,NULL,NULL,NULL,0,NULL),(233,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen1.jpg','76:dcf48f952728016749185e45f7240a9b',113,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen1.jpg',NULL,'113','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen1.jpg','113','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen1.jpg\",\"size\":\"full\",\"id\":113,\"alt\":\"kitchen before remodeling by Chicagoland Remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-12 21:42:20','2020-06-13 02:42:20',1,NULL,NULL,NULL,NULL,0,NULL),(234,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen2.jpg','76:93661560a84904a68e40cc1af4bd4024',114,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen2.jpg',NULL,'114','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen2.jpg','114','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen2.jpg\",\"size\":\"full\",\"id\":114,\"alt\":\"kitchen before remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-12 21:52:41','2020-06-13 02:52:41',1,NULL,NULL,NULL,NULL,0,NULL),(235,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen3.jpg','76:604ea3980dca89524940d0ae78fdadfd',115,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen3.jpg',NULL,'115','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen3.jpg','115','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen3.jpg\",\"size\":\"full\",\"id\":115,\"alt\":\"kitchen before renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-12 22:01:51','2020-06-13 03:01:51',1,NULL,NULL,NULL,NULL,0,NULL),(236,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen4.jpg','76:716cb377da58f116e1a855c0f2cc1004',116,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen4.jpg',NULL,'116','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/LSDkitchen4.jpg','116','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/LSDkitchen4.jpg\",\"size\":\"full\",\"id\":116,\"alt\":\"kitchen remodeling in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-12 23:14:47','2020-06-13 04:14:47',1,NULL,NULL,NULL,NULL,0,NULL),(237,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2.png','73:772e938b72373c284027b121a7a69988',474,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2.png',NULL,'474','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing2.png','474','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing2.png\",\"size\":\"full\",\"id\":474,\"alt\":\"roof before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-13 04:29:48','2020-06-13 09:29:48',1,NULL,NULL,NULL,NULL,0,NULL),(238,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1.png','73:93593264fa1e8ac7e19acdb608619cbe',473,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1.png',NULL,'473','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing1.png','473','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing1.png\",\"size\":\"full\",\"id\":473,\"alt\":\"remodeling contractors on roof\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-13 04:46:25','2020-06-13 09:46:25',1,NULL,NULL,NULL,NULL,0,NULL),(239,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3.png','73:386b06f5a2a05257e8d33d7c5fa8e9ca',475,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3.png',NULL,'475','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3.png','475','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3.png\",\"size\":\"full\",\"id\":475,\"alt\":\"shingle roof before and after remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-13 04:48:47','2020-06-13 09:48:47',1,NULL,NULL,NULL,NULL,0,NULL),(240,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/freeEstimate.jpg','77:6e106e3cc40003df152dd332f27357bf',471,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/freeEstimate.jpg',NULL,'471','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/freeEstimate.jpg','471','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/freeEstimate.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/freeEstimate.jpg\",\"size\":\"full\",\"id\":471,\"alt\":\"calculator\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:03:54','2020-06-13 10:03:54',1,NULL,NULL,NULL,NULL,0,NULL),(241,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/contactUs.jpg','74:0c24f3cadff27ee8cc8b0fb51081b282',470,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/contactUs.jpg',NULL,'470','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/contactUs.jpg','470','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/contactUs.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/contactUs.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"remodeling contractors\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:09:03','2020-06-13 10:09:03',1,NULL,NULL,NULL,NULL,0,NULL),(242,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4.png','73:d56bfd68fed9f9758a59867ecf4f9d51',476,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4.png',NULL,'476','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4.png','476','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4.png\",\"size\":\"full\",\"id\":476,\"alt\":\"roof before and after remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-13 05:18:13','2020-06-13 10:18:13',1,NULL,NULL,NULL,NULL,0,NULL),(243,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/seminaryBathroom1.png','82:fe66f0f239f2320a82eebe08813ac074',449,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/seminaryBathroom1.png',NULL,'449','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/seminaryBathroom1.png','449','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/seminaryBathroom1.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/seminaryBathroom1.png\",\"size\":\"full\",\"id\":449,\"alt\":\"bathroom before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-13 05:35:11','2020-06-13 10:35:11',1,NULL,NULL,NULL,NULL,0,NULL),(244,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting1.jpg','74:a95aa7ede6fc0d18cd31781b9594403b',477,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting1.jpg',NULL,'477','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting1.jpg','477','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting1.jpg\",\"size\":\"full\",\"id\":477,\"alt\":\"living room before makeover\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:36:05','2020-06-13 10:36:05',1,NULL,NULL,NULL,NULL,0,NULL),(245,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersBath8.jpg','78:0bbd8026f87dc207023b36c59a3f5c20',431,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersBath8.jpg',NULL,'431','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersBath8.jpg','431','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersBath8.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersBath8.jpg\",\"size\":\"full\",\"id\":431,\"alt\":\"shower after remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:39:56','2020-06-13 10:39:56',1,NULL,NULL,NULL,NULL,0,NULL),(246,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting2.jpg','74:159b35fbdba42ddf83ab92c31c9fc969',478,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting2.jpg',NULL,'478','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting2.jpg','478','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting2.jpg\",\"size\":\"full\",\"id\":478,\"alt\":\"living room after remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:42:11','2020-06-13 10:42:11',1,NULL,NULL,NULL,NULL,0,NULL),(247,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting3.jpg','74:b18252f143247ca57e0f276b458112b3',479,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting3.jpg',NULL,'479','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/painting3.jpg','479','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/painting3.jpg\",\"size\":\"full\",\"id\":479,\"alt\":\"living room after makeover\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:50:41','2020-06-13 10:50:41',1,NULL,NULL,NULL,NULL,0,NULL),(248,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel1.jpg','73:c16222aefac601e483bda20b5820332f',480,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel1.jpg',NULL,'480','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel1.jpg','480','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel1.jpg\",\"size\":\"full\",\"id\":480,\"alt\":\"room before remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 05:54:23','2020-06-13 10:54:23',1,NULL,NULL,NULL,NULL,0,NULL),(249,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel2.jpg','73:3123db26006ad36aa0488fa6bbc6fcc1',481,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel2.jpg',NULL,'481','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel2.jpg','481','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel2.jpg\",\"size\":\"full\",\"id\":481,\"alt\":\"ceiling before remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:02:32','2020-06-13 11:02:32',1,NULL,NULL,NULL,NULL,0,NULL),(250,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel3.jpg','73:8b33962c6afdbfc7cd4b2427852c933d',482,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel3.jpg',NULL,'482','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel3.jpg','482','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel3.jpg\",\"size\":\"full\",\"id\":482,\"alt\":\"finished living room remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:02:50','2020-06-13 11:02:50',1,NULL,NULL,NULL,NULL,0,NULL),(251,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel4.jpg','73:58878eaea09f4e5563d18efff7a027cf',483,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel4.jpg',NULL,'483','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel4.jpg','483','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel4.jpg\",\"size\":\"full\",\"id\":483,\"alt\":\"house before remodel\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:04:26','2020-06-13 11:04:26',1,NULL,NULL,NULL,NULL,0,NULL),(252,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel5.jpg','73:2e0ee442c03e850dc47f52e65747bfcf',484,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel5.jpg',NULL,'484','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel5.jpg','484','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel5.jpg\",\"size\":\"full\",\"id\":484,\"alt\":\"living room after remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:05:54','2020-06-13 11:05:54',1,NULL,NULL,NULL,NULL,0,NULL),(253,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel6.jpg','73:3d7bb78142cdc33923c0f06d6eeb345a',485,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel6.jpg',NULL,'485','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodel6.jpg','485','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel6.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodel6.jpg\",\"size\":\"full\",\"id\":485,\"alt\":\"completed living room reodeling project\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:07:15','2020-06-13 11:07:15',1,NULL,NULL,NULL,NULL,0,NULL),(254,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_1.jpg','75:7ee5b736d9fe3a11e9fa7fda9ea2f976',492,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_1.jpg',NULL,'492','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_1.jpg','492','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_1.jpg\",\"size\":\"full\",\"id\":492,\"alt\":\"roof before repair\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:09:05','2020-06-13 11:09:05',1,NULL,NULL,NULL,NULL,0,NULL),(255,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_2.jpg','75:420c47ec887ceca53b129b02f052a9a6',493,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_2.jpg',NULL,'493','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_2.jpg','493','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_2.jpg\",\"size\":\"full\",\"id\":493,\"alt\":\"roof and chimney before replacement\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:11:14','2020-06-13 11:11:14',1,NULL,NULL,NULL,NULL,0,NULL),(256,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_3.jpg','75:261c2ce84591de69caaff3e02a7f8f20',494,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_3.jpg',NULL,'494','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_3.jpg','494','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_3.jpg\",\"size\":\"full\",\"id\":494,\"alt\":\"chimney and roof after replacement\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:12:49','2020-06-13 11:12:49',1,NULL,NULL,NULL,NULL,0,NULL),(257,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_4.jpg','75:d60398f69a4947f09ddb84da17cf4891',495,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_4.jpg',NULL,'495','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_4.jpg','495','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_4.jpg\",\"size\":\"full\",\"id\":495,\"alt\":\"shingle roof after replacement\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:13:58','2020-06-13 11:13:58',1,NULL,NULL,NULL,NULL,0,NULL),(258,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_5.jpg','75:05adc87b64dfa797b5bc1e60451bc305',496,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_5.jpg',NULL,'496','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing3_5.jpg','496','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing3_5.jpg\",\"size\":\"full\",\"id\":496,\"alt\":\"house after renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:17:51','2020-06-13 11:17:51',1,NULL,NULL,NULL,NULL,0,NULL),(259,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_1.jpg','75:d34588200f16c47882eeff6104e846ae',497,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_1.jpg',NULL,'497','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_1.jpg','497','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4_1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing4_1.jpg\",\"size\":\"full\",\"id\":497,\"alt\":\"roof damaged\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-13 06:19:29','2020-06-13 11:19:29',1,NULL,NULL,NULL,NULL,0,NULL),(260,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_officesCommercial.jpg','87:22b1e1efdd546c88d56684e538d7e3bc',632,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_officesCommercial.jpg',NULL,'632','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_officesCommercial.jpg','632','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_officesCommercial.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_officesCommercial.jpg\",\"size\":\"full\",\"id\":632,\"alt\":\"office\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-14 08:19:30','2020-06-14 13:19:30',1,NULL,NULL,NULL,NULL,0,NULL),(261,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_kitchens.jpg','78:82236cc9155863f2d599cee8528ff4a2',631,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_kitchens.jpg',NULL,'631','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_kitchens.jpg','631','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_kitchens.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_kitchens.jpg\",\"size\":\"full\",\"id\":631,\"alt\":\"kitchen\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-15 14:25:18','2020-06-15 19:25:18',1,NULL,NULL,NULL,NULL,0,NULL),(262,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg','114:425131b741a50bfb2edaf620dc7e1f75',8001,'post','attachment',1,0,NULL,NULL,'custom-kitchen-remodel-dallas-tx-joseph-and-berry','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg',NULL,'8001','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg','8001','attachment-image','{\"width\":1040,\"height\":800,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/06\\/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/06\\/custom-kitchen-remodel-dallas-tx-joseph-and-berry.jpg\",\"size\":\"full\",\"id\":8001,\"alt\":\"\",\"pixels\":832000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-16 16:55:33','2020-06-16 21:55:33',1,NULL,NULL,NULL,NULL,0,NULL),(263,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/bathroom-1597027_1920.jpg','86:932837eb031c92fa27e7e1eae3cf281c',8092,'post','attachment',1,0,NULL,NULL,'bathroom-1597027_1920','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/bathroom-1597027_1920.jpg',NULL,'8092','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/bathroom-1597027_1920.jpg','8092','attachment-image','{\"width\":960,\"height\":1280,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/bathroom-1597027_1920.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/bathroom-1597027_1920.jpg\",\"size\":\"full\",\"id\":8092,\"alt\":\"\",\"pixels\":1228800,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-16 17:30:05','2020-06-16 22:30:05',1,NULL,NULL,NULL,NULL,0,NULL),(264,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/5_stelle.png','73:323ac0bc4c674126bc84f429c331ab2b',8072,'post','attachment',1,0,NULL,NULL,'5_stelle','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/5_stelle.png',NULL,'8072','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/5_stelle.png','8072','attachment-image','{\"width\":83,\"height\":15,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/5_stelle.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/5_stelle.png\",\"size\":\"full\",\"id\":8072,\"alt\":\"\",\"pixels\":1245,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-16 19:22:18','2020-06-17 00:22:18',1,NULL,NULL,NULL,NULL,0,NULL),(265,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/cr1.jpg','68:9c5c3233fe6e6ef7481f439eb7fb5e43',1149,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/cr1.jpg',NULL,'1149','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/cr1.jpg','1149','attachment-image','{\"width\":2000,\"height\":1499,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/cr1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/cr1.jpg\",\"size\":\"full\",\"id\":1149,\"alt\":\"kitchen remodeling project chicago\",\"pixels\":2998000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-16 20:29:27','2020-06-17 01:29:27',1,NULL,NULL,NULL,NULL,0,NULL),(266,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bahtrom.jpg','72:73293bb3005374b168f63b63889509f8',1091,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bahtrom.jpg',NULL,'1091','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/bahtrom.jpg','1091','attachment-image','{\"width\":1200,\"height\":550,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bahtrom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/bahtrom.jpg\",\"size\":\"full\",\"id\":1091,\"alt\":\"bathroom project remodeling\",\"pixels\":660000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-16 20:45:11','2020-06-17 01:45:11',1,NULL,NULL,NULL,NULL,0,NULL),(267,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/ico.png','68:242744392636420dffd9263234601b5f',933,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/ico.png',NULL,'933','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/ico.png','933','attachment-image','{\"width\":65,\"height\":65,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/ico.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/ico.png\",\"size\":\"full\",\"id\":933,\"alt\":\"ico logo\",\"pixels\":4225,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-16 23:56:31','2020-06-17 04:56:31',1,NULL,NULL,NULL,NULL,0,NULL),(268,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg','181:22231690240a4b251c026d34e23d8435',8002,'post','attachment',1,0,NULL,NULL,'new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg',NULL,'8002','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/06/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg','8002','attachment-image','{\"width\":1040,\"height\":800,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/06\\/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/06\\/new-bathroom-ideas-bathroom-showrooms-bathroom-remodeling-ct-bathroom-remodeling-miami-master-bathroom-remodel-ideas.jpg\",\"size\":\"full\",\"id\":8002,\"alt\":\"\",\"pixels\":832000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 00:42:37','2020-06-17 05:42:37',1,NULL,NULL,NULL,NULL,0,NULL),(269,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/2014-11-04-kitchenremodel.jpg','90:640c026089929d1901c5f47ef75ecafb',1047,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/2014-11-04-kitchenremodel.jpg',NULL,'1047','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/2014-11-04-kitchenremodel.jpg','1047','attachment-image','{\"width\":1677,\"height\":1145,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/2014-11-04-kitchenremodel.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/2014-11-04-kitchenremodel.jpg\",\"size\":\"full\",\"id\":1047,\"alt\":\"\",\"pixels\":1920165,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 01:44:25','2020-06-17 06:44:25',1,NULL,NULL,NULL,NULL,0,NULL),(270,'https://chicagolandremodeling.com/wp-content/uploads/2018/04/call-answer.png','76:5094f30d1e3f640df6990cd1833a2789',3458,'post','attachment',1,0,NULL,NULL,'call-answer','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/04/call-answer.png',NULL,'3458','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/04/call-answer.png','3458','attachment-image','{\"width\":\"32\",\"height\":\"32\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/04\\/call-answer.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2018\\/04\\/call-answer.png\",\"size\":\"full\",\"id\":3458,\"alt\":\"\",\"pixels\":1024,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-17 03:01:41','2020-06-17 08:01:41',1,NULL,NULL,NULL,NULL,0,NULL),(271,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/living.jpg','71:7385b51150168d37454d592acb736a4a',1090,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/living.jpg',NULL,'1090','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/living.jpg','1090','attachment-image','{\"width\":1200,\"height\":550,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/living.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/living.jpg\",\"size\":\"full\",\"id\":1090,\"alt\":\"living room remodeling\",\"pixels\":660000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 04:47:00','2020-06-17 09:47:00',1,NULL,NULL,NULL,NULL,0,NULL),(272,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/Exceptional-Home-Remodeling-Image.jpg','98:32c9447011e80b717cfa7fae7df7fdc3',8081,'post','attachment',1,0,NULL,NULL,'Exceptional Home Remodeling Image','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/Exceptional-Home-Remodeling-Image.jpg',NULL,'8081','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/Exceptional-Home-Remodeling-Image.jpg','8081','attachment-image','{\"width\":497,\"height\":662,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/Exceptional-Home-Remodeling-Image.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/Exceptional-Home-Remodeling-Image.jpg\",\"size\":\"full\",\"id\":8081,\"alt\":\"\",\"pixels\":329014,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 06:15:04','2020-06-17 11:15:04',1,NULL,NULL,NULL,NULL,0,NULL),(273,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/18893McSweeney_after-11.jpg','88:0b765b358de47eb461900682773d1a6a',1046,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/18893McSweeney_after-11.jpg',NULL,'1046','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/18893McSweeney_after-11.jpg','1046','attachment-image','{\"width\":1200,\"height\":550,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/18893McSweeney_after-11.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/02\\/18893McSweeney_after-11.jpg\",\"size\":\"full\",\"id\":1046,\"alt\":\"modern kitchen remodeling project\",\"pixels\":660000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 06:56:10','2020-06-17 11:56:10',1,NULL,NULL,NULL,NULL,0,NULL),(274,'https://chicagolandremodeling.com/wp-content/uploads/2017/05/customCherryWoodOffice.jpg','87:a6bdfdf5d89bb5a366025a72a56a55f1',1187,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/05/customCherryWoodOffice.jpg',NULL,'1187','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/05/customCherryWoodOffice.jpg','1187','attachment-image','{\"width\":930,\"height\":550,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/05\\/customCherryWoodOffice.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/05\\/customCherryWoodOffice.jpg\",\"size\":\"full\",\"id\":1187,\"alt\":\"office room remodeling\",\"pixels\":511500,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 13:02:47','2020-06-17 18:02:47',1,NULL,NULL,NULL,NULL,0,NULL),(275,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-2014860_1920.jpg','85:d7be30a078d1dffebe6dba1d9939d398',8087,'post','attachment',1,0,NULL,NULL,'kitchen-2014860_1920','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-2014860_1920.jpg',NULL,'8087','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-2014860_1920.jpg','8087','attachment-image','{\"width\":620,\"height\":869,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/kitchen-2014860_1920.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/kitchen-2014860_1920.jpg\",\"size\":\"full\",\"id\":8087,\"alt\":\"\",\"pixels\":538780,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-17 14:21:02','2020-06-17 19:21:02',1,NULL,NULL,NULL,NULL,0,NULL),(276,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image-2.png','80:da8e1e5097625d0e10d48b49098267c7',8063,'post','attachment',1,0,NULL,NULL,'roselle-image-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image-2.png',NULL,'8063','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image-2.png','8063','attachment-image','{\"width\":1102,\"height\":785,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/roselle-image-2.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/roselle-image-2.png\",\"size\":\"full\",\"id\":8063,\"alt\":\"\",\"pixels\":865070,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-17 16:38:20','2020-06-17 21:38:20',1,NULL,NULL,NULL,NULL,0,NULL),(277,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/service-2.jpg','74:025c18c79ff988066b02653babd67788',1140,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/service-2.jpg',NULL,'1140','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/service-2.jpg','1140','attachment-image','{\"width\":369,\"height\":233,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/service-2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/04\\/service-2.jpg\",\"size\":\"full\",\"id\":1140,\"alt\":\"shingle roof replacement\",\"pixels\":85977,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-18 09:09:05','2020-06-18 14:09:05',1,NULL,NULL,NULL,NULL,0,NULL),(278,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/hardieSiding.png','77:8201ca9de85ae0642ad8a9aed8b0ce16',268,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/hardieSiding.png',NULL,'268','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/hardieSiding.png','268','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/hardieSiding.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/hardieSiding.png\",\"size\":\"full\",\"id\":268,\"alt\":\"house before and after remodeling\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-20 05:24:34','2020-06-20 10:24:34',1,NULL,NULL,NULL,NULL,0,NULL),(279,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/target.png','71:8e12b1172c277d50dab487f15f4149d4',1331,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/target.png',NULL,'1331','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/target.png','1331','attachment-image','{\"width\":512,\"height\":512,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/target.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/target.png\",\"size\":\"full\",\"id\":1331,\"alt\":\"logo\",\"pixels\":262144,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-06-22 18:11:11','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,0,NULL),(280,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/badge.png','70:2219f550f5ab07e67548c2007809fade',1329,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/badge.png',NULL,'1329','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/10/badge.png','1329','attachment-image','{\"width\":512,\"height\":512,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/badge.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/10\\/badge.png\",\"size\":\"full\",\"id\":1329,\"alt\":\"badge logo\",\"pixels\":262144,\"type\":\"image\\/png\"}',NULL,1,NULL,'2020-06-23 20:09:07','2021-02-03 18:37:43',1,NULL,NULL,NULL,NULL,0,NULL),(281,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image.png','78:8ddcc1ef462fc7cbfa37f8a51efaf45c',8058,'post','attachment',1,0,NULL,NULL,'roselle-image','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image.png',NULL,'8058','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/08/roselle-image.png','8058','attachment-image','{\"width\":458,\"height\":608,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/roselle-image.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/08\\/roselle-image.png\",\"size\":\"full\",\"id\":8058,\"alt\":\"\",\"pixels\":278464,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-24 04:36:21','2020-06-24 09:36:21',1,NULL,NULL,NULL,NULL,0,NULL),(282,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/cropped-ico.png','76:a3e6f39cd4711ad0420dfb3d65f6b2f3',934,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/cropped-ico.png',NULL,'934','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2017/01/cropped-ico.png','934','attachment-image','{\"width\":512,\"height\":512,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/cropped-ico.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2017\\/01\\/cropped-ico.png\",\"size\":\"full\",\"id\":934,\"alt\":\"cropped-ico.png logo\",\"pixels\":262144,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-25 21:13:56','2020-06-26 02:13:56',1,NULL,NULL,NULL,NULL,0,NULL),(283,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/slide-white.jpg','76:f3d382e60da09a9493b6d67b141f6834',810,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/slide-white.jpg',NULL,'810','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/slide-white.jpg','810','attachment-image','{\"width\":1920,\"height\":960,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/slide-white.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2012\\/11\\/slide-white.jpg\",\"size\":\"full\",\"id\":810,\"alt\":\"white\",\"pixels\":1843200,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-25 21:30:35','2020-06-26 02:30:35',1,NULL,NULL,NULL,NULL,0,NULL),(285,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/matteson.png','73:7c4027dff55fe009ca1f2a6009d669f7',270,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/matteson.png',NULL,'270','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/matteson.png','270','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/matteson.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/matteson.png\",\"size\":\"full\",\"id\":270,\"alt\":\"bathroom before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 00:09:51','2020-07-06 05:09:51',1,NULL,NULL,NULL,NULL,0,NULL),(286,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonDining.png','79:ebcc8b95a70e862f82eb8bacee6b3f6b',271,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonDining.png',NULL,'271','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonDining.png','271','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonDining.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonDining.png\",\"size\":\"full\",\"id\":271,\"alt\":\"dining room before and after remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 00:42:28','2020-07-06 05:42:28',1,NULL,NULL,NULL,NULL,0,NULL),(287,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonKitchen.png','80:f37abb00f2fef3e24af9962af36a0294',272,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonKitchen.png',NULL,'272','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mattesonKitchen.png','272','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonKitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mattesonKitchen.png\",\"size\":\"full\",\"id\":272,\"alt\":\"kitchen before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 01:50:57','2020-07-06 06:50:57',1,NULL,NULL,NULL,NULL,0,NULL),(288,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowBath.png','80:c2224a9c0975ea3b0b0e5c71a1816486',274,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowBath.png',NULL,'274','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowBath.png','274','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowBath.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowBath.png\",\"size\":\"full\",\"id\":274,\"alt\":\"bathroom before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 02:03:33','2020-07-06 07:03:33',1,NULL,NULL,NULL,NULL,0,NULL),(289,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowKitchen.png','83:2d8af4a946a96864301f719ec2f8ec94',275,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowKitchen.png',NULL,'275','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/printersRowKitchen.png','275','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowKitchen.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/printersRowKitchen.png\",\"size\":\"full\",\"id\":275,\"alt\":\"kitchen before and after makeover\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 02:20:05','2020-07-06 07:20:05',1,NULL,NULL,NULL,NULL,0,NULL),(290,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing.png','72:21a0aa28c980314a6fb4d142e38e94e8',276,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing.png',NULL,'276','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing.png','276','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/roofing.png\",\"size\":\"full\",\"id\":276,\"alt\":\"house before and after remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 03:32:15','2020-07-06 08:32:15',1,NULL,NULL,NULL,NULL,0,NULL),(291,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg','91:9808b416d781b146b1e625afb4d83f3f',280,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg',NULL,'280','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/aboutChicagolandRemodeling.jpg','280','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/aboutChicagolandRemodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/aboutChicagolandRemodeling.jpg\",\"size\":\"full\",\"id\":280,\"alt\":\"contractor during remodeling\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-07-06 03:40:33','2020-07-06 08:40:33',1,NULL,NULL,NULL,NULL,0,NULL),(292,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/chimneys.png','73:32d6728b1f5c34704786fb2b40abc8e3',301,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/chimneys.png',NULL,'301','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/chimneys.png','301','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/chimneys.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/chimneys.png\",\"size\":\"full\",\"id\":301,\"alt\":\"chimneys remodel\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 03:53:46','2020-07-06 08:53:46',1,NULL,NULL,NULL,NULL,0,NULL),(293,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.jpg','73:10188d14f4121aa8da6b73ce14b64c5e',302,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.jpg',NULL,'302','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.jpg','302','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.jpg\",\"size\":\"full\",\"id\":302,\"alt\":\"roof remodeling in progress\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-07-06 04:05:26','2020-07-06 09:05:26',1,NULL,NULL,NULL,NULL,0,NULL),(294,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.png','73:ad6d84ffae42ea1368d5aa63dfe9ff8f',308,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.png',NULL,'308','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/shingles.png','308','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/shingles.png\",\"size\":\"full\",\"id\":308,\"alt\":\"roof remodeling project\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 04:09:11','2020-07-06 09:09:11',1,NULL,NULL,NULL,NULL,0,NULL),(295,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaPowderroom.png','82:9fb63695806d83ae6bfd2aa97f8f3970',318,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaPowderroom.png',NULL,'318','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/mendotaPowderroom.png','318','attachment-image','{\"width\":612,\"height\":257,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaPowderroom.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/mendotaPowderroom.png\",\"size\":\"full\",\"id\":318,\"alt\":\"bathroom before and after renovation\",\"pixels\":157284,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-07-06 04:22:34','2020-07-06 09:22:34',1,NULL,NULL,NULL,NULL,0,NULL),(296,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.jpg','75:04220a0341cf94f8e7fdd39f17a88287',362,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.jpg',NULL,'362','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.jpg','362','attachment-image','{\"width\":612,\"height\":216,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodeling.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/02\\/remodeling.jpg\",\"size\":\"full\",\"id\":362,\"alt\":\"living room remodeling project\",\"pixels\":132192,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-07-06 04:27:39','2020-07-06 09:27:39',1,NULL,NULL,NULL,NULL,0,NULL),(298,'https://chicagolandremodeling.com/?post_type=wpcf7_contact_form&p=8136','70:879e08d9c000531e2779135990305e74',8136,'post','wpcf7_contact_form',1,0,NULL,NULL,'Quick Quote Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-29 08:35:32','2020-07-29 13:36:02',1,NULL,NULL,NULL,NULL,0,NULL),(299,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding2.jpg','78:7a29387a83113f73400cb2775d2869a4',105,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding2.jpg',NULL,'105','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding2.jpg','105','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding2.jpg\",\"size\":\"full\",\"id\":105,\"alt\":\"house before makeover\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-01 05:02:29','2020-08-01 10:02:29',1,NULL,NULL,NULL,NULL,0,NULL),(300,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding3.jpg','78:57e15a62a7ab10a182f4fcf2458a4023',106,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding3.jpg',NULL,'106','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding3.jpg','106','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding3.jpg\",\"size\":\"full\",\"id\":106,\"alt\":\"house before renovation\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-01 05:16:21','2020-08-01 10:16:21',1,NULL,NULL,NULL,NULL,0,NULL),(301,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding.png','77:898ea112b8a18cf1168fa92c0c49330e',103,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding.png',NULL,'103','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding.png','103','attachment-image','{\"width\":\"486\",\"height\":\"250\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding.png\",\"size\":\"full\",\"id\":103,\"alt\":\"house before and after renovation\",\"pixels\":121500,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-08-01 05:17:03','2020-08-01 10:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(302,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen7.jpg','81:bd5dc14274b547d1999c7b4393dee51a',102,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen7.jpg',NULL,'102','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen7.jpg','102','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/fairOaksKitchen7.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/fairOaksKitchen7.jpg\",\"size\":\"full\",\"id\":102,\"alt\":\"kitchen remodeling in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-01 05:28:09','2020-08-01 10:28:09',1,NULL,NULL,NULL,NULL,0,NULL),(303,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding4.jpg','78:a45b5415ab129f7a4decf8f10642c4e3',107,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding4.jpg',NULL,'107','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding4.jpg','107','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding4.jpg\",\"size\":\"full\",\"id\":107,\"alt\":\"siding renovation in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-01 05:38:43','2020-08-01 10:38:43',1,NULL,NULL,NULL,NULL,0,NULL),(304,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding5.jpg','78:1cfce143f699a6de18a01a25981270dd',108,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding5.jpg',NULL,'108','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding5.jpg','108','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding5.jpg\",\"size\":\"full\",\"id\":108,\"alt\":\"house renovation in progress\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-01 05:59:51','2020-08-01 10:59:51',1,NULL,NULL,NULL,NULL,0,NULL),(305,'https://chicagolandremodeling.com/chimod/','41:d98ce960717b4a153ef6e2edec23ab61',942,'post','custom_css',1,0,NULL,NULL,'chimod','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-03 15:21:46','2020-09-06 19:41:01',1,NULL,NULL,NULL,NULL,0,NULL),(307,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-3689918_1920.jpg','85:0283a6531db74d161bdafe0f81a35419',8097,'post','attachment',1,0,NULL,NULL,'kitchen-3689918_1920','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-3689918_1920.jpg',NULL,'8097','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2019/09/kitchen-3689918_1920.jpg','8097','attachment-image','{\"width\":905,\"height\":1280,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/kitchen-3689918_1920.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2019\\/09\\/kitchen-3689918_1920.jpg\",\"size\":\"full\",\"id\":8097,\"alt\":\"\",\"pixels\":1158400,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-03 23:21:09','2020-08-04 04:21:09',1,NULL,NULL,NULL,NULL,0,NULL),(308,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_gutters.jpg','77:998934778c0921ebff027b9cc56c709d',630,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_gutters.jpg',NULL,'630','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_gutters.jpg','630','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_gutters.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_gutters.jpg\",\"size\":\"full\",\"id\":630,\"alt\":\"gutter\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-09 05:20:06','2020-08-09 10:20:06',1,NULL,NULL,NULL,NULL,0,NULL),(309,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding7.jpg','78:780a34e70e0afd09b80bb3cd4bff569d',110,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding7.jpg',NULL,'110','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/hardieSiding7.jpg','110','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding7.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/01\\/hardieSiding7.jpg\",\"size\":\"full\",\"id\":110,\"alt\":\"house after remodeling\",\"pixels\":60000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-12 12:15:06','2020-08-12 17:15:06',1,NULL,NULL,NULL,NULL,0,NULL),(310,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_familyRoom.jpg','80:1db4396c5f5b034c4750638733a57c6d',629,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_familyRoom.jpg',NULL,'629','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_familyRoom.jpg','629','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_familyRoom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_familyRoom.jpg\",\"size\":\"full\",\"id\":629,\"alt\":\"living room\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-15 01:34:32','2020-08-15 06:34:32',1,NULL,NULL,NULL,NULL,0,NULL),(311,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_diningRoom.jpg','80:d0431830adbcf7b7761ddf81672e7f8c',628,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_diningRoom.jpg',NULL,'628','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_diningRoom.jpg','628','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_diningRoom.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_diningRoom.jpg\",\"size\":\"full\",\"id\":628,\"alt\":\"living room\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-20 16:16:39','2020-08-20 21:16:39',1,NULL,NULL,NULL,NULL,0,NULL),(312,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_decks.jpg','75:4eda96073ee4ab047459764ea48a8829',627,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_decks.jpg',NULL,'627','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_decks.jpg','627','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_decks.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_decks.jpg\",\"size\":\"full\",\"id\":627,\"alt\":\"wooden balcony icon\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-08-22 16:54:16','2020-08-22 21:54:16',1,NULL,NULL,NULL,NULL,0,NULL),(313,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_bedrooms.jpg','78:ec3bf6feb15bca8a245f7752597b0457',625,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_bedrooms.jpg',NULL,'625','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_bedrooms.jpg','625','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_bedrooms.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_bedrooms.jpg\",\"size\":\"full\",\"id\":625,\"alt\":\"bedroom\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-09-04 16:09:58','2020-09-04 21:09:58',1,NULL,NULL,NULL,NULL,0,NULL),(315,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/incredilble-bathroom-remodeling.jpg','96:69ec756be22d6984907ff36edba2cf0c',8204,'post','attachment',1,0,NULL,NULL,'incredilble bathroom remodeling','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/incredilble-bathroom-remodeling.jpg',NULL,'8204','attachment-image',NULL,NULL,NULL,'8204','attachment-image',NULL,NULL,1,NULL,'2020-09-06 14:38:04','2021-02-03 18:37:42',1,NULL,NULL,NULL,NULL,0,NULL),(316,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/stunning-kitchen-remodeling.jpg','92:3845bffa43fad87962e08bd574914531',8205,'post','attachment',1,0,NULL,NULL,'stunning kitchen remodeling','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2020/09/stunning-kitchen-remodeling.jpg',NULL,'8205','attachment-image',NULL,NULL,NULL,'8205','attachment-image',NULL,NULL,1,NULL,'2020-09-06 14:38:18','2021-02-03 18:37:42',1,NULL,NULL,NULL,NULL,0,NULL),(318,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_basements.jpg','79:d343e417ea116ed81635845b32dd83c7',624,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_basements.jpg',NULL,'624','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_basements.jpg','624','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https:\\/\\/chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_basements.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com\\/wp-content\\/uploads\\/2013\\/03\\/icon_basements.jpg\",\"size\":\"full\",\"id\":624,\"alt\":\"besement\",\"pixels\":5184,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-09-07 04:50:18','2020-09-07 09:50:18',1,NULL,NULL,NULL,NULL,0,NULL),(320,'https://chicagolandremodeling.com/?p=7930','41:605b5247001edbd789d3fa2c8b0d1845',7930,'post','post',1,0,NULL,NULL,'Kitchen remodelling tips to make your space look bigger','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/pexels-photo-276554.jpeg',NULL,'7931','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2018/08/pexels-photo-276554.jpeg','7931','featured-image','{\"width\":\"1125\",\"height\":\"750\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2018/08/pexels-photo-276554.jpeg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2018/08/pexels-photo-276554.jpeg\",\"size\":\"full\",\"id\":7931,\"alt\":\"\",\"pixels\":843750,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-09-24 15:24:02','2020-09-24 20:24:02',1,NULL,NULL,NULL,NULL,0,NULL),(321,'https://chicagolandremodeling.com/?p=7927','41:8e29a291b4925310dee7f96f707bd56a',7927,'post','post',1,0,NULL,NULL,'Kitchen remodelling tips to make your space look bigger','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-24 15:24:02','2020-09-24 20:24:02',1,NULL,NULL,NULL,NULL,0,NULL),(322,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_barthrooms.jpg','80:7bf0334c61a924f504ff6d542bfd4fca',623,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_barthrooms.jpg',NULL,'623','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_barthrooms.jpg','623','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_barthrooms.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/03/icon_barthrooms.jpg\",\"size\":\"full\",\"id\":623,\"alt\":\"shower\",\"pixels\":5184,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-09-26 13:44:15','2020-09-26 18:44:15',1,NULL,NULL,NULL,NULL,0,NULL),(323,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg','81:b2096abbb97365447f7a5bb4de217928',622,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg',NULL,'622','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg','622','attachment-image','{\"width\":72,\"height\":72,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/03/icon_addlRoofing.jpg\",\"size\":\"full\",\"id\":622,\"alt\":\"house\",\"pixels\":5184,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-04 23:57:19','2020-10-05 04:57:19',1,NULL,NULL,NULL,NULL,0,NULL),(324,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_4.jpg','75:c04be5f48790507309f81d16163a0bd0',500,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_4.jpg',NULL,'500','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_4.jpg','500','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_4.jpg\",\"size\":\"full\",\"id\":500,\"alt\":\"shingle roof and chimney\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-10 04:31:34','2020-10-10 09:31:34',1,NULL,NULL,NULL,NULL,0,NULL),(325,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_3.jpg','75:8a548b325cb3937b627cffc780c87225',499,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_3.jpg',NULL,'499','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_3.jpg','499','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_3.jpg\",\"size\":\"full\",\"id\":499,\"alt\":\"roof remodeling contractors\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-12 01:45:57','2020-10-12 06:45:57',1,NULL,NULL,NULL,NULL,0,NULL),(326,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_2.jpg','75:a8e7421c622aa3f4f130a3c6d262433a',498,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_2.jpg',NULL,'498','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_2.jpg','498','attachment-image','{\"width\":300,\"height\":200,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/roofing4_2.jpg\",\"size\":\"full\",\"id\":498,\"alt\":\"home remodeling contractors\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-14 06:16:41','2020-10-14 11:16:41',1,NULL,NULL,NULL,NULL,0,NULL),(327,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg','81:98592e28ea9bbe2a44ae9b0173bd9fc0',71,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg',NULL,'71','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg','71','attachment-image','{\"width\":\"908\",\"height\":\"288\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide01.jpg\",\"size\":\"full\",\"id\":71,\"alt\":\"kitchens after renovations\",\"pixels\":261504,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:00','2020-11-09 06:27:00',1,NULL,NULL,NULL,NULL,0,NULL),(328,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg','81:ef84bdf0714c969c77ed0fb9274a03b4',72,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg',NULL,'72','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg','72','attachment-image','{\"width\":\"908\",\"height\":\"288\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide02.jpg\",\"size\":\"full\",\"id\":72,\"alt\":\"bathrooms makeover projects\",\"pixels\":261504,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:01','2020-11-09 06:27:01',1,NULL,NULL,NULL,NULL,0,NULL),(329,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg','81:4293562deda2ecc27b395f3d660668df',73,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg',NULL,'73','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg','73','attachment-image','{\"width\":\"908\",\"height\":\"288\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide03.jpg\",\"size\":\"full\",\"id\":73,\"alt\":\"house remodeling projects\",\"pixels\":261504,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:02','2020-11-09 06:27:02',1,NULL,NULL,NULL,NULL,0,NULL),(330,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg','81:63a6a0b0ba169d1d935b52f876f12d42',82,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg',NULL,'82','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg','82','attachment-image','{\"width\":\"908\",\"height\":\"288\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide05.jpg\",\"size\":\"full\",\"id\":82,\"alt\":\"roof remodeling and repair\",\"pixels\":261504,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:10','2020-11-09 06:27:10',1,NULL,NULL,NULL,NULL,0,NULL),(331,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg','81:3583527106f6247810f7d6af726a50c9',84,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg',NULL,'84','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg','84','attachment-image','{\"width\":\"908\",\"height\":\"288\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2012/11/homePage_slide04.jpg\",\"size\":\"full\",\"id\":84,\"alt\":\"new siding and windows on house\",\"pixels\":261504,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:12','2020-11-09 06:27:12',1,NULL,NULL,NULL,NULL,0,NULL),(332,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg','81:3e7aa257c3ad4a49e514bf9a1d2ea8de',96,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg',NULL,'96','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg','96','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen1.jpg\",\"size\":\"full\",\"id\":96,\"alt\":\"kitchen before remodeling\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:22','2020-11-09 06:27:22',1,NULL,NULL,NULL,NULL,0,NULL),(333,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg','81:22a588ac27cff76d27c27ee1ab170511',97,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg',NULL,'97','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg','97','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen2.jpg\",\"size\":\"full\",\"id\":97,\"alt\":\"kitchen before makeover\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:23','2020-11-09 06:27:23',1,NULL,NULL,NULL,NULL,0,NULL),(334,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg','81:7fc51f770864907adfb1abed46fcbd17',98,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg',NULL,'98','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg','98','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen3.jpg\",\"size\":\"full\",\"id\":98,\"alt\":\"kitchen before remodeling\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:24','2020-11-09 06:27:24',1,NULL,NULL,NULL,NULL,0,NULL),(335,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg','81:1f6450d500b8c872f18cbbcf67742546',99,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg',NULL,'99','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg','99','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen4.jpg\",\"size\":\"full\",\"id\":99,\"alt\":\"floor remodeling in room\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:25','2020-11-09 06:27:25',1,NULL,NULL,NULL,NULL,0,NULL),(336,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg','81:32c1548dc7050aeb1b42986f5f0144b0',100,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg',NULL,'100','attachment-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg','100','attachment-image','{\"width\":\"300\",\"height\":\"200\",\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/01/fairOaksKitchen5.jpg\",\"size\":\"full\",\"id\":100,\"alt\":\"kitchen funiture\",\"pixels\":60000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-11-09 00:27:26','2020-11-09 06:27:26',1,NULL,NULL,NULL,NULL,0,NULL),(338,'https://chicagolandremodeling.com/','34:84ba442fc25eace24fbffec1ef0075d8',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'','','','',NULL,NULL,NULL,NULL,NULL,'2020-11-25 08:18:07','2020-11-25 14:18:07',1,NULL,NULL,NULL,NULL,0,NULL),(340,'https://chicagolandremodeling.com/remodeling-painting/','54:227b1bc032228505b9eed994d48ad6d1',241,'post','post',1,0,'Chicagoland Remodeling â a top painting contractor, for all your interior and exterior house painting needs.','Top quality interior and exterior painting by Chicagoland Remodeling. Drywall repair and wallpaper also available. Fast and affordable quality work by licensed craftsmen. Call us today for a free estimate.','Painting','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.png',NULL,'373','featured-image',NULL,NULL,'https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.png','373','featured-image','{\"width\":612,\"height\":257,\"url\":\"https://chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.png\",\"path\":\"C:\\\\__work\\\\websites\\\\chicagolandremodeling.com/wp-content/uploads/2013/02/remodeling.png\",\"size\":\"full\",\"id\":373,\"alt\":\"living room before and after remodeling\",\"pixels\":157284,\"type\":\"image/png\"}',NULL,1,NULL,'2021-02-03 17:44:11','2021-02-03 17:44:11',1,NULL,NULL,NULL,NULL,0,NULL),(341,'https://chicagolandremodeling.com/539/','38:da24274bef61d2a14c9ab9874f60c8d5',539,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(342,'https://chicagolandremodeling.com/53/','37:5becbd9233fce63fb332dff8e9406723',53,'post','nav_menu_item',1,0,NULL,NULL,'About','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(343,'https://chicagolandremodeling.com/1364/','39:0361d3f642e4a56dcec967d6583b7505',1364,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(344,'https://chicagolandremodeling.com/52/','37:3b075aa481800e662139afefc323f1c7',52,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(345,'https://chicagolandremodeling.com/bathroom-remodeling/','54:7fcb6d2d6c291e60e356f9aef5f1b01b',963,'post','nav_menu_item',1,0,NULL,NULL,'Bathroom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(346,'https://chicagolandremodeling.com/kitchen-remodeling/','53:dd01f53a92f6112abe8fb6940b906133',962,'post','nav_menu_item',1,0,NULL,NULL,'Kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(347,'https://chicagolandremodeling.com/basement-remodeling/','54:de37af920d16f88ac4d35fca5399984c',818,'post','nav_menu_item',1,0,NULL,NULL,'Basement','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(348,'https://chicagolandremodeling.com/commercial-remodeling/','56:0d4cc086daa745e9edec646edfa75a26',820,'post','nav_menu_item',1,0,NULL,NULL,'Commercial','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(349,'https://chicagolandremodeling.com/bedrooms/','43:541c06db887cfec9397fac642ff4b1d7',819,'post','nav_menu_item',1,0,NULL,NULL,'Bedrooms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(350,'https://chicagolandremodeling.com/exterior-remodeling/','54:33336ac43a265140f69d7492ebfecc82',1132,'post','nav_menu_item',1,0,NULL,NULL,'Exterior','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(351,'https://chicagolandremodeling.com/gallery/','42:978f83499e79cabc88a2ed30ca36e4f9',985,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(352,'https://chicagolandremodeling.com/kitchen/','42:e8aa0fd6b6bd5d1ce3ad1f35d6341c5a',987,'post','nav_menu_item',1,0,NULL,NULL,'Kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(353,'https://chicagolandremodeling.com/bathroom/','43:8d80d8b5f5d3461158fe8e13819c70ef',988,'post','nav_menu_item',1,0,NULL,NULL,'Bathroom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(354,'https://chicagolandremodeling.com/living-room/','46:b17a3174adb135218f025fd54d0c6bf5',986,'post','nav_menu_item',1,0,NULL,NULL,'Living room','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:36','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(355,'https://chicagolandremodeling.com/50/','37:2babda0c463101535e5861fc29c8561a',50,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:37','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL),(356,'https://chicagolandremodeling.com/48/','37:9977da0e3fa30db89e482834f6fbc63d',48,'post','nav_menu_item',1,0,NULL,NULL,'Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-03 18:39:37','2021-02-04 18:34:59',1,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (30,7,2,1),(30,8,1,1),(32,31,1,1),(36,14,1,1),(40,39,1,1),(41,38,1,1),(42,16,1,1),(44,2,1,1),(49,5,1,1),(53,52,1,1),(54,16,1,1),(56,55,1,1),(58,7,2,1),(58,13,1,1),(60,52,1,1),(62,61,1,1),(64,7,2,1),(64,63,1,1),(65,16,1,1),(67,6,1,1),(67,7,2,1),(70,38,1,1),(71,31,1,1),(74,16,1,1),(75,26,1,1),(78,77,1,1),(80,79,1,1),(82,16,1,1),(83,55,1,1),(84,68,1,1),(86,47,1,1),(92,52,1,1),(93,2,1,1),(94,2,1,1),(95,52,1,1),(96,31,1,1),(97,55,1,1),(98,2,1,1),(100,16,1,1),(101,2,1,1),(104,2,1,1),(106,105,1,1),(107,2,1,1),(111,52,1,1),(114,113,1,1),(116,115,1,1),(117,115,1,1),(118,108,1,1),(119,7,2,1),(119,28,1,1),(120,16,1,1),(121,7,2,1),(121,8,1,1),(122,7,1,1),(123,7,2,1),(123,23,1,1),(124,88,1,1),(126,7,2,1),(126,23,1,1),(127,16,1,1),(129,2,1,1),(130,38,1,1),(132,68,1,1),(136,52,1,1),(137,35,1,1),(138,110,1,1),(139,68,1,1),(140,79,1,1),(142,31,1,1),(143,2,1,1),(144,2,1,1),(146,7,2,1),(146,87,1,1),(147,109,1,1),(148,16,1,1),(151,52,1,1),(152,2,1,1),(154,88,1,1),(156,7,2,1),(156,89,1,1),(157,55,1,1),(158,105,1,1),(160,88,1,1),(161,10,1,1),(165,61,1,1),(167,2,1,1),(168,31,1,1),(170,2,1,1),(171,2,1,1),(172,55,1,1),(174,88,1,1),(175,38,1,1),(176,55,1,1),(177,6,1,1),(177,7,2,1),(178,2,1,1),(179,31,1,1),(180,88,1,1),(181,2,1,1),(182,39,1,1),(183,7,2,1),(183,13,1,1),(184,2,1,1),(186,7,2,1),(186,23,1,1),(187,2,1,1),(190,38,1,1),(192,7,2,1),(192,24,1,1),(193,52,1,1),(194,115,1,1),(195,52,1,1),(205,7,2,1),(205,23,1,1),(207,61,1,1),(208,31,1,1),(209,38,1,1),(210,7,2,1),(210,163,1,1),(216,105,1,1),(217,88,1,1),(219,113,1,1),(221,31,1,1),(223,7,2,1),(223,72,1,1),(231,2,1,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wp_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,1354,20,'category','2020-05-26 13:34:33','2021-02-04 18:33:50',1),(2,1424,20,'category','2020-05-26 16:59:25','2021-02-04 18:31:13',1),(3,7954,20,'category','2020-05-26 17:19:29','2021-02-04 18:09:13',1),(4,7945,20,'category','2020-05-27 10:40:45','2021-02-04 18:21:16',1),(5,8170,20,'category','2020-05-28 04:52:22','2021-02-04 18:00:29',1),(6,7939,20,'category','2020-05-28 04:52:22','2021-02-04 18:22:44',1),(7,7934,20,'category','2020-05-28 04:52:22','2021-02-04 18:27:03',1),(8,7930,20,'category','2020-09-24 15:24:02','2020-09-24 20:24:02',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=1424 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (541,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15078873_709756342534529_436621417903759865_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(542,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15109420_709756352534528_8927628996292000683_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(543,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15027571_709756445867852_1174746755824534041_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(544,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15027457_709756345867862_4871319676468787832_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(545,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15078651_709756532534510_3340440437288080653_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(546,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15032134_709756405867856_4061707255261005082_n_(1).jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15032134_709756405867856_4061707255261005082_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(548,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15055633_709756389201191_4259776154113771962_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(549,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15940835_743657709144392_3143129532398314477_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15940381_743578252485671_3790552740689288398_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(551,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15109472_709756492534514_9084744110390881431_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(552,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15977564_743657715811058_552330083269663813_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(553,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/15965452_743661745810655_1619974556729707528_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(554,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16002876_743657695811060_1088598114143402555_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(555,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16003132_743585155818314_3822196828551371045_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(556,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16114249_743661752477321_4086981046307411058_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(557,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16114236_743584469151716_802262235528264536_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(558,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16003157_743584465818383_4763847683830547546_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(559,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/16105959_743586285818201_6884562517440664882_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(560,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/995440_330262907150543_1478337651650292628_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(561,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/200144_438235626353270_3215371615046737086_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(562,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/1510869_438235603019939_8588551347730393179_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(563,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/19103_456298731213626_3497178247170612538_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(564,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/1452592_389972774512889_2261257964616152499_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(565,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/936076_330267737150060_5213271137163673621_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(566,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/10151218_570011403175691_3141328941077438414_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(567,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/10264869_438230946353738_7183182988011009761_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(568,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/1509668_438227419687424_8329694114524191341_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(569,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/1908330_436896769820489_8349744890692565307_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(570,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/1932452_438228213020678_6297315525490385996_n.jpg',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(571,'/wp-admin/admin-ajax.php?action=wordfence_testAjax&#038;page_number_0=2',1346,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(572,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12573072_570050293171802_5486466788712804657_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(573,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12524053_570011389842359_4142021874562684539_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(574,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12573069_570050299838468_1448187570967420751_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(575,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12573225_570011416509023_3383754738851414769_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12573035_570019559841542_6928788627569452043_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(577,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12494973_570050506505114_1987627642840572854_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(578,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12347744_549506041892894_6299806903903345975_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(579,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12347820_549506605226171_7051485239278761937_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(580,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12573956_570050329838465_5370931413428546023_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(581,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12631370_570501129793385_2427550458042026263_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(582,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12592397_570050509838447_1439038136012486472_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(583,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12615756_570019556508209_8703234015212932049_o.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12642524_570050336505131_3450900142641245501_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(585,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12615756_570019556508209_8703234015212932049_o_(1).jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(586,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12592180_570501169793381_2154810404736987256_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(587,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12642708_570501099793388_6052336799551530073_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(588,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12646978_570019546508210_614149855798770420_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(589,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12644796_570011393175692_7713018613882527701_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(590,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12651166_570011219842376_4848520979023787312_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(591,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12650932_570050303171801_1433943770704312665_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(592,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12647274_570050366505128_8733642293761913628_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(593,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12646978_570019546508210_614149855798770420_n_(1).jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(594,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/12645163_570050346505130_1277753494491836901_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(595,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/13521897_637469933096504_8353105607795108762_n.jpg',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(596,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(597,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(599,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(600,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(601,'',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(602,'/wp-admin/admin-ajax.php?action=wordfence_testAjax&#038;page_number_1=2',1347,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(603,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(604,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(605,'https://chicagolandremodeling.com/wp-content/uploads/photo-gallery/10923260_438225189687647_4050575526091580693_n_(1).jpg',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(606,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(607,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(608,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(609,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(610,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(611,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(612,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(613,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(614,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(615,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(616,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(617,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(618,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(619,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(620,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(621,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(622,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(623,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(624,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(625,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(626,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(627,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(628,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(629,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(630,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(631,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(632,'',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(633,'/wp-admin/admin-ajax.php?action=wordfence_testAjax&#038;page_number_2=2',1348,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(634,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(635,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(636,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(637,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(638,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(639,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(640,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(641,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(642,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(643,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(644,'',1349,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'http://strony123.com',8178,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1239,'http://strony123.com',8178,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1350,'https://www.google.com/maps/place/Chicagoland+Remodeling+Inc+Elmwood+Park/@41.9191304,-87.8063203,15z/data=!4m5!3m4!1s0x0:0x96ea8c6cd66dd326!8m2!3d41.9191304!4d-87.8063203?sa=X&amp;ved=0ahUKEwimtbiv37zRAhVHxoMKHY5jDYcQ_BIIkAEwCg',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1351,'https://www.facebook.com/Chicagoland-Remodeling-Inc-146756022167900/',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1352,'https://www.yelp.com/biz/chicagoland-remodeling-elmwood-park',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1353,'https://www.mapquest.com/us/illinois/business-elmwood-park/chicagoland-remodeling-7799028',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1354,'https://www.angieslist.com/companylist/us/il/elmwood-park/chicagoland-remodeling-inc-reviews-440818.htm',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1355,'http://www.gosmith.com/pro/66126',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1356,'https://chicagolandroofingcompanies.com/',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'http://chicagolandroofingcompanies.com/',8,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(1358,'/kitchen-remodeling/',8,959,'internal',2,26,NULL,NULL,NULL,NULL,NULL),(1359,'/bathroom-remodeling/',8,956,'internal',2,16,NULL,NULL,NULL,NULL,NULL),(1360,'/basements/',8,599,'internal',2,10,NULL,NULL,NULL,NULL,NULL),(1361,'/bedrooms/',8,250,'internal',2,12,NULL,NULL,NULL,NULL,NULL),(1362,'/family-rooms/',8,243,'internal',2,17,NULL,NULL,NULL,NULL,NULL),(1363,'/dinning-rooms/',8,239,'internal',2,15,NULL,NULL,NULL,NULL,NULL),(1364,'/offices-commercial-spaces/',8,672,'internal',2,14,NULL,NULL,NULL,NULL,NULL),(1365,'/remodeling-painting/',8,241,'internal',2,340,NULL,NULL,NULL,NULL,NULL),(1366,'/stairs/',8,264,'internal',2,21,NULL,NULL,NULL,NULL,NULL),(1367,'https://chicagolandremodeling.com/wp-content/uploads/2017/07/quality-badge.jpg',8,1230,'image-in',2,3,225,225,7974,NULL,NULL),(1368,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/g.png',8,828,'image-in',2,101,128,128,2186,NULL,NULL),(1369,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/square-facebook-512-300x300.png',8,835,'image-in',2,171,512,512,6196,NULL,NULL),(1370,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/5540543936_423e37dae4_b-300x300.jpg',8,849,'image-in',2,104,1024,1024,158784,NULL,NULL),(1371,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/MapQuest_Tall_Logo_Large-259x300.jpg',8,850,'image-in',2,152,371,320,28033,NULL,NULL),(1372,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/angie-2015-300x248.png',8,880,'image-in',2,184,437,529,43401,NULL,NULL),(1373,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/SmithProBadge.png',8,865,'image-in',2,44,150,150,9635,NULL,NULL),(1374,'https://chicagolandremodeling.com/wp-content/uploads/2012/11/bannnn-300x90.png',8,872,'image-in',2,178,357,1189,36656,NULL,NULL),(1375,'https://chicagolandremodeling.com/wp-content/uploads/2017/04/0981cffd0efe084a_3975-w500-h400-b0-p0-traditional-exterior.jpg',8,1141,'image-in',2,224,293,293,91598,NULL,NULL),(1376,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/kitchen_remodeling.jpg',8,789,'image-in',2,231,293,293,19212,NULL,NULL),(1377,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bathroom_remodeling.jpg',8,784,'image-in',2,144,293,293,19686,NULL,NULL),(1378,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/basement_remodeling.jpg',8,783,'image-in',2,167,293,293,24029,NULL,NULL),(1379,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/bedroom.jpg',8,785,'image-in',2,143,293,293,19256,NULL,NULL),(1380,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/family_room.jpg',8,788,'image-in',2,187,293,293,24401,NULL,NULL),(1381,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/dining_room.jpg',8,787,'image-in',2,129,293,293,23034,NULL,NULL),(1382,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/commercial_remodeling.jpg',8,786,'image-in',2,94,293,293,28589,NULL,NULL),(1383,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/painting.jpg',8,790,'image-in',2,181,293,293,16373,NULL,NULL),(1384,'https://chicagolandremodeling.com/wp-content/uploads/2016/12/stairs.jpg',8,791,'image-in',2,98,293,293,27385,NULL,NULL),(1408,'http://my.angieslist.com/Angieslist/MyAngie/CheckTheList/SPInformation.aspx?ajtoicslA68eS0LFhJu29aSGQ0mhel8oCd3juCQlymIPnKlnWLq%2fCs06Cv51mC8TYipWDNsJcb9F48KFMDxPraediJ8U9GuZ1qYxk%2fRAHsA%3d',32,0,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(1412,'',44,0,'internal',34,NULL,NULL,NULL,NULL,NULL,NULL),(1413,'mailto:izabela@chicagolandremodeling.net',44,0,'external',34,NULL,NULL,NULL,NULL,NULL,NULL),(1414,'',44,0,'internal',34,NULL,NULL,NULL,NULL,NULL,NULL),(1418,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1b-300x200.jpg',956,1009,'image-in',16,42,200,300,37776,NULL,NULL),(1419,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3b-300x200.jpg',956,1011,'image-in',16,82,200,300,49697,NULL,NULL),(1420,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2b-300x200.jpg',956,1010,'image-in',16,127,200,300,62716,NULL,NULL),(1421,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img1-300x200.jpg',959,1005,'image-in',26,65,200,300,55771,NULL,NULL),(1422,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img2-300x200.jpg',959,1006,'image-in',26,100,200,300,61803,NULL,NULL),(1423,'https://chicagolandremodeling.com/wp-content/uploads/2017/02/img3-300x200.jpg',959,1007,'image-in',26,148,200,300,47872,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (8,9,0),(32,0,0),(42,0,0),(44,2,0),(65,0,0),(239,NULL,1),(241,NULL,1),(243,NULL,1),(250,NULL,1),(264,NULL,1),(522,0,0),(599,0,1),(672,0,1),(889,0,0),(890,0,0),(891,0,0),(910,0,0),(932,0,0),(956,0,1),(959,0,1),(979,0,0),(981,0,0),(983,0,0),(1148,0,0),(1185,0,0),(1186,0,0),(1188,0,0),(1189,0,0),(1190,0,0),(1191,0,0),(1192,0,0),(1193,0,0),(1194,0,0),(1195,0,0),(1197,0,0),(1198,0,0),(1199,0,0),(1200,0,0),(1201,0,0),(1203,0,0),(1204,0,0),(1205,0,0),(1307,0,0),(1332,0,0),(1334,0,0),(1336,0,0),(1339,0,0),(1345,0,0),(1346,31,0),(1347,31,0),(1348,31,0),(1349,11,0),(1353,0,0),(1354,0,0),(1357,0,0),(1358,0,0),(1359,0,0),(1360,0,0),(1361,0,0),(1366,0,0),(1369,0,0),(1379,0,0),(1381,0,0),(1383,0,0),(1384,0,0),(1385,0,0),(1386,0,0),(1387,0,0),(1388,0,0),(1389,0,0),(1390,0,0),(1391,0,0),(1392,0,0),(1393,0,0),(1394,0,0),(1395,0,0),(1396,0,0),(1397,0,0),(1398,0,0),(1400,0,0),(1402,0,0),(1404,0,0),(1408,0,0),(1411,0,0),(1413,0,0),(1415,0,0),(1417,0,0),(1419,0,0),(1421,0,0),(1422,0,0),(1423,0,0),(1424,0,0),(1428,0,0),(1430,0,0),(1431,0,0),(1432,0,0),(1433,0,0),(1434,0,0),(1435,0,0),(1436,0,0),(1437,0,0),(1438,0,0),(1439,0,0),(1440,0,0),(1441,0,0),(1442,0,0),(1443,0,0),(1444,0,0),(1445,0,0),(1446,0,0),(1447,0,0),(1448,0,0),(1449,0,0),(1450,0,0),(1451,0,0),(1452,0,0),(1453,0,0),(1454,0,0),(1455,0,0),(1456,0,0),(1457,0,0),(1458,0,0),(1459,0,0),(1460,0,0),(1461,0,0),(1462,0,0),(1463,0,0),(1464,0,0),(1465,0,0),(1466,0,0),(1467,0,0),(1468,0,0),(1469,0,0),(1470,0,0),(1471,0,0),(1472,0,0),(1473,0,0),(1474,0,0),(1475,0,0),(1476,0,0),(1477,0,0),(1478,0,0),(1479,0,0),(1480,0,0),(1481,0,0),(1482,0,0),(1483,0,0),(1484,0,0),(1485,0,0),(1486,0,0),(1487,0,0),(1488,0,0),(1489,0,0),(1490,0,0),(1491,0,0),(1492,0,0),(1493,0,0),(1494,0,0),(1495,0,0),(1496,0,0),(1497,0,0),(1498,0,0),(1499,0,0),(1500,0,0),(1501,0,0),(1502,0,0),(1503,0,0),(1504,0,0),(1505,0,0),(1506,0,0),(1507,0,0),(1508,0,0),(1509,0,0),(1510,0,0),(1511,0,0),(1512,0,0),(1513,0,0),(1514,0,0),(1515,0,0),(1516,0,0),(1517,0,0),(1518,0,0),(1519,0,0),(1520,0,0),(1521,0,0),(1522,0,0),(1523,0,0),(1524,0,0),(1525,0,0),(1526,0,0),(1527,0,0),(1528,0,0),(1529,0,0),(1530,0,0),(1531,0,0),(1532,0,0),(1533,0,0),(1534,0,0),(1535,0,0),(1536,0,0),(1537,0,0),(1538,0,0),(1539,0,0),(1540,0,0),(1541,0,0),(1542,0,0),(1543,0,0),(1544,0,0),(1545,0,0),(1546,0,0),(1547,0,0),(1548,0,0),(1549,0,0),(1550,0,0),(1551,0,0),(1552,0,0),(1553,0,0),(1554,0,0),(1555,0,0),(1556,0,0),(1557,0,0),(1558,0,0),(1559,0,0),(1560,0,0),(1561,0,0),(1562,0,0),(1563,0,0),(1564,0,0),(1565,0,0),(1566,0,0),(1567,0,0),(1568,0,0),(1569,0,0),(1570,0,0),(1571,0,0),(1572,0,0),(1573,0,0),(1574,0,0),(1575,0,0),(1576,0,0),(1577,0,0),(1578,0,0),(1579,0,0),(1580,0,0),(1581,0,0),(1582,0,0),(1583,0,0),(1584,0,0),(1585,0,0),(1586,0,0),(1587,0,0),(1588,0,0),(1589,0,0),(1590,0,0),(1591,0,0),(1592,0,0),(1593,0,0),(1594,0,0),(1595,0,0),(1596,0,0),(1597,0,0),(1598,0,0),(1599,0,0),(1600,0,0),(1601,0,0),(1602,0,0),(1603,0,0),(1604,0,0),(1605,0,0),(1606,0,0),(1607,0,0),(1608,0,0),(1609,0,0),(1610,0,0),(1611,0,0),(1612,0,0),(1613,0,0),(1614,0,0),(1615,0,0),(1616,0,0),(1617,0,0),(1618,0,0),(1619,0,0),(1620,0,0),(1621,0,0),(1622,0,0),(1623,0,0),(1624,0,0),(1625,0,0),(1626,0,0),(1627,0,0),(1628,0,0),(1629,0,0),(1630,0,0),(1631,0,0),(1632,0,0),(1633,0,0),(1634,0,0),(1635,0,0),(1636,0,0),(1637,0,0),(1638,0,0),(1639,0,0),(1640,0,0),(1641,0,0),(1642,0,0),(1643,0,0),(1644,0,0),(1645,0,0),(1646,0,0),(1647,0,0),(1648,0,0),(1649,0,0),(1650,0,0),(1651,0,0),(1652,0,0),(1653,0,0),(1654,0,0),(1655,0,0),(1656,0,0),(1657,0,0),(1658,0,0),(1659,0,0),(1660,0,0),(1661,0,0),(1662,0,0),(1663,0,0),(1664,0,0),(1665,0,0),(1666,0,0),(1667,0,0),(1668,0,0),(1669,0,0),(1670,0,0),(1671,0,0),(1672,0,0),(1673,0,0),(1674,0,0),(1675,0,0),(1676,0,0),(1677,0,0),(1678,0,0),(1679,0,0),(1680,0,0),(1681,0,0),(1682,0,0),(1683,0,0),(1684,0,0),(1685,0,0),(1686,0,0),(1687,0,0),(1688,0,0),(1689,0,0),(1690,0,0),(1691,0,0),(1692,0,0),(1693,0,0),(1694,0,0),(1695,0,0),(1696,0,0),(1697,0,0),(1698,0,0),(1699,0,0),(1700,0,0),(1701,0,0),(1702,0,0),(1703,0,0),(1704,0,0),(1705,0,0),(1706,0,0),(1707,0,0),(1708,0,0),(1709,0,0),(1710,0,0),(1711,0,0),(1712,0,0),(1713,0,0),(1714,0,0),(1715,0,0),(1716,0,0),(1717,0,0),(1718,0,0),(1719,0,0),(1720,0,0),(1721,0,0),(1722,0,0),(1723,0,0),(1724,0,0),(1725,0,0),(1726,0,0),(1727,0,0),(1728,0,0),(1729,0,0),(1730,0,0),(1731,0,0),(1732,0,0),(1733,0,0),(1734,0,0),(1735,0,0),(1736,0,0),(1737,0,0),(1738,0,0),(1739,0,0),(1740,0,0),(1741,0,0),(1742,0,0),(1743,0,0),(1744,0,0),(1745,0,0),(1746,0,0),(1747,0,0),(1748,0,0),(1749,0,0),(1750,0,0),(1751,0,0),(1752,0,0),(1753,0,0),(1754,0,0),(1755,0,0),(1756,0,0),(1757,0,0),(1758,0,0),(1759,0,0),(1760,0,0),(1761,0,0),(1762,0,0),(1763,0,0),(1764,0,0),(1765,0,0),(1766,0,0),(1767,0,0),(1768,0,0),(1769,0,0),(1770,0,0),(1771,0,0),(1772,0,0),(1773,0,0),(1774,0,0),(1775,0,0),(1776,0,0),(1777,0,0),(1778,0,0),(1779,0,0),(1780,0,0),(1781,0,0),(1782,0,0),(1783,0,0),(1784,0,0),(1785,0,0),(1786,0,0),(1787,0,0),(1788,0,0),(1789,0,0),(1790,0,0),(1791,0,0),(1792,0,0),(1793,0,0),(1794,0,0),(1795,0,0),(1796,0,0),(1797,0,0),(1798,0,0),(1799,0,0),(1800,0,0),(1801,0,0),(1802,0,0),(1803,0,0),(1804,0,0),(1805,0,0),(1806,0,0),(1807,0,0),(1808,0,0),(1809,0,0),(1810,0,0),(1811,0,0),(1812,0,0),(1813,0,0),(1814,0,0),(1815,0,0),(1816,0,0),(1817,0,0),(1818,0,0),(1819,0,0),(1820,0,0),(1821,0,0),(1822,0,0),(1823,0,0),(1824,0,0),(1825,0,0),(1826,0,0),(1827,0,0),(1828,0,0),(1829,0,0),(1830,0,0),(1831,0,0),(1832,0,0),(1833,0,0),(1834,0,0),(1835,0,0),(1836,0,0),(1837,0,0),(1838,0,0),(1839,0,0),(1840,0,0),(1841,0,0),(1842,0,0),(1843,0,0),(1844,0,0),(1845,0,0),(1846,0,0),(1847,0,0),(1848,0,0),(1849,0,0),(1850,0,0),(1851,0,0),(1852,0,0),(1853,0,0),(1854,0,0),(1855,0,0),(1856,0,0),(1857,0,0),(1858,0,0),(1859,0,0),(1860,0,0),(1861,0,0),(1862,0,0),(1863,0,0),(1864,0,0),(1865,0,0),(1866,0,0),(1867,0,0),(1868,0,0),(1869,0,0),(1870,0,0),(1871,0,0),(1872,0,0),(1873,0,0),(1874,0,0),(1875,0,0),(1876,0,0),(1877,0,0),(1878,0,0),(1879,0,0),(1880,0,0),(1881,0,0),(1882,0,0),(1883,0,0),(1884,0,0),(1885,0,0),(1886,0,0),(1887,0,0),(1888,0,0),(1889,0,0),(1890,0,0),(1891,0,0),(1892,0,0),(1893,0,0),(1894,0,0),(1895,0,0),(1896,0,0),(1897,0,0),(1898,0,0),(1899,0,0),(1900,0,0),(1901,0,0),(1902,0,0),(1903,0,0),(1904,0,0),(1905,0,0),(1906,0,0),(1907,0,0),(1908,0,0),(1909,0,0),(1910,0,0),(1911,0,0),(1912,0,0),(1913,0,0),(1914,0,0),(1915,0,0),(1916,0,0),(1917,0,0),(1918,0,0),(1919,0,0),(1920,0,0),(1921,0,0),(1922,0,0),(1923,0,0),(1924,0,0),(1925,0,0),(1926,0,0),(1927,0,0),(1928,0,0),(1929,0,0),(1930,0,0),(1931,0,0),(1932,0,0),(1933,0,0),(1934,0,0),(1935,0,0),(1936,0,0),(1937,0,0),(1938,0,0),(1939,0,0),(1940,0,0),(1941,0,0),(1942,0,0),(1943,0,0),(1944,0,0),(1945,0,0),(1946,0,0),(1947,0,0),(1948,0,0),(1949,0,0),(1950,0,0),(1951,0,0),(1952,0,0),(1953,0,0),(1954,0,0),(1956,0,0),(1957,0,0),(1958,0,0),(1959,0,0),(1960,0,0),(1961,0,0),(1962,0,0),(1963,0,0),(1964,0,0),(1965,0,0),(1966,0,0),(1967,0,0),(1968,0,0),(1969,0,0),(1970,0,0),(1971,0,0),(1972,0,0),(1973,0,0),(1974,0,0),(1975,0,0),(1976,0,0),(1977,0,0),(1978,0,0),(1979,0,0),(1980,0,0),(1981,0,0),(1982,0,0),(1983,0,0),(1984,0,0),(1985,0,0),(1986,0,0),(1987,0,0),(1988,0,0),(1989,0,0),(1990,0,0),(1991,0,0),(1992,0,0),(1993,0,0),(1994,0,0),(1995,0,0),(1996,0,0),(1997,0,0),(1998,0,0),(1999,0,0),(2000,0,0),(2001,0,0),(2002,0,0),(2003,0,0),(2004,0,0),(2005,0,0),(2006,0,0),(2007,0,0),(2008,0,0),(2009,0,0),(2010,0,0),(2011,0,0),(2012,0,0),(2013,0,0),(2014,0,0),(2015,0,0),(2016,0,0),(2017,0,0),(2018,0,0),(2019,0,0),(2020,0,0),(2021,0,0),(2022,0,0),(2023,0,0),(2024,0,0),(2025,0,0),(2026,0,0),(2027,0,0),(2028,0,0),(2029,0,0),(2030,0,0),(2031,0,0),(2032,0,0),(2033,0,0),(2034,0,0),(2035,0,0),(2036,0,0),(2037,0,0),(2038,0,0),(2039,0,0),(2040,0,0),(2041,0,0),(2042,0,0),(2043,0,0),(2044,0,0),(2045,0,0),(2046,0,0),(2047,0,0),(2048,0,0),(2049,0,0),(2050,0,0),(2051,0,0),(2052,0,0),(2053,0,0),(2054,0,0),(2055,0,0),(2056,0,0),(2057,0,0),(2058,0,0),(2059,0,0),(2060,0,0),(2061,0,0),(2062,0,0),(2063,0,0),(2064,0,0),(2065,0,0),(2066,0,0),(2067,0,0),(2068,0,0),(2069,0,0),(2070,0,0),(2071,0,0),(2072,0,0),(2073,0,0),(2074,0,0),(2075,0,0),(2076,0,0),(2077,0,0),(2078,0,0),(2079,0,0),(2080,0,0),(2081,0,0),(2082,0,0),(2083,0,0),(2084,0,0),(2085,0,0),(2086,0,0),(2087,0,0),(2088,0,0),(2089,0,0),(2090,0,0),(2091,0,0),(2092,0,0),(2093,0,0),(2094,0,0),(2095,0,0),(2096,0,0),(2097,0,0),(2098,0,0),(2099,0,0),(2100,0,0),(2101,0,0),(2102,0,0),(2103,0,0),(2104,0,0),(2105,0,0),(2106,0,0),(2107,0,0),(2108,0,0),(2109,0,0),(2110,0,0),(2111,0,0),(2112,0,0),(2113,0,0),(2114,0,0),(2115,0,0),(2116,0,0),(2117,0,0),(2118,0,0),(2119,0,0),(2120,0,0),(2121,0,0),(2122,0,0),(2123,0,0),(2124,0,0),(2125,0,0),(2126,0,0),(2127,0,0),(2128,0,0),(2129,0,0),(2130,0,0),(2131,0,0),(2132,0,0),(2133,0,0),(2134,0,0),(2135,0,0),(2136,0,0),(2137,0,0),(2138,0,0),(2139,0,0),(2140,0,0),(2141,0,0),(2142,0,0),(2143,0,0),(2144,0,0),(2145,0,0),(2146,0,0),(2147,0,0),(2148,0,0),(2149,0,0),(2150,0,0),(2151,0,0),(2152,0,0),(2153,0,0),(2154,0,0),(2155,0,0),(2156,0,0),(2157,0,0),(2158,0,0),(2159,0,0),(2160,0,0),(2161,0,0),(2162,0,0),(2163,0,0),(2164,0,0),(2165,0,0),(2166,0,0),(2167,0,0),(2168,0,0),(2169,0,0),(2170,0,0),(2171,0,0),(2172,0,0),(2173,0,0),(2174,0,0),(2175,0,0),(2176,0,0),(2177,0,0),(2178,0,0),(2179,0,0),(2180,0,0),(2181,0,0),(2182,0,0),(2183,0,0),(2184,0,0),(2185,0,0),(2186,0,0),(2187,0,0),(2188,0,0),(2189,0,0),(2190,0,0),(2191,0,0),(2192,0,0),(2193,0,0),(2194,0,0),(2195,0,0),(2196,0,0),(2197,0,0),(2198,0,0),(2199,0,0),(2200,0,0),(2201,0,0),(2202,0,0),(2203,0,0),(2204,0,0),(2205,0,0),(2206,0,0),(2207,0,0),(2208,0,0),(2209,0,0),(2210,0,0),(2211,0,0),(2212,0,0),(2213,0,0),(2214,0,0),(2215,0,0),(2216,0,0),(2217,0,0),(2218,0,0),(2219,0,0),(2220,0,0),(2221,0,0),(2222,0,0),(2223,0,0),(2224,0,0),(2225,0,0),(2226,0,0),(2227,0,0),(2228,0,0),(2229,0,0),(2230,0,0),(2231,0,0),(2232,0,0),(2233,0,0),(2234,0,0),(2235,0,0),(2236,0,0),(2237,0,0),(2238,0,0),(2239,0,0),(2240,0,0),(2241,0,0),(2242,0,0),(2243,0,0),(2244,0,0),(2245,0,0),(2246,0,0),(2247,0,0),(2248,0,0),(2249,0,0),(2250,0,0),(2251,0,0),(2252,0,0),(2253,0,0),(2254,0,0),(2255,0,0),(2256,0,0),(2257,0,0),(2258,0,0),(2259,0,0),(2260,0,0),(2261,0,0),(2262,0,0),(2263,0,0),(2264,0,0),(2265,0,0),(2266,0,0),(2267,0,0),(2268,0,0),(2269,0,0),(2270,0,0),(2271,0,0),(2272,0,0),(2273,0,0),(2274,0,0),(2275,0,0),(2276,0,0),(2277,0,0),(2278,0,0),(2279,0,0),(2280,0,0),(2281,0,0),(2282,0,0),(2283,0,0),(2284,0,0),(2285,0,0),(2286,0,0),(2287,0,0),(2288,0,0),(2289,0,0),(2290,0,0),(2291,0,0),(2292,0,0),(2293,0,0),(2294,0,0),(2295,0,0),(2296,0,0),(2297,0,0),(2298,0,0),(2299,0,0),(2300,0,0),(2301,0,0),(2302,0,0),(2303,0,0),(2304,0,0),(2305,0,0),(2306,0,0),(2307,0,0),(2308,0,0),(2309,0,0),(2310,0,0),(2311,0,0),(2312,0,0),(2313,0,0),(2314,0,0),(2315,0,0),(2316,0,0),(2317,0,0),(2318,0,0),(2319,0,0),(2320,0,0),(2321,0,0),(2322,0,0),(2323,0,0),(2324,0,0),(2325,0,0),(2326,0,0),(2327,0,0),(2328,0,0),(2329,0,0),(2330,0,0),(2331,0,0),(2332,0,0),(2333,0,0),(2334,0,0),(2335,0,0),(2336,0,0),(2337,0,0),(2338,0,0),(2339,0,0),(2340,0,0),(2341,0,0),(2342,0,0),(2343,0,0),(2344,0,0),(2345,0,0),(2346,0,0),(2347,0,0),(2348,0,0),(2349,0,0),(2350,0,0),(2351,0,0),(2352,0,0),(2353,0,0),(2354,0,0),(2355,0,0),(2356,0,0),(2357,0,0),(2358,0,0),(2359,0,0),(2360,0,0),(2361,0,0),(2362,0,0),(2363,0,0),(2364,0,0),(2365,0,0),(2366,0,0),(2367,0,0),(2368,0,0),(2369,0,0),(2370,0,0),(2371,0,0),(2372,0,0),(2373,0,0),(2374,0,0),(2375,0,0),(2376,0,0),(2377,0,0),(2378,0,0),(2379,0,0),(2380,0,0),(2381,0,0),(2382,0,0),(2383,0,0),(2384,0,0),(2385,0,0),(2386,0,0),(2387,0,0),(2388,0,0),(2389,0,0),(2390,0,0),(2391,0,0),(2392,0,0),(2393,0,0),(2394,0,0),(2395,0,0),(2396,0,0),(2397,0,0),(2398,0,0),(2399,0,0),(2400,0,0),(2401,0,0),(2402,0,0),(2403,0,0),(2404,0,0),(2405,0,0),(2406,0,0),(2407,0,0),(2408,0,0),(2409,0,0),(2410,0,0),(2411,0,0),(2412,0,0),(2413,0,0),(2414,0,0),(2415,0,0),(2416,0,0),(2417,0,0),(2418,0,0),(2419,0,0),(2420,0,0),(2421,0,0),(2422,0,0),(2423,0,0),(2424,0,0),(2425,0,0),(2426,0,0),(2427,0,0),(2428,0,0),(2429,0,0),(2430,0,0),(2431,0,0),(2432,0,0),(2433,0,0),(2434,0,0),(2435,0,0),(2436,0,0),(2437,0,0),(2438,0,0),(2439,0,0),(2440,0,0),(2441,0,0),(2442,0,0),(2443,0,0),(2444,0,0),(2445,0,0),(2446,0,0),(2447,0,0),(2448,0,0),(2449,0,0),(2450,0,0),(2451,0,0),(2452,0,0),(2453,0,0),(2454,0,0),(2455,0,0),(2456,0,0),(2457,0,0),(2458,0,0),(2459,0,0),(2460,0,0),(2461,0,0),(2462,0,0),(2463,0,0),(2464,0,0),(2465,0,0),(2466,0,0),(2467,0,0),(2468,0,0),(2469,0,0),(2470,0,0),(2471,0,0),(2472,0,0),(2473,0,0),(2474,0,0),(2475,0,0),(2476,0,0),(2477,0,0),(2478,0,0),(2479,0,0),(2480,0,0),(2481,0,0),(2482,0,0),(2483,0,0),(2484,0,0),(2485,0,0),(2486,0,0),(2487,0,0),(2488,0,0),(2489,0,0),(2490,0,0),(2491,0,0),(2492,0,0),(2493,0,0),(2494,0,0),(2495,0,0),(2496,0,0),(2497,0,0),(2498,0,0),(2499,0,0),(2500,0,0),(2501,0,0),(2502,0,0),(2503,0,0),(2504,0,0),(2505,0,0),(2506,0,0),(2507,0,0),(2508,0,0),(2509,0,0),(2510,0,0),(2511,0,0),(2512,0,0),(2513,0,0),(2514,0,0),(2515,0,0),(2516,0,0),(2517,0,0),(2518,0,0),(2519,0,0),(2520,0,0),(2521,0,0),(2522,0,0),(2523,0,0),(2524,0,0),(2525,0,0),(2526,0,0),(2527,0,0),(2528,0,0),(2529,0,0),(2530,0,0),(2531,0,0),(2532,0,0),(2533,0,0),(2534,0,0),(2535,0,0),(2536,0,0),(2537,0,0),(2538,0,0),(2539,0,0),(2540,0,0),(2541,0,0),(2542,0,0),(2543,0,0),(2544,0,0),(2545,0,0),(2546,0,0),(2547,0,0),(2548,0,0),(2549,0,0),(2550,0,0),(2551,0,0),(2552,0,0),(2553,0,0),(2554,0,0),(2555,0,0),(2556,0,0),(2557,0,0),(2558,0,0),(2559,0,0),(2560,0,0),(2561,0,0),(2562,0,0),(2563,0,0),(2564,0,0),(2565,0,0),(2566,0,0),(2567,0,0),(2568,0,0),(2569,0,0),(2570,0,0),(2571,0,0),(2572,0,0),(2573,0,0),(2574,0,0),(2575,0,0),(2576,0,0),(2577,0,0),(2578,0,0),(2579,0,0),(2580,0,0),(2581,0,0),(2582,0,0),(2583,0,0),(2584,0,0),(2585,0,0),(2586,0,0),(2587,0,0),(2588,0,0),(2589,0,0),(2590,0,0),(2591,0,0),(2592,0,0),(2593,0,0),(2594,0,0),(2595,0,0),(2596,0,0),(2597,0,0),(2598,0,0),(2599,0,0),(2600,0,0),(2601,0,0),(2602,0,0),(2603,0,0),(2604,0,0),(2605,0,0),(2606,0,0),(2607,0,0),(2608,0,0),(2609,0,0),(2610,0,0),(2611,0,0),(2612,0,0),(2613,0,0),(2614,0,0),(2615,0,0),(2616,0,0),(2617,0,0),(2618,0,0),(2619,0,0),(2620,0,0),(2621,0,0),(2622,0,0),(2623,0,0),(2624,0,0),(2625,0,0),(2626,0,0),(2627,0,0),(2628,0,0),(2629,0,0),(2630,0,0),(2631,0,0),(2632,0,0),(2633,0,0),(2634,0,0),(2635,0,0),(2636,0,0),(2637,0,0),(2638,0,0),(2639,0,0),(2640,0,0),(2641,0,0),(2642,0,0),(2643,0,0),(2644,0,0),(2645,0,0),(2646,0,0),(2647,0,0),(2648,0,0),(2649,0,0),(2650,0,0),(2651,0,0),(2652,0,0),(2653,0,0),(2654,0,0),(2655,0,0),(2656,0,0),(2657,0,0),(2658,0,0),(2659,0,0),(2660,0,0),(2661,0,0),(2662,0,0),(2663,0,0),(2664,0,0),(2665,0,0),(2666,0,0),(2667,0,0),(2668,0,0),(2669,0,0),(2670,0,0),(2671,0,0),(2672,0,0),(2673,0,0),(2674,0,0),(2675,0,0),(2676,0,0),(2677,0,0),(2678,0,0),(2679,0,0),(2680,0,0),(2681,0,0),(2682,0,0),(2683,0,0),(2684,0,0),(2685,0,0),(2686,0,0),(2687,0,0),(2688,0,0),(2689,0,0),(2690,0,0),(2691,0,0),(2692,0,0),(2693,0,0),(2694,0,0),(2695,0,0),(2696,0,0),(2697,0,0),(2698,0,0),(2699,0,0),(2700,0,0),(2701,0,0),(2702,0,0),(2703,0,0),(2704,0,0),(2705,0,0),(2706,0,0),(2707,0,0),(2708,0,0),(2709,0,0),(2710,0,0),(2711,0,0),(2712,0,0),(2713,0,0),(2714,0,0),(2715,0,0),(2716,0,0),(2717,0,0),(2718,0,0),(2719,0,0),(2720,0,0),(2721,0,0),(2722,0,0),(2723,0,0),(2724,0,0),(2725,0,0),(2726,0,0),(2727,0,0),(2728,0,0),(2729,0,0),(2730,0,0),(2731,0,0),(2732,0,0),(2733,0,0),(2734,0,0),(2735,0,0),(2736,0,0),(2737,0,0),(2738,0,0),(2739,0,0),(2740,0,0),(2741,0,0),(2742,0,0),(2743,0,0),(2744,0,0),(2745,0,0),(2746,0,0),(2747,0,0),(2748,0,0),(2749,0,0),(2750,0,0),(2751,0,0),(2752,0,0),(2753,0,0),(2754,0,0),(2755,0,0),(2756,0,0),(2757,0,0),(2758,0,0),(2759,0,0),(2760,0,0),(2761,0,0),(2762,0,0),(2763,0,0),(2764,0,0),(2765,0,0),(2766,0,0),(2767,0,0),(2768,0,0),(2769,0,0),(2770,0,0),(2771,0,0),(2772,0,0),(2773,0,0),(2774,0,0),(2775,0,0),(2776,0,0),(2777,0,0),(2778,0,0),(2779,0,0),(2780,0,0),(2781,0,0),(2782,0,0),(2783,0,0),(2784,0,0),(2785,0,0),(2786,0,0),(2787,0,0),(2788,0,0),(2789,0,0),(2790,0,0),(2791,0,0),(2792,0,0),(2793,0,0),(2794,0,0),(2795,0,0),(2796,0,0),(2797,0,0),(2798,0,0),(2799,0,0),(2800,0,0),(2801,0,0),(2802,0,0),(2803,0,0),(2804,0,0),(2805,0,0),(2806,0,0),(2807,0,0),(2808,0,0),(2809,0,0),(2810,0,0),(2811,0,0),(2812,0,0),(2813,0,0),(2814,0,0),(2815,0,0),(2816,0,0),(2817,0,0),(2818,0,0),(2819,0,0),(2820,0,0),(2821,0,0),(2822,0,0),(2823,0,0),(2824,0,0),(2825,0,0),(2826,0,0),(2827,0,0),(2828,0,0),(2829,0,0),(2830,0,0),(2831,0,0),(2832,0,0),(2833,0,0),(2834,0,0),(2835,0,0),(2836,0,0),(2837,0,0),(2838,0,0),(2839,0,0),(2840,0,0),(2841,0,0),(2842,0,0),(2843,0,0),(2844,0,0),(2845,0,0),(2846,0,0),(2847,0,0),(2848,0,0),(2849,0,0),(2850,0,0),(2851,0,0),(2852,0,0),(2853,0,0),(2854,0,0),(2855,0,0),(2856,0,0),(2857,0,0),(2858,0,0),(2859,0,0),(2860,0,0),(2861,0,0),(2862,0,0),(2863,0,0),(2864,0,0),(2865,0,0),(2866,0,0),(2867,0,0),(2868,0,0),(2869,0,0),(2870,0,0),(2871,0,0),(2872,0,0),(2873,0,0),(2874,0,0),(2875,0,0),(2876,0,0),(2877,0,0),(2878,0,0),(2879,0,0),(2880,0,0),(2881,0,0),(2882,0,0),(2883,0,0),(2884,0,0),(2885,0,0),(2886,0,0),(2887,0,0),(2888,0,0),(2889,0,0),(2890,0,0),(2891,0,0),(2892,0,0),(2893,0,0),(2894,0,0),(2895,0,0),(2896,0,0),(2897,0,0),(2898,0,0),(2899,0,0),(2900,0,0),(2901,0,0),(2902,0,0),(2903,0,0),(2904,0,0),(2905,0,0),(2906,0,0),(2907,0,0),(2908,0,0),(2909,0,0),(2910,0,0),(2911,0,0),(2912,0,0),(2913,0,0),(2914,0,0),(2915,0,0),(2916,0,0),(2917,0,0),(2918,0,0),(2919,0,0),(2920,0,0),(2921,0,0),(2922,0,0),(2923,0,0),(2924,0,0),(2925,0,0),(2926,0,0),(2927,0,0),(2928,0,0),(2929,0,0),(2930,0,0),(2931,0,0),(2932,0,0),(2933,0,0),(2934,0,0),(2935,0,0),(2936,0,0),(2937,0,0),(2938,0,0),(2939,0,0),(2940,0,0),(2941,0,0),(2942,0,0),(2943,0,0),(2944,0,0),(2945,0,0),(2946,0,0),(2947,0,0),(2948,0,0),(2949,0,0),(2950,0,0),(2951,0,0),(2952,0,0),(2953,0,0),(2954,0,0),(2955,0,0),(2956,0,0),(2957,0,0),(2958,0,0),(2959,0,0),(2960,0,0),(2961,0,0),(2962,0,0),(2963,0,0),(2964,0,0),(2965,0,0),(2966,0,0),(2967,0,0),(2968,0,0),(2969,0,0),(2970,0,0),(2971,0,0),(2972,0,0),(2973,0,0),(2974,0,0),(2975,0,0),(2976,0,0),(2977,0,0),(2978,0,0),(2979,0,0),(2980,0,0),(2981,0,0),(2982,0,0),(2983,0,0),(2984,0,0),(2985,0,0),(2986,0,0),(2987,0,0),(2988,0,0),(2989,0,0),(2990,0,0),(2991,0,0),(2992,0,0),(2993,0,0),(2994,0,0),(2995,0,0),(2996,0,0),(2997,0,0),(2998,0,0),(2999,0,0),(3000,0,0),(3001,0,0),(3002,0,0),(3003,0,0),(3004,0,0),(3005,0,0),(3006,0,0),(3007,0,0),(3008,0,0),(3009,0,0),(3010,0,0),(3011,0,0),(3012,0,0),(3013,0,0),(3014,0,0),(3015,0,0),(3016,0,0),(3017,0,0),(3018,0,0),(3019,0,0),(3020,0,0),(3021,0,0),(3022,0,0),(3023,0,0),(3024,0,0),(3025,0,0),(3026,0,0),(3027,0,0),(3028,0,0),(3029,0,0),(3030,0,0),(3031,0,0),(3032,0,0),(3033,0,0),(3034,0,0),(3035,0,0),(3036,0,0),(3037,0,0),(3038,0,0),(3039,0,0),(3040,0,0),(3041,0,0),(3042,0,0),(3043,0,0),(3044,0,0),(3045,0,0),(3046,0,0),(3047,0,0),(3048,0,0),(3049,0,0),(3050,0,0),(3051,0,0),(3052,0,0),(3053,0,0),(3054,0,0),(3055,0,0),(3056,0,0),(3057,0,0),(3058,0,0),(3059,0,0),(3060,0,0),(3061,0,0),(3062,0,0),(3063,0,0),(3064,0,0),(3065,0,0),(3066,0,0),(3067,0,0),(3068,0,0),(3069,0,0),(3070,0,0),(3071,0,0),(3072,0,0),(3073,0,0),(3074,0,0),(3075,0,0),(3076,0,0),(3077,0,0),(3078,0,0),(3079,0,0),(3080,0,0),(3081,0,0),(3082,0,0),(3083,0,0),(3084,0,0),(3085,0,0),(3086,0,0),(3087,0,0),(3088,0,0),(3089,0,0),(3090,0,0),(3091,0,0),(3092,0,0),(3093,0,0),(3094,0,0),(3095,0,0),(3096,0,0),(3097,0,0),(3098,0,0),(3099,0,0),(3100,0,0),(3101,0,0),(3102,0,0),(3103,0,0),(3104,0,0),(3105,0,0),(3106,0,0),(3107,0,0),(3108,0,0),(3109,0,0),(3110,0,0),(3111,0,0),(3112,0,0),(3113,0,0),(3114,0,0),(3115,0,0),(3116,0,0),(3117,0,0),(3118,0,0),(3119,0,0),(3120,0,0),(3121,0,0),(3122,0,0),(3123,0,0),(3124,0,0),(3125,0,0),(3126,0,0),(3127,0,0),(3128,0,0),(3129,0,0),(3130,0,0),(3131,0,0),(3132,0,0),(3133,0,0),(3134,0,0),(3135,0,0),(3136,0,0),(3137,0,0),(3138,0,0),(3139,0,0),(3140,0,0),(3141,0,0),(3142,0,0),(3143,0,0),(3144,0,0),(3145,0,0),(3146,0,0),(3147,0,0),(3148,0,0),(3149,0,0),(3150,0,0),(3151,0,0),(3152,0,0),(3153,0,0),(3154,0,0),(3155,0,0),(3156,0,0),(3157,0,0),(3158,0,0),(3159,0,0),(3160,0,0),(3161,0,0),(3162,0,0),(3163,0,0),(3164,0,0),(3165,0,0),(3166,0,0),(3167,0,0),(3168,0,0),(3169,0,0),(3170,0,0),(3171,0,0),(3172,0,0),(3173,0,0),(3174,0,0),(3175,0,0),(3176,0,0),(3177,0,0),(3178,0,0),(3179,0,0),(3180,0,0),(3181,0,0),(3182,0,0),(3183,0,0),(3184,0,0),(3185,0,0),(3186,0,0),(3187,0,0),(3188,0,0),(3189,0,0),(3190,0,0),(3191,0,0),(3192,0,0),(3193,0,0),(3194,0,0),(3195,0,0),(3196,0,0),(3197,0,0),(3198,0,0),(3199,0,0),(3200,0,0),(3201,0,0),(3202,0,0),(3203,0,0),(3204,0,0),(3205,0,0),(3206,0,0),(3207,0,0),(3208,0,0),(3209,0,0),(3210,0,0),(3211,0,0),(3212,0,0),(3213,0,0),(3214,0,0),(3215,0,0),(3216,0,0),(3217,0,0),(3218,0,0),(3219,0,0),(3220,0,0),(3221,0,0),(3222,0,0),(3223,0,0),(3224,0,0),(3225,0,0),(3226,0,0),(3227,0,0),(3228,0,0),(3229,0,0),(3230,0,0),(3231,0,0),(3232,0,0),(3233,0,0),(3234,0,0),(3235,0,0),(3236,0,0),(3237,0,0),(3238,0,0),(3239,0,0),(3240,0,0),(3241,0,0),(3242,0,0),(3243,0,0),(3244,0,0),(3245,0,0),(3246,0,0),(3247,0,0),(3248,0,0),(3249,0,0),(3250,0,0),(3251,0,0),(3252,0,0),(3253,0,0),(3254,0,0),(3255,0,0),(3256,0,0),(3257,0,0),(3258,0,0),(3259,0,0),(3260,0,0),(3261,0,0),(3262,0,0),(3263,0,0),(3264,0,0),(3265,0,0),(3266,0,0),(3267,0,0),(3268,0,0),(3269,0,0),(3270,0,0),(3271,0,0),(3272,0,0),(3273,0,0),(3274,0,0),(3275,0,0),(3276,0,0),(3277,0,0),(3278,0,0),(3279,0,0),(3280,0,0),(3281,0,0),(3282,0,0),(3283,0,0),(3284,0,0),(3285,0,0),(3286,0,0),(3287,0,0),(3288,0,0),(3289,0,0),(3290,0,0),(3291,0,0),(3292,0,0),(3293,0,0),(3294,0,0),(3295,0,0),(3296,0,0),(3297,0,0),(3298,0,0),(3299,0,0),(3300,0,0),(3301,0,0),(3302,0,0),(3303,0,0),(3304,0,0),(3305,0,0),(3306,0,0),(3307,0,0),(3308,0,0),(3309,0,0),(3310,0,0),(3311,0,0),(3312,0,0),(3313,0,0),(3314,0,0),(3315,0,0),(3316,0,0),(3317,0,0),(3318,0,0),(3319,0,0),(3320,0,0),(3321,0,0),(3322,0,0),(3323,0,0),(3324,0,0),(3325,0,0),(3326,0,0),(3327,0,0),(3328,0,0),(3329,0,0),(3330,0,0),(3331,0,0),(3332,0,0),(3333,0,0),(3334,0,0),(3335,0,0),(3336,0,0),(3337,0,0),(3338,0,0),(3339,0,0),(3340,0,0),(3341,0,0),(3342,0,0),(3343,0,0),(3344,0,0),(3345,0,0),(3346,0,0),(3347,0,0),(3348,0,0),(3349,0,0),(3350,0,0),(3351,0,0),(3352,0,0),(3353,0,0),(3354,0,0),(3355,0,0),(3356,0,0),(3357,0,0),(3358,0,0),(3359,0,0),(3360,0,0),(3361,0,0),(3362,0,0),(3363,0,0),(3364,0,0),(3365,0,0),(3366,0,0),(3367,0,0),(3368,0,0),(3369,0,0),(3370,0,0),(3371,0,0),(3372,0,0),(3373,0,0),(3374,0,0),(3375,0,0),(3376,0,0),(3377,0,0),(3378,0,0),(3379,0,0),(3380,0,0),(3381,0,0),(3382,0,0),(3383,0,0),(3384,0,0),(3385,0,0),(3386,0,0),(3387,0,0),(3388,0,0),(3389,0,0),(3390,0,0),(3391,0,0),(3392,0,0),(3393,0,0),(3394,0,0),(3395,0,0),(3396,0,0),(3397,0,0),(3398,0,0),(3399,0,0),(3400,0,0),(3401,0,0),(3402,0,0),(3403,0,0),(3404,0,0),(3405,0,0),(3406,0,0),(3407,0,0),(3408,0,0),(3409,0,0),(3410,0,0),(3411,0,0),(3412,0,0),(3413,0,0),(3414,0,0),(3415,0,0),(3416,0,0),(3417,0,0),(3418,0,0),(3419,0,0),(3420,0,0),(3421,0,0),(3422,0,0),(3423,0,0),(3424,0,0),(3425,0,0),(3426,0,0),(3427,0,0),(3428,0,0),(3429,0,0),(3430,0,0),(3431,0,0),(3432,0,0),(3433,0,0),(3434,0,0),(3435,0,0),(3436,0,0),(3437,0,0),(3438,0,0),(3439,0,0),(3440,0,0),(3441,0,0),(3442,0,0),(3443,0,0),(3444,0,0),(3445,0,0),(3446,0,0),(3447,0,0),(3448,0,0),(3449,0,0),(3450,0,0),(3451,0,0),(3452,0,0),(3453,0,0),(3454,0,0),(3455,0,0),(3456,0,0),(3457,0,0),(3459,0,0),(3460,0,0),(3461,0,0),(3462,0,0),(3463,0,0),(3464,0,0),(3465,0,0),(3466,0,0),(3467,0,0),(3468,0,0),(3469,0,0),(3470,0,0),(3471,0,0),(3472,0,0),(3473,0,0),(3474,0,0),(3475,0,0),(3476,0,0),(3477,0,0),(3478,0,0),(3479,0,0),(3480,0,0),(3481,0,0),(3482,0,0),(3483,0,0),(3484,0,0),(3485,0,0),(3486,0,0),(3487,0,0),(3488,0,0),(3489,0,0),(3490,0,0),(3491,0,0),(3492,0,0),(3493,0,0),(3494,0,0),(3495,0,0),(3496,0,0),(3497,0,0),(3498,0,0),(3499,0,0),(3500,0,0),(3501,0,0),(3502,0,0),(3503,0,0),(3504,0,0),(3505,0,0),(3506,0,0),(3507,0,0),(3508,0,0),(3509,0,0),(3510,0,0),(3511,0,0),(3512,0,0),(3513,0,0),(3514,0,0),(3515,0,0),(3516,0,0),(3517,0,0),(3518,0,0),(3519,0,0),(3520,0,0),(3521,0,0),(3522,0,0),(3523,0,0),(3524,0,0),(3525,0,0),(3526,0,0),(3527,0,0),(3528,0,0),(3529,0,0),(3530,0,0),(3531,0,0),(3532,0,0),(3533,0,0),(3534,0,0),(3535,0,0),(3536,0,0),(3537,0,0),(3538,0,0),(3539,0,0),(3540,0,0),(3541,0,0),(3542,0,0),(3543,0,0),(3544,0,0),(3545,0,0),(3546,0,0),(3547,0,0),(3548,0,0),(3549,0,0),(3550,0,0),(3551,0,0),(3552,0,0),(3553,0,0),(3554,0,0),(3555,0,0),(3556,0,0),(3557,0,0),(3558,0,0),(3559,0,0),(3560,0,0),(3561,0,0),(3562,0,0),(3563,0,0),(3564,0,0),(3565,0,0),(3566,0,0),(3567,0,0),(3568,0,0),(3569,0,0),(3570,0,0),(3571,0,0),(3572,0,0),(3573,0,0),(3574,0,0),(3575,0,0),(3576,0,0),(3577,0,0),(3578,0,0),(3579,0,0),(3580,0,0),(3581,0,0),(3582,0,0),(3583,0,0),(3584,0,0),(3585,0,0),(3586,0,0),(3587,0,0),(3588,0,0),(3589,0,0),(3590,0,0),(3591,0,0),(3592,0,0),(3593,0,0),(3594,0,0),(3595,0,0),(3596,0,0),(3597,0,0),(3598,0,0),(3599,0,0),(3600,0,0),(3601,0,0),(3602,0,0),(3603,0,0),(3604,0,0),(3605,0,0),(3606,0,0),(3607,0,0),(3608,0,0),(3609,0,0),(3610,0,0),(3611,0,0),(3612,0,0),(3613,0,0),(3614,0,0),(3615,0,0),(3616,0,0),(3617,0,0),(3618,0,0),(3619,0,0),(3620,0,0),(3621,0,0),(3622,0,0),(3623,0,0),(3624,0,0),(3625,0,0),(3626,0,0),(3627,0,0),(3628,0,0),(3629,0,0),(3630,0,0),(3631,0,0),(3632,0,0),(3633,0,0),(3634,0,0),(3635,0,0),(3636,0,0),(3637,0,0),(3638,0,0),(3639,0,0),(3640,0,0),(3641,0,0),(3642,0,0),(3643,0,0),(3644,0,0),(3645,0,0),(3646,0,0),(3647,0,0),(3648,0,0),(3649,0,0),(3650,0,0),(3651,0,0),(3652,0,0),(3653,0,0),(3654,0,0),(3655,0,0),(3656,0,0),(3657,0,0),(3658,0,0),(3659,0,0),(3660,0,0),(3661,0,0),(3662,0,0),(3663,0,0),(3664,0,0),(3665,0,0),(3666,0,0),(3667,0,0),(3668,0,0),(3669,0,0),(3670,0,0),(3671,0,0),(3672,0,0),(3673,0,0),(3674,0,0),(3675,0,0),(3676,0,0),(3677,0,0),(3678,0,0),(3679,0,0),(3680,0,0),(3681,0,0),(3682,0,0),(3683,0,0),(3684,0,0),(3685,0,0),(3686,0,0),(3687,0,0),(3688,0,0),(3689,0,0),(3690,0,0),(3691,0,0),(3692,0,0),(3693,0,0),(3694,0,0),(3695,0,0),(3696,0,0),(3697,0,0),(3698,0,0),(3699,0,0),(3700,0,0),(3701,0,0),(3702,0,0),(3703,0,0),(3704,0,0),(3705,0,0),(3706,0,0),(3707,0,0),(3708,0,0),(3709,0,0),(3710,0,0),(3711,0,0),(3712,0,0),(3713,0,0),(3714,0,0),(3715,0,0),(3716,0,0),(3717,0,0),(3718,0,0),(3719,0,0),(3720,0,0),(3721,0,0),(3722,0,0),(3723,0,0),(3724,0,0),(3725,0,0),(3726,0,0),(3727,0,0),(3728,0,0),(3729,0,0),(3730,0,0),(3731,0,0),(3732,0,0),(3733,0,0),(3734,0,0),(3735,0,0),(3736,0,0),(3737,0,0),(3738,0,0),(3739,0,0),(3740,0,0),(3741,0,0),(3742,0,0),(3743,0,0),(3744,0,0),(3745,0,0),(3746,0,0),(3747,0,0),(3748,0,0),(3749,0,0),(3750,0,0),(3751,0,0),(3752,0,0),(3753,0,0),(3754,0,0),(3755,0,0),(3756,0,0),(3757,0,0),(3758,0,0),(3759,0,0),(3760,0,0),(3761,0,0),(3762,0,0),(3763,0,0),(3764,0,0),(3765,0,0),(3766,0,0),(3767,0,0),(3768,0,0),(3769,0,0),(3770,0,0),(3771,0,0),(3772,0,0),(3773,0,0),(3774,0,0),(3775,0,0),(3776,0,0),(3777,0,0),(3778,0,0),(3779,0,0),(3780,0,0),(3781,0,0),(3782,0,0),(3783,0,0),(3784,0,0),(3785,0,0),(3786,0,0),(3787,0,0),(3788,0,0),(3789,0,0),(3790,0,0),(3791,0,0),(3792,0,0),(3793,0,0),(3794,0,0),(3795,0,0),(3796,0,0),(3797,0,0),(3798,0,0),(3799,0,0),(3800,0,0),(3801,0,0),(3802,0,0),(3803,0,0),(3804,0,0),(3805,0,0),(3806,0,0),(3807,0,0),(3808,0,0),(3809,0,0),(3810,0,0),(3811,0,0),(3812,0,0),(3813,0,0),(3814,0,0),(3815,0,0),(3816,0,0),(3817,0,0),(3818,0,0),(3819,0,0),(3820,0,0),(3821,0,0),(3822,0,0),(3823,0,0),(3824,0,0),(3825,0,0),(3826,0,0),(3827,0,0),(3828,0,0),(3829,0,0),(3830,0,0),(3831,0,0),(3832,0,0),(3833,0,0),(3834,0,0),(3835,0,0),(3836,0,0),(3837,0,0),(3838,0,0),(3839,0,0),(3840,0,0),(3841,0,0),(3842,0,0),(3843,0,0),(3844,0,0),(3845,0,0),(3846,0,0),(3847,0,0),(3848,0,0),(3849,0,0),(3850,0,0),(3851,0,0),(3852,0,0),(3853,0,0),(3854,0,0),(3855,0,0),(3856,0,0),(3857,0,0),(3858,0,0),(3859,0,0),(3860,0,0),(3861,0,0),(3862,0,0),(3863,0,0),(3864,0,0),(3865,0,0),(3866,0,0),(3867,0,0),(3868,0,0),(3869,0,0),(3870,0,0),(3871,0,0),(3872,0,0),(3873,0,0),(3874,0,0),(3875,0,0),(3876,0,0),(3877,0,0),(3878,0,0),(3879,0,0),(3880,0,0),(3881,0,0),(3882,0,0),(3883,0,0),(3884,0,0),(3885,0,0),(3886,0,0),(3887,0,0),(3888,0,0),(3889,0,0),(3890,0,0),(3891,0,0),(3892,0,0),(3893,0,0),(3894,0,0),(3895,0,0),(3896,0,0),(3897,0,0),(3898,0,0),(3899,0,0),(3900,0,0),(3901,0,0),(3902,0,0),(3903,0,0),(3904,0,0),(3905,0,0),(3906,0,0),(3907,0,0),(3908,0,0),(3909,0,0),(3910,0,0),(3911,0,0),(3912,0,0),(3913,0,0),(3914,0,0),(3915,0,0),(3916,0,0),(3917,0,0),(3918,0,0),(3919,0,0),(3920,0,0),(3921,0,0),(3922,0,0),(3923,0,0),(3924,0,0),(3925,0,0),(3926,0,0),(3927,0,0),(3928,0,0),(3929,0,0),(3930,0,0),(3931,0,0),(3932,0,0),(3933,0,0),(3934,0,0),(3935,0,0),(3936,0,0),(3937,0,0),(3938,0,0),(3939,0,0),(3940,0,0),(3941,0,0),(3942,0,0),(3943,0,0),(3944,0,0),(3945,0,0),(3946,0,0),(3947,0,0),(3948,0,0),(3949,0,0),(3950,0,0),(3951,0,0),(3952,0,0),(3953,0,0),(3954,0,0),(3955,0,0),(3956,0,0),(3957,0,0),(3958,0,0),(3959,0,0),(3960,0,0),(3961,0,0),(3962,0,0),(3963,0,0),(3964,0,0),(3965,0,0),(3966,0,0),(3967,0,0),(3968,0,0),(3969,0,0),(3970,0,0),(3971,0,0),(3972,0,0),(3973,0,0),(3974,0,0),(3975,0,0),(3976,0,0),(3977,0,0),(3978,0,0),(3979,0,0),(3980,0,0),(3981,0,0),(3982,0,0),(3983,0,0),(3984,0,0),(3985,0,0),(3986,0,0),(3987,0,0),(3988,0,0),(3989,0,0),(3990,0,0),(3991,0,0),(3992,0,0),(3993,0,0),(3994,0,0),(3995,0,0),(3996,0,0),(3997,0,0),(3998,0,0),(3999,0,0),(4000,0,0),(4001,0,0),(4002,0,0),(4003,0,0),(4004,0,0),(4005,0,0),(4006,0,0),(4007,0,0),(4008,0,0),(4009,0,0),(4010,0,0),(4011,0,0),(4012,0,0),(4013,0,0),(4014,0,0),(4015,0,0),(4016,0,0),(4017,0,0),(4018,0,0),(4019,0,0),(4020,0,0),(4021,0,0),(4022,0,0),(4023,0,0),(4024,0,0),(4025,0,0),(4026,0,0),(4027,0,0),(4028,0,0),(4029,0,0),(4030,0,0),(4031,0,0),(4032,0,0),(4033,0,0),(4034,0,0),(4035,0,0),(4036,0,0),(4037,0,0),(4038,0,0),(4039,0,0),(4040,0,0),(4041,0,0),(4042,0,0),(4043,0,0),(4044,0,0),(4045,0,0),(4046,0,0),(4047,0,0),(4048,0,0),(4049,0,0),(4050,0,0),(4051,0,0),(4052,0,0),(4053,0,0),(4054,0,0),(4055,0,0),(4056,0,0),(4057,0,0),(4058,0,0),(4059,0,0),(4060,0,0),(4061,0,0),(4062,0,0),(4063,0,0),(4064,0,0),(4065,0,0),(4066,0,0),(4067,0,0),(4068,0,0),(4069,0,0),(4070,0,0),(4071,0,0),(4072,0,0),(4073,0,0),(4074,0,0),(4075,0,0),(4076,0,0),(4077,0,0),(4078,0,0),(4079,0,0),(4080,0,0),(4081,0,0),(4082,0,0),(4083,0,0),(4084,0,0),(4085,0,0),(4086,0,0),(4087,0,0),(4088,0,0),(4089,0,0),(4090,0,0),(4091,0,0),(4092,0,0),(4093,0,0),(4094,0,0),(4095,0,0),(4096,0,0),(4097,0,0),(4098,0,0),(4099,0,0),(4100,0,0),(4101,0,0),(4102,0,0),(4103,0,0),(4104,0,0),(4105,0,0),(4106,0,0),(4107,0,0),(4108,0,0),(4109,0,0),(4110,0,0),(4111,0,0),(4112,0,0),(4113,0,0),(4114,0,0),(4115,0,0),(4116,0,0),(4117,0,0),(4118,0,0),(4119,0,0),(4120,0,0),(4121,0,0),(4122,0,0),(4123,0,0),(4124,0,0),(4125,0,0),(4126,0,0),(4127,0,0),(4128,0,0),(4129,0,0),(4130,0,0),(4131,0,0),(4132,0,0),(4133,0,0),(4134,0,0),(4135,0,0),(4136,0,0),(4137,0,0),(4138,0,0),(4139,0,0),(4140,0,0),(4141,0,0),(4142,0,0),(4143,0,0),(4144,0,0),(4145,0,0),(4146,0,0),(4147,0,0),(4148,0,0),(4149,0,0),(4150,0,0),(4151,0,0),(4152,0,0),(4153,0,0),(4154,0,0),(4155,0,0),(4156,0,0),(4157,0,0),(4158,0,0),(4159,0,0),(4160,0,0),(4161,0,0),(4162,0,0),(4163,0,0),(4164,0,0),(4165,0,0),(4166,0,0),(4167,0,0),(4168,0,0),(4169,0,0),(4170,0,0),(4171,0,0),(4172,0,0),(4173,0,0),(4174,0,0),(4175,0,0),(4176,0,0),(4177,0,0),(4178,0,0),(4179,0,0),(4180,0,0),(4181,0,0),(4182,0,0),(4183,0,0),(4184,0,0),(4185,0,0),(4186,0,0),(4187,0,0),(4188,0,0),(4189,0,0),(4190,0,0),(4191,0,0),(4192,0,0),(4193,0,0),(4194,0,0),(4195,0,0),(4196,0,0),(4197,0,0),(4198,0,0),(4199,0,0),(4200,0,0),(4201,0,0),(4202,0,0),(4203,0,0),(4204,0,0),(4205,0,0),(4206,0,0),(4207,0,0),(4208,0,0),(4209,0,0),(4210,0,0),(4211,0,0),(4212,0,0),(4213,0,0),(4214,0,0),(4215,0,0),(4216,0,0),(4217,0,0),(4218,0,0),(4219,0,0),(4220,0,0),(4221,0,0),(4222,0,0),(4223,0,0),(4224,0,0),(4225,0,0),(4226,0,0),(4227,0,0),(4228,0,0),(4229,0,0),(4230,0,0),(4231,0,0),(4232,0,0),(4233,0,0),(4234,0,0),(4235,0,0),(4236,0,0),(4237,0,0),(4238,0,0),(4239,0,0),(4240,0,0),(4241,0,0),(4242,0,0),(4243,0,0),(4244,0,0),(4245,0,0),(4246,0,0),(4247,0,0),(4248,0,0),(4249,0,0),(4250,0,0),(4251,0,0),(4252,0,0),(4253,0,0),(4254,0,0),(4255,0,0),(4256,0,0),(4257,0,0),(4258,0,0),(4259,0,0),(4260,0,0),(4261,0,0),(4262,0,0),(4263,0,0),(4264,0,0),(4265,0,0),(4266,0,0),(4267,0,0),(4268,0,0),(4269,0,0),(4270,0,0),(4271,0,0),(4272,0,0),(4273,0,0),(4274,0,0),(4275,0,0),(4276,0,0),(4277,0,0),(4278,0,0),(4279,0,0),(4280,0,0),(4281,0,0),(4282,0,0),(4283,0,0),(4284,0,0),(4285,0,0),(4286,0,0),(4287,0,0),(4288,0,0),(4289,0,0),(4290,0,0),(4291,0,0),(4292,0,0),(4293,0,0),(4294,0,0),(4295,0,0),(4296,0,0),(4297,0,0),(4298,0,0),(4299,0,0),(4300,0,0),(4301,0,0),(4302,0,0),(4303,0,0),(4304,0,0),(4305,0,0),(4306,0,0),(4307,0,0),(4308,0,0),(4309,0,0),(4310,0,0),(4311,0,0),(4312,0,0),(4313,0,0),(4314,0,0),(4315,0,0),(4316,0,0),(4317,0,0),(4318,0,0),(4319,0,0),(4320,0,0),(4321,0,0),(4322,0,0),(4323,0,0),(4324,0,0),(4325,0,0),(4326,0,0),(4327,0,0),(4328,0,0),(4329,0,0),(4330,0,0),(4331,0,0),(4332,0,0),(4333,0,0),(4334,0,0),(4335,0,0),(4336,0,0),(4337,0,0),(4338,0,0),(4339,0,0),(4340,0,0),(4341,0,0),(4342,0,0),(4343,0,0),(4344,0,0),(4345,0,0),(4346,0,0),(4347,0,0),(4348,0,0),(4349,0,0),(4350,0,0),(4351,0,0),(4352,0,0),(4353,0,0),(4354,0,0),(4355,0,0),(4356,0,0),(4357,0,0),(4358,0,0),(4359,0,0),(4360,0,0),(4361,0,0),(4362,0,0),(4363,0,0),(4364,0,0),(4365,0,0),(4366,0,0),(4367,0,0),(4368,0,0),(4369,0,0),(4370,0,0),(4371,0,0),(4372,0,0),(4373,0,0),(4374,0,0),(4375,0,0),(4376,0,0),(4377,0,0),(4378,0,0),(4379,0,0),(4380,0,0),(4381,0,0),(4382,0,0),(4383,0,0),(4384,0,0),(4385,0,0),(4386,0,0),(4387,0,0),(4388,0,0),(4389,0,0),(4390,0,0),(4391,0,0),(4392,0,0),(4393,0,0),(4394,0,0),(4395,0,0),(4396,0,0),(4397,0,0),(4398,0,0),(4399,0,0),(4400,0,0),(4401,0,0),(4402,0,0),(4403,0,0),(4404,0,0),(4405,0,0),(4406,0,0),(4407,0,0),(4408,0,0),(4409,0,0),(4410,0,0),(4411,0,0),(4412,0,0),(4413,0,0),(4414,0,0),(4415,0,0),(4416,0,0),(4417,0,0),(4418,0,0),(4419,0,0),(4420,0,0),(4421,0,0),(4422,0,0),(4423,0,0),(4424,0,0),(4425,0,0),(4426,0,0),(4427,0,0),(4428,0,0),(4429,0,0),(4430,0,0),(4431,0,0),(4432,0,0),(4433,0,0),(4434,0,0),(4435,0,0),(4436,0,0),(4437,0,0),(4438,0,0),(4439,0,0),(4440,0,0),(4441,0,0),(4442,0,0),(4443,0,0),(4444,0,0),(4445,0,0),(4446,0,0),(4447,0,0),(4448,0,0),(4449,0,0),(4450,0,0),(4451,0,0),(4452,0,0),(4453,0,0),(4454,0,0),(4455,0,0),(4456,0,0),(4457,0,0),(4458,0,0),(4459,0,0),(4460,0,0),(4461,0,0),(4462,0,0),(4463,0,0),(4464,0,0),(4465,0,0),(4466,0,0),(4467,0,0),(4468,0,0),(4469,0,0),(4470,0,0),(4471,0,0),(4472,0,0),(4473,0,0),(4474,0,0),(4475,0,0),(4476,0,0),(4477,0,0),(4478,0,0),(4479,0,0),(4480,0,0),(4481,0,0),(4482,0,0),(4483,0,0),(4484,0,0),(4485,0,0),(4486,0,0),(4487,0,0),(4488,0,0),(4489,0,0),(4490,0,0),(4491,0,0),(4492,0,0),(4493,0,0),(4494,0,0),(4495,0,0),(4496,0,0),(4497,0,0),(4498,0,0),(4499,0,0),(4500,0,0),(4501,0,0),(4502,0,0),(4503,0,0),(4504,0,0),(4505,0,0),(4506,0,0),(4507,0,0),(4508,0,0),(4509,0,0),(4510,0,0),(4511,0,0),(4512,0,0),(4513,0,0),(4514,0,0),(4515,0,0),(4516,0,0),(4517,0,0),(4518,0,0),(4519,0,0),(4520,0,0),(4521,0,0),(4522,0,0),(4523,0,0),(4524,0,0),(4525,0,0),(4526,0,0),(4527,0,0),(4528,0,0),(4529,0,0),(4530,0,0),(4531,0,0),(4532,0,0),(4533,0,0),(4534,0,0),(4535,0,0),(4536,0,0),(4537,0,0),(4538,0,0),(4539,0,0),(4540,0,0),(4541,0,0),(4542,0,0),(4543,0,0),(4544,0,0),(4545,0,0),(4546,0,0),(4547,0,0),(4548,0,0),(4549,0,0),(4550,0,0),(4551,0,0),(4552,0,0),(4553,0,0),(4554,0,0),(4555,0,0),(4556,0,0),(4557,0,0),(4558,0,0),(4559,0,0),(4560,0,0),(4561,0,0),(4562,0,0),(4563,0,0),(4564,0,0),(4565,0,0),(4566,0,0),(4567,0,0),(4568,0,0),(4569,0,0),(4570,0,0),(4571,0,0),(4572,0,0),(4573,0,0),(4574,0,0),(4575,0,0),(4576,0,0),(4577,0,0),(4578,0,0),(4579,0,0),(4580,0,0),(4581,0,0),(4582,0,0),(4583,0,0),(4584,0,0),(4585,0,0),(4586,0,0),(4587,0,0),(4588,0,0),(4589,0,0),(4590,0,0),(4591,0,0),(4592,0,0),(4593,0,0),(4594,0,0),(4595,0,0),(4596,0,0),(4597,0,0),(4598,0,0),(4599,0,0),(4600,0,0),(4601,0,0),(4602,0,0),(4603,0,0),(4604,0,0),(4605,0,0),(4606,0,0),(4607,0,0),(4608,0,0),(4609,0,0),(4610,0,0),(4611,0,0),(4612,0,0),(4613,0,0),(4614,0,0),(4615,0,0),(4616,0,0),(4617,0,0),(4618,0,0),(4619,0,0),(4620,0,0),(4621,0,0),(4622,0,0),(4623,0,0),(4624,0,0),(4625,0,0),(4626,0,0),(4627,0,0),(4628,0,0),(4629,0,0),(4630,0,0),(4631,0,0),(4632,0,0),(4633,0,0),(4634,0,0),(4635,0,0),(4636,0,0),(4637,0,0),(4638,0,0),(4639,0,0),(4640,0,0),(4641,0,0),(4642,0,0),(4643,0,0),(4644,0,0),(4645,0,0),(4646,0,0),(4647,0,0),(4648,0,0),(4649,0,0),(4650,0,0),(4651,0,0),(4652,0,0),(4653,0,0),(4654,0,0),(4655,0,0),(4656,0,0),(4657,0,0),(4658,0,0),(4659,0,0),(4660,0,0),(4661,0,0),(4662,0,0),(4663,0,0),(4664,0,0),(4665,0,0),(4666,0,0),(4667,0,0),(4668,0,0),(4669,0,0),(4670,0,0),(4671,0,0),(4672,0,0),(4673,0,0),(4674,0,0),(4675,0,0),(4676,0,0),(4677,0,0),(4678,0,0),(4679,0,0),(4680,0,0),(4681,0,0),(4682,0,0),(4683,0,0),(4684,0,0),(4685,0,0),(4686,0,0),(4687,0,0),(4688,0,0),(4689,0,0),(4690,0,0),(4691,0,0),(4692,0,0),(4693,0,0),(4694,0,0),(4695,0,0),(4696,0,0),(4697,0,0),(4698,0,0),(4699,0,0),(4700,0,0),(4701,0,0),(4702,0,0),(4703,0,0),(4704,0,0),(4705,0,0),(4706,0,0),(4707,0,0),(4708,0,0),(4709,0,0),(4710,0,0),(4711,0,0),(4712,0,0),(4713,0,0),(4714,0,0),(4715,0,0),(4716,0,0),(4717,0,0),(4718,0,0),(4719,0,0),(4720,0,0),(4721,0,0),(4722,0,0),(4723,0,0),(4724,0,0),(4725,0,0),(4726,0,0),(4727,0,0),(4728,0,0),(4729,0,0),(4730,0,0),(4731,0,0),(4732,0,0),(4733,0,0),(4734,0,0),(4735,0,0),(4736,0,0),(4737,0,0),(4738,0,0),(4739,0,0),(4740,0,0),(4741,0,0),(4742,0,0),(4743,0,0),(4744,0,0),(4745,0,0),(4746,0,0),(4747,0,0),(4748,0,0),(4749,0,0),(4750,0,0),(4751,0,0),(4752,0,0),(4753,0,0),(4754,0,0),(4755,0,0),(4756,0,0),(4757,0,0),(4758,0,0),(4759,0,0),(4760,0,0),(4761,0,0),(4762,0,0),(4763,0,0),(4764,0,0),(4765,0,0),(4766,0,0),(4767,0,0),(4768,0,0),(4769,0,0),(4770,0,0),(4771,0,0),(4772,0,0),(4773,0,0),(4774,0,0),(4775,0,0),(4776,0,0),(4777,0,0),(4778,0,0),(4779,0,0),(4780,0,0),(4781,0,0),(4782,0,0),(4783,0,0),(4784,0,0),(4785,0,0),(4786,0,0),(4787,0,0),(4788,0,0),(4789,0,0),(4790,0,0),(4791,0,0),(4792,0,0),(4793,0,0),(4794,0,0),(4795,0,0),(4796,0,0),(4797,0,0),(4798,0,0),(4799,0,0),(4800,0,0),(4801,0,0),(4802,0,0),(4803,0,0),(4804,0,0),(4805,0,0),(4806,0,0),(4807,0,0),(4808,0,0),(4809,0,0),(4810,0,0),(4811,0,0),(4812,0,0),(4813,0,0),(4814,0,0),(4815,0,0),(4816,0,0),(4817,0,0),(4818,0,0),(4819,0,0),(4820,0,0),(4821,0,0),(4822,0,0),(4823,0,0),(4824,0,0),(4825,0,0),(4826,0,0),(4827,0,0),(4828,0,0),(4829,0,0),(4830,0,0),(4831,0,0),(4832,0,0),(4833,0,0),(4834,0,0),(4835,0,0),(4836,0,0),(4837,0,0),(4838,0,0),(4839,0,0),(4840,0,0),(4841,0,0),(4842,0,0),(4843,0,0),(4844,0,0),(4845,0,0),(4846,0,0),(4847,0,0),(4848,0,0),(4849,0,0),(4850,0,0),(4851,0,0),(4852,0,0),(4853,0,0),(4854,0,0),(4855,0,0),(4856,0,0),(4857,0,0),(4858,0,0),(4859,0,0),(4860,0,0),(4861,0,0),(4862,0,0),(4863,0,0),(4864,0,0),(4865,0,0),(4866,0,0),(4867,0,0),(4868,0,0),(4869,0,0),(4870,0,0),(4871,0,0),(4872,0,0),(4873,0,0),(4874,0,0),(4875,0,0),(4876,0,0),(4877,0,0),(4878,0,0),(4879,0,0),(4880,0,0),(4881,0,0),(4882,0,0),(4883,0,0),(4884,0,0),(4885,0,0),(4886,0,0),(4887,0,0),(4888,0,0),(4889,0,0),(4890,0,0),(4891,0,0),(4892,0,0),(4893,0,0),(4894,0,0),(4895,0,0),(4896,0,0),(4897,0,0),(4898,0,0),(4899,0,0),(4900,0,0),(4901,0,0),(4902,0,0),(4903,0,0),(4904,0,0),(4905,0,0),(4906,0,0),(4907,0,0),(4908,0,0),(4909,0,0),(4910,0,0),(4911,0,0),(4912,0,0),(4913,0,0),(4914,0,0),(4915,0,0),(4916,0,0),(4917,0,0),(4918,0,0),(4919,0,0),(4920,0,0),(4921,0,0),(4922,0,0),(4923,0,0),(4924,0,0),(4925,0,0),(4926,0,0),(4927,0,0),(4928,0,0),(4929,0,0),(4930,0,0),(4931,0,0),(4932,0,0),(4933,0,0),(4934,0,0),(4935,0,0),(4936,0,0),(4937,0,0),(4938,0,0),(4939,0,0),(4940,0,0),(4941,0,0),(4942,0,0),(4943,0,0),(4944,0,0),(4945,0,0),(4946,0,0),(4947,0,0),(4948,0,0),(4949,0,0),(4950,0,0),(4951,0,0),(4952,0,0),(4953,0,0),(4954,0,0),(4955,0,0),(4956,0,0),(4957,0,0),(4958,0,0),(4959,0,0),(4960,0,0),(4961,0,0),(4962,0,0),(4963,0,0),(4964,0,0),(4965,0,0),(4966,0,0),(4967,0,0),(4968,0,0),(4969,0,0),(4970,0,0),(4971,0,0),(4972,0,0),(4973,0,0),(4974,0,0),(4975,0,0),(4976,0,0),(4977,0,0),(4978,0,0),(4979,0,0),(4980,0,0),(4981,0,0),(4982,0,0),(4983,0,0),(4984,0,0),(4985,0,0),(4986,0,0),(4987,0,0),(4988,0,0),(4989,0,0),(4990,0,0),(4991,0,0),(4992,0,0),(4993,0,0),(4994,0,0),(4995,0,0),(4996,0,0),(4997,0,0),(4998,0,0),(4999,0,0),(5000,0,0),(5001,0,0),(5002,0,0),(5003,0,0),(5004,0,0),(5005,0,0),(5006,0,0),(5007,0,0),(5008,0,0),(5009,0,0),(5010,0,0),(5011,0,0),(5012,0,0),(5013,0,0),(5014,0,0),(5015,0,0),(5016,0,0),(5017,0,0),(5018,0,0),(5019,0,0),(5020,0,0),(5021,0,0),(5022,0,0),(5023,0,0),(5024,0,0),(5025,0,0),(5026,0,0),(5027,0,0),(5028,0,0),(5029,0,0),(5030,0,0),(5031,0,0),(5032,0,0),(5033,0,0),(5034,0,0),(5035,0,0),(5036,0,0),(5037,0,0),(5038,0,0),(5039,0,0),(5040,0,0),(5041,0,0),(5042,0,0),(5043,0,0),(5044,0,0),(5045,0,0),(5046,0,0),(5047,0,0),(5048,0,0),(5049,0,0),(5050,0,0),(5051,0,0),(5052,0,0),(5053,0,0),(5054,0,0),(5055,0,0),(5056,0,0),(5057,0,0),(5058,0,0),(5059,0,0),(5060,0,0),(5061,0,0),(5062,0,0),(5063,0,0),(5064,0,0),(5065,0,0),(5066,0,0),(5067,0,0),(5068,0,0),(5069,0,0),(5070,0,0),(5071,0,0),(5072,0,0),(5073,0,0),(5074,0,0),(5075,0,0),(5076,0,0),(5077,0,0),(5078,0,0),(5079,0,0),(5080,0,0),(5081,0,0),(5082,0,0),(5083,0,0),(5084,0,0),(5085,0,0),(5086,0,0),(5087,0,0),(5088,0,0),(5089,0,0),(5090,0,0),(5091,0,0),(5092,0,0),(5093,0,0),(5094,0,0),(5095,0,0),(5096,0,0),(5097,0,0),(5098,0,0),(5099,0,0),(5100,0,0),(5101,0,0),(5102,0,0),(5103,0,0),(5104,0,0),(5105,0,0),(5106,0,0),(5107,0,0),(5108,0,0),(5109,0,0),(5110,0,0),(5111,0,0),(5112,0,0),(5113,0,0),(5114,0,0),(5115,0,0),(5116,0,0),(5117,0,0),(5118,0,0),(5119,0,0),(5120,0,0),(5121,0,0),(5122,0,0),(5123,0,0),(5124,0,0),(5125,0,0),(5126,0,0),(5127,0,0),(5128,0,0),(5129,0,0),(5130,0,0),(5131,0,0),(5132,0,0),(5133,0,0),(5134,0,0),(5135,0,0),(5136,0,0),(5137,0,0),(5138,0,0),(5139,0,0),(5140,0,0),(5141,0,0),(5142,0,0),(5143,0,0),(5144,0,0),(5145,0,0),(5146,0,0),(5147,0,0),(5148,0,0),(5149,0,0),(5150,0,0),(5151,0,0),(5152,0,0),(5153,0,0),(5154,0,0),(5155,0,0),(5156,0,0),(5157,0,0),(5158,0,0),(5159,0,0),(5160,0,0),(5161,0,0),(5162,0,0),(5163,0,0),(5164,0,0),(5165,0,0),(5166,0,0),(5167,0,0),(5168,0,0),(5169,0,0),(5170,0,0),(5171,0,0),(5172,0,0),(5173,0,0),(5174,0,0),(5175,0,0),(5176,0,0),(5177,0,0),(5178,0,0),(5179,0,0),(5180,0,0),(5181,0,0),(5182,0,0),(5183,0,0),(5184,0,0),(5185,0,0),(5186,0,0),(5187,0,0),(5188,0,0),(5189,0,0),(5190,0,0),(5191,0,0),(5192,0,0),(5193,0,0),(5194,0,0),(5195,0,0),(5196,0,0),(5197,0,0),(5198,0,0),(5199,0,0),(5200,0,0),(5202,0,0),(5204,0,0),(5205,0,0),(5206,0,0),(5207,0,0),(5208,0,0),(5209,0,0),(5210,0,0),(5211,0,0),(5212,0,0),(5213,0,0),(5214,0,0),(5215,0,0),(5216,0,0),(5217,0,0),(5218,0,0),(5219,0,0),(5220,0,0),(5221,0,0),(5222,0,0),(5223,0,0),(5224,0,0),(5225,0,0),(5226,0,0),(5227,0,0),(5228,0,0),(5229,0,0),(5230,0,0),(5231,0,0),(5232,0,0),(5233,0,0),(5234,0,0),(5235,0,0),(5236,0,0),(5237,0,0),(5238,0,0),(5239,0,0),(5240,0,0),(5241,0,0),(5242,0,0),(5243,0,0),(5244,0,0),(5245,0,0),(5246,0,0),(5247,0,0),(5248,0,0),(5249,0,0),(5250,0,0),(5251,0,0),(5252,0,0),(5253,0,0),(5254,0,0),(5255,0,0),(5256,0,0),(5257,0,0),(5258,0,0),(5259,0,0),(5260,0,0),(5261,0,0),(5262,0,0),(5263,0,0),(5264,0,0),(5265,0,0),(5266,0,0),(5267,0,0),(5268,0,0),(5269,0,0),(5270,0,0),(5271,0,0),(5272,0,0),(5273,0,0),(5274,0,0),(5275,0,0),(5276,0,0),(5277,0,0),(5278,0,0),(5279,0,0),(5280,0,0),(5281,0,0),(5282,0,0),(5283,0,0),(5284,0,0),(5285,0,0),(5286,0,0),(5287,0,0),(5288,0,0),(5289,0,0),(5290,0,0),(5291,0,0),(5292,0,0),(5293,0,0),(5294,0,0),(5295,0,0),(5296,0,0),(5297,0,0),(5298,0,0),(5299,0,0),(5300,0,0),(5301,0,0),(5302,0,0),(5303,0,0),(5304,0,0),(5305,0,0),(5306,0,0),(5307,0,0),(5308,0,0),(5309,0,0),(5310,0,0),(5311,0,0),(5312,0,0),(5313,0,0),(5314,0,0),(5315,0,0),(5316,0,0),(5317,0,0),(5318,0,0),(5319,0,0),(5320,0,0),(5321,0,0),(5322,0,0),(5323,0,0),(5324,0,0),(5325,0,0),(5326,0,0),(5327,0,0),(5328,0,0),(5329,0,0),(5330,0,0),(5331,0,0),(5332,0,0),(5333,0,0),(5334,0,0),(5335,0,0),(5336,0,0),(5337,0,0),(5338,0,0),(5339,0,0),(5340,0,0),(5341,0,0),(5342,0,0),(5343,0,0),(5344,0,0),(5345,0,0),(5346,0,0),(5347,0,0),(5348,0,0),(5349,0,0),(5350,0,0),(5351,0,0),(5352,0,0),(5353,0,0),(5354,0,0),(5355,0,0),(5356,0,0),(5357,0,0),(5358,0,0),(5359,0,0),(5360,0,0),(5361,0,0),(5362,0,0),(5363,0,0),(5364,0,0),(5365,0,0),(5366,0,0),(5367,0,0),(5368,0,0),(5369,0,0),(5370,0,0),(5371,0,0),(5372,0,0),(5373,0,0),(5374,0,0),(5375,0,0),(5376,0,0),(5377,0,0),(5378,0,0),(5379,0,0),(5380,0,0),(5381,0,0),(5382,0,0),(5383,0,0),(5384,0,0),(5385,0,0),(5386,0,0),(5387,0,0),(5388,0,0),(5389,0,0),(5390,0,0),(5391,0,0),(5392,0,0),(5393,0,0),(5394,0,0),(5395,0,0),(5396,0,0),(5397,0,0),(5398,0,0),(5399,0,0),(5400,0,0),(5401,0,0),(5402,0,0),(5403,0,0),(5404,0,0),(5405,0,0),(5406,0,0),(5407,0,0),(5408,0,0),(5409,0,0),(5410,0,0),(5411,0,0),(5412,0,0),(5413,0,0),(5414,0,0),(5415,0,0),(5416,0,0),(5417,0,0),(5418,0,0),(5419,0,0),(5420,0,0),(5421,0,0),(5422,0,0),(5423,0,0),(5424,0,0),(5425,0,0),(5426,0,0),(5427,0,0),(5428,0,0),(5429,0,0),(5430,0,0),(5431,0,0),(5432,0,0),(5433,0,0),(5434,0,0),(5435,0,0),(5436,0,0),(5437,0,0),(5438,0,0),(5439,0,0),(5440,0,0),(5441,0,0),(5442,0,0),(5443,0,0),(5444,0,0),(5445,0,0),(5446,0,0),(5447,0,0),(5448,0,0),(5449,0,0),(5450,0,0),(5451,0,0),(5452,0,0),(5453,0,0),(5454,0,0),(5455,0,0),(5456,0,0),(5457,0,0),(5458,0,0),(5459,0,0),(5460,0,0),(5461,0,0),(5462,0,0),(5463,0,0),(5464,0,0),(5465,0,0),(5466,0,0),(5467,0,0),(5468,0,0),(5469,0,0),(5470,0,0),(5471,0,0),(5472,0,0),(5473,0,0),(5474,0,0),(5475,0,0),(5476,0,0),(5477,0,0),(5478,0,0),(5479,0,0),(5480,0,0),(5481,0,0),(5482,0,0),(5483,0,0),(5484,0,0),(5485,0,0),(5486,0,0),(5487,0,0),(5488,0,0),(5489,0,0),(5490,0,0),(5491,0,0),(5492,0,0),(5493,0,0),(5494,0,0),(5495,0,0),(5496,0,0),(5497,0,0),(5498,0,0),(5499,0,0),(5500,0,0),(5501,0,0),(5502,0,0),(5503,0,0),(5504,0,0),(5505,0,0),(5506,0,0),(5507,0,0),(5508,0,0),(5509,0,0),(5510,0,0),(5511,0,0),(5512,0,0),(5513,0,0),(5514,0,0),(5515,0,0),(5516,0,0),(5517,0,0),(5518,0,0),(5519,0,0),(5520,0,0),(5521,0,0),(5522,0,0),(5523,0,0),(5524,0,0),(5525,0,0),(5526,0,0),(5527,0,0),(5528,0,0),(5529,0,0),(5530,0,0),(5531,0,0),(5532,0,0),(5533,0,0),(5534,0,0),(5535,0,0),(5536,0,0),(5537,0,0),(5538,0,0),(5539,0,0),(5540,0,0),(5541,0,0),(5542,0,0),(5543,0,0),(5544,0,0),(5545,0,0),(5546,0,0),(5547,0,0),(5548,0,0),(5549,0,0),(5550,0,0),(5551,0,0),(5552,0,0),(5553,0,0),(5554,0,0),(5555,0,0),(5556,0,0),(5557,0,0),(5558,0,0),(5559,0,0),(5560,0,0),(5561,0,0),(5562,0,0),(5563,0,0),(5564,0,0),(5565,0,0),(5566,0,0),(5567,0,0),(5568,0,0),(5569,0,0),(5570,0,0),(5571,0,0),(5572,0,0),(5573,0,0),(5574,0,0),(5575,0,0),(5576,0,0),(5577,0,0),(5578,0,0),(5579,0,0),(5580,0,0),(5581,0,0),(5582,0,0),(5583,0,0),(5584,0,0),(5585,0,0),(5586,0,0),(5587,0,0),(5588,0,0),(5589,0,0),(5590,0,0),(5591,0,0),(5592,0,0),(5593,0,0),(5594,0,0),(5595,0,0),(5596,0,0),(5597,0,0),(5598,0,0),(5599,0,0),(5600,0,0),(5601,0,0),(5602,0,0),(5603,0,0),(5604,0,0),(5605,0,0),(5606,0,0),(5607,0,0),(5608,0,0),(5609,0,0),(5610,0,0),(5611,0,0),(5612,0,0),(5613,0,0),(5614,0,0),(5615,0,0),(5616,0,0),(5617,0,0),(5618,0,0),(5619,0,0),(5620,0,0),(5621,0,0),(5622,0,0),(5623,0,0),(5624,0,0),(5625,0,0),(5626,0,0),(5627,0,0),(5628,0,0),(5629,0,0),(5630,0,0),(5631,0,0),(5632,0,0),(5633,0,0),(5634,0,0),(5635,0,0),(5636,0,0),(5637,0,0),(5638,0,0),(5639,0,0),(5640,0,0),(5641,0,0),(5642,0,0),(5643,0,0),(5644,0,0),(5645,0,0),(5646,0,0),(5647,0,0),(5648,0,0),(5649,0,0),(5650,0,0),(5651,0,0),(5652,0,0),(5653,0,0),(5654,0,0),(5655,0,0),(5656,0,0),(5657,0,0),(5658,0,0),(5659,0,0),(5660,0,0),(5661,0,0),(5662,0,0),(5663,0,0),(5664,0,0),(5665,0,0),(5666,0,0),(5667,0,0),(5668,0,0),(5669,0,0),(5670,0,0),(5671,0,0),(5672,0,0),(5673,0,0),(5674,0,0),(5675,0,0),(5676,0,0),(5677,0,0),(5678,0,0),(5679,0,0),(5680,0,0),(5681,0,0),(5682,0,0),(5683,0,0),(5684,0,0),(5685,0,0),(5686,0,0),(5687,0,0),(5688,0,0),(5689,0,0),(5690,0,0),(5691,0,0),(5692,0,0),(5693,0,0),(5694,0,0),(5695,0,0),(5696,0,0),(5697,0,0),(5698,0,0),(5699,0,0),(5700,0,0),(5701,0,0),(5702,0,0),(5703,0,0),(5704,0,0),(5705,0,0),(5706,0,0),(5707,0,0),(5708,0,0),(5709,0,0),(5710,0,0),(5711,0,0),(5712,0,0),(5713,0,0),(5714,0,0),(5715,0,0),(5716,0,0),(5717,0,0),(5718,0,0),(5719,0,0),(5720,0,0),(5721,0,0),(5722,0,0),(5723,0,0),(5724,0,0),(5725,0,0),(5726,0,0),(5727,0,0),(5728,0,0),(5729,0,0),(5730,0,0),(5731,0,0),(5732,0,0),(5733,0,0),(5734,0,0),(5735,0,0),(5736,0,0),(5737,0,0),(5738,0,0),(5739,0,0),(5740,0,0),(5741,0,0),(5742,0,0),(5743,0,0),(5744,0,0),(5745,0,0),(5746,0,0),(5747,0,0),(5748,0,0),(5749,0,0),(5750,0,0),(5751,0,0),(5752,0,0),(5753,0,0),(5754,0,0),(5755,0,0),(5756,0,0),(5757,0,0),(5758,0,0),(5759,0,0),(5760,0,0),(5761,0,0),(5762,0,0),(5763,0,0),(5764,0,0),(5765,0,0),(5766,0,0),(5767,0,0),(5768,0,0),(5769,0,0),(5770,0,0),(5771,0,0),(5772,0,0),(5773,0,0),(5774,0,0),(5775,0,0),(5776,0,0),(5777,0,0),(5778,0,0),(5779,0,0),(5780,0,0),(5781,0,0),(5782,0,0),(5783,0,0),(5784,0,0),(5785,0,0),(5786,0,0),(5787,0,0),(5788,0,0),(5789,0,0),(5790,0,0),(5791,0,0),(5792,0,0),(5793,0,0),(5794,0,0),(5795,0,0),(5796,0,0),(5797,0,0),(5798,0,0),(5799,0,0),(5800,0,0),(5801,0,0),(5802,0,0),(5803,0,0),(5804,0,0),(5805,0,0),(5806,0,0),(5807,0,0),(5808,0,0),(5809,0,0),(5810,0,0),(5811,0,0),(5812,0,0),(5813,0,0),(5814,0,0),(5815,0,0),(5816,0,0),(5817,0,0),(5818,0,0),(5819,0,0),(5820,0,0),(5821,0,0),(5822,0,0),(5823,0,0),(5824,0,0),(5825,0,0),(5826,0,0),(5827,0,0),(5828,0,0),(5829,0,0),(5830,0,0),(5831,0,0),(5832,0,0),(5833,0,0),(5834,0,0),(5835,0,0),(5836,0,0),(5837,0,0),(5838,0,0),(5839,0,0),(5840,0,0),(5841,0,0),(5842,0,0),(5843,0,0),(5844,0,0),(5845,0,0),(5846,0,0),(5847,0,0),(5848,0,0),(5849,0,0),(5850,0,0),(5851,0,0),(5852,0,0),(5853,0,0),(5854,0,0),(5855,0,0),(5856,0,0),(5857,0,0),(5858,0,0),(5859,0,0),(5860,0,0),(5861,0,0),(5862,0,0),(5863,0,0),(5864,0,0),(5865,0,0),(5866,0,0),(5867,0,0),(5868,0,0),(5869,0,0),(5870,0,0),(5871,0,0),(5872,0,0),(5873,0,0),(5874,0,0),(5875,0,0),(5876,0,0),(5877,0,0),(5878,0,0),(5879,0,0),(5880,0,0),(5881,0,0),(5882,0,0),(5883,0,0),(5884,0,0),(5885,0,0),(5886,0,0),(5887,0,0),(5888,0,0),(5889,0,0),(5890,0,0),(5891,0,0),(5892,0,0),(5893,0,0),(5894,0,0),(5895,0,0),(5896,0,0),(5897,0,0),(5898,0,0),(5899,0,0),(5900,0,0),(5901,0,0),(5902,0,0),(5903,0,0),(5904,0,0),(5905,0,0),(5906,0,0),(5907,0,0),(5908,0,0),(5909,0,0),(5910,0,0),(5911,0,0),(5912,0,0),(5913,0,0),(5914,0,0),(5915,0,0),(5916,0,0),(5917,0,0),(5918,0,0),(5919,0,0),(5920,0,0),(5921,0,0),(5922,0,0),(5923,0,0),(5924,0,0),(5925,0,0),(5926,0,0),(5927,0,0),(5928,0,0),(5929,0,0),(5930,0,0),(5931,0,0),(5932,0,0),(5933,0,0),(5934,0,0),(5935,0,0),(5936,0,0),(5937,0,0),(5938,0,0),(5939,0,0),(5940,0,0),(5941,0,0),(5942,0,0),(5943,0,0),(5944,0,0),(5945,0,0),(5946,0,0),(5947,0,0),(5948,0,0),(5949,0,0),(5950,0,0),(5951,0,0),(5952,0,0),(5953,0,0),(5954,0,0),(5955,0,0),(5956,0,0),(5957,0,0),(5958,0,0),(5959,0,0),(5960,0,0),(5961,0,0),(5962,0,0),(5963,0,0),(5964,0,0),(5965,0,0),(5966,0,0),(5967,0,0),(5968,0,0),(5969,0,0),(5970,0,0),(5971,0,0),(5972,0,0),(5973,0,0),(5974,0,0),(5975,0,0),(5976,0,0),(5977,0,0),(5978,0,0),(5979,0,0),(5980,0,0),(5981,0,0),(5982,0,0),(5983,0,0),(5984,0,0),(5985,0,0),(5986,0,0),(5987,0,0),(5988,0,0),(5989,0,0),(5990,0,0),(5991,0,0),(5992,0,0),(5993,0,0),(5994,0,0),(5995,0,0),(5996,0,0),(5997,0,0),(5998,0,0),(5999,0,0),(6000,0,0),(6001,0,0),(6002,0,0),(6003,0,0),(6004,0,0),(6005,0,0),(6006,0,0),(6007,0,0),(6008,0,0),(6009,0,0),(6010,0,0),(6011,0,0),(6012,0,0),(6013,0,0),(6014,0,0),(6015,0,0),(6016,0,0),(6017,0,0),(6018,0,0),(6019,0,0),(6020,0,0),(6021,0,0),(6022,0,0),(6023,0,0),(6024,0,0),(6025,0,0),(6026,0,0),(6027,0,0),(6028,0,0),(6029,0,0),(6030,0,0),(6031,0,0),(6032,0,0),(6033,0,0),(6034,0,0),(6035,0,0),(6036,0,0),(6037,0,0),(6038,0,0),(6039,0,0),(6040,0,0),(6041,0,0),(6042,0,0),(6043,0,0),(6044,0,0),(6045,0,0),(6046,0,0),(6047,0,0),(6048,0,0),(6049,0,0),(6050,0,0),(6051,0,0),(6052,0,0),(6053,0,0),(6054,0,0),(6055,0,0),(6056,0,0),(6057,0,0),(6058,0,0),(6059,0,0),(6060,0,0),(6061,0,0),(6062,0,0),(6063,0,0),(6064,0,0),(6065,0,0),(6066,0,0),(6067,0,0),(6068,0,0),(6069,0,0),(6070,0,0),(6071,0,0),(6072,0,0),(6073,0,0),(6074,0,0),(6075,0,0),(6076,0,0),(6077,0,0),(6078,0,0),(6079,0,0),(6080,0,0),(6081,0,0),(6082,0,0),(6083,0,0),(6084,0,0),(6085,0,0),(6086,0,0),(6087,0,0),(6088,0,0),(6089,0,0),(6090,0,0),(6091,0,0),(6092,0,0),(6093,0,0),(6094,0,0),(6095,0,0),(6096,0,0),(6097,0,0),(6098,0,0),(6099,0,0),(6100,0,0),(6101,0,0),(6102,0,0),(6103,0,0),(6104,0,0),(6105,0,0),(6106,0,0),(6107,0,0),(6108,0,0),(6109,0,0),(6110,0,0),(6111,0,0),(6112,0,0),(6113,0,0),(6114,0,0),(6115,0,0),(6116,0,0),(6117,0,0),(6118,0,0),(6119,0,0),(6120,0,0),(6121,0,0),(6122,0,0),(6123,0,0),(6124,0,0),(6125,0,0),(6126,0,0),(6127,0,0),(6128,0,0),(6129,0,0),(6130,0,0),(6131,0,0),(6132,0,0),(6133,0,0),(6134,0,0),(6135,0,0),(6136,0,0),(6137,0,0),(6138,0,0),(6139,0,0),(6140,0,0),(6141,0,0),(6142,0,0),(6143,0,0),(6144,0,0),(6145,0,0),(6146,0,0),(6147,0,0),(6148,0,0),(6149,0,0),(6150,0,0),(6151,0,0),(6152,0,0),(6153,0,0),(6154,0,0),(6155,0,0),(6156,0,0),(6157,0,0),(6158,0,0),(6159,0,0),(6160,0,0),(6161,0,0),(6162,0,0),(6163,0,0),(6164,0,0),(6165,0,0),(6166,0,0),(6167,0,0),(6168,0,0),(6169,0,0),(6170,0,0),(6171,0,0),(6172,0,0),(6173,0,0),(6174,0,0),(6175,0,0),(6176,0,0),(6177,0,0),(6178,0,0),(6179,0,0),(6180,0,0),(6181,0,0),(6182,0,0),(6183,0,0),(6184,0,0),(6185,0,0),(6186,0,0),(6187,0,0),(6188,0,0),(6189,0,0),(6190,0,0),(6191,0,0),(6192,0,0),(6193,0,0),(6194,0,0),(6195,0,0),(6196,0,0),(6197,0,0),(6198,0,0),(6199,0,0),(6200,0,0),(6201,0,0),(6202,0,0),(6203,0,0),(6204,0,0),(6205,0,0),(6206,0,0),(6207,0,0),(6208,0,0),(6209,0,0),(6210,0,0),(6211,0,0),(6212,0,0),(6213,0,0),(6214,0,0),(6215,0,0),(6216,0,0),(6217,0,0),(6218,0,0),(6219,0,0),(6220,0,0),(6221,0,0),(6222,0,0),(6223,0,0),(6224,0,0),(6225,0,0),(6226,0,0),(6227,0,0),(6228,0,0),(6229,0,0),(6230,0,0),(6231,0,0),(6232,0,0),(6233,0,0),(6234,0,0),(6235,0,0),(6236,0,0),(6237,0,0),(6238,0,0),(6239,0,0),(6240,0,0),(6241,0,0),(6242,0,0),(6243,0,0),(6244,0,0),(6245,0,0),(6246,0,0),(6247,0,0),(6248,0,0),(6249,0,0),(6250,0,0),(6251,0,0),(6252,0,0),(6253,0,0),(6254,0,0),(6255,0,0),(6256,0,0),(6257,0,0),(6258,0,0),(6259,0,0),(6260,0,0),(6261,0,0),(6262,0,0),(6263,0,0),(6264,0,0),(6265,0,0),(6266,0,0),(6267,0,0),(6268,0,0),(6269,0,0),(6270,0,0),(6271,0,0),(6272,0,0),(6273,0,0),(6274,0,0),(6275,0,0),(6276,0,0),(6277,0,0),(6278,0,0),(6279,0,0),(6280,0,0),(6281,0,0),(6282,0,0),(6283,0,0),(6284,0,0),(6285,0,0),(6286,0,0),(6287,0,0),(6288,0,0),(6289,0,0),(6290,0,0),(6291,0,0),(6292,0,0),(6293,0,0),(6294,0,0),(6295,0,0),(6296,0,0),(6297,0,0),(6298,0,0),(6299,0,0),(6300,0,0),(6301,0,0),(6302,0,0),(6303,0,0),(6304,0,0),(6305,0,0),(6306,0,0),(6307,0,0),(6308,0,0),(6309,0,0),(6310,0,0),(6311,0,0),(6312,0,0),(6313,0,0),(6314,0,0),(6315,0,0),(6316,0,0),(6317,0,0),(6318,0,0),(6319,0,0),(6320,0,0),(6321,0,0),(6322,0,0),(6323,0,0),(6324,0,0),(6325,0,0),(6326,0,0),(6327,0,0),(6328,0,0),(6329,0,0),(6330,0,0),(6331,0,0),(6332,0,0),(6333,0,0),(6334,0,0),(6335,0,0),(6336,0,0),(6337,0,0),(6338,0,0),(6339,0,0),(6340,0,0),(6341,0,0),(6342,0,0),(6343,0,0),(6344,0,0),(6345,0,0),(6346,0,0),(6347,0,0),(6348,0,0),(6349,0,0),(6350,0,0),(6351,0,0),(6352,0,0),(6353,0,0),(6354,0,0),(6355,0,0),(6356,0,0),(6357,0,0),(6358,0,0),(6359,0,0),(6360,0,0),(6361,0,0),(6362,0,0),(6363,0,0),(6364,0,0),(6365,0,0),(6366,0,0),(6367,0,0),(6368,0,0),(6369,0,0),(6370,0,0),(6371,0,0),(6372,0,0),(6373,0,0),(6374,0,0),(6375,0,0),(6376,0,0),(6377,0,0),(6378,0,0),(6379,0,0),(6380,0,0),(6381,0,0),(6382,0,0),(6383,0,0),(6384,0,0),(6385,0,0),(6386,0,0),(6387,0,0),(6388,0,0),(6389,0,0),(6390,0,0),(6391,0,0),(6392,0,0),(6393,0,0),(6394,0,0),(6395,0,0),(6396,0,0),(6397,0,0),(6398,0,0),(6399,0,0),(6401,0,0),(6402,0,0),(6403,0,0),(6404,0,0),(6405,0,0),(6406,0,0),(6407,0,0),(6408,0,0),(6409,0,0),(6410,0,0),(6411,0,0),(6412,0,0),(6413,0,0),(6414,0,0),(6415,0,0),(6416,0,0),(6417,0,0),(6418,0,0),(6419,0,0),(6420,0,0),(6421,0,0),(6422,0,0),(6423,0,0),(6424,0,0),(6425,0,0),(6426,0,0),(6427,0,0),(6428,0,0),(6429,0,0),(6430,0,0),(6431,0,0),(6432,0,0),(6433,0,0),(6434,0,0),(6435,0,0),(6436,0,0),(6437,0,0),(6438,0,0),(6439,0,0),(6440,0,0),(6441,0,0),(6442,0,0),(6443,0,0),(6444,0,0),(6445,0,0),(6446,0,0),(6447,0,0),(6448,0,0),(6449,0,0),(6450,0,0),(6451,0,0),(6452,0,0),(6453,0,0),(6454,0,0),(6455,0,0),(6456,0,0),(6457,0,0),(6458,0,0),(6459,0,0),(6460,0,0),(6461,0,0),(6462,0,0),(6463,0,0),(6464,0,0),(6465,0,0),(6466,0,0),(6467,0,0),(6468,0,0),(6469,0,0),(6470,0,0),(6471,0,0),(6472,0,0),(6473,0,0),(6474,0,0),(6475,0,0),(6476,0,0),(6477,0,0),(6478,0,0),(6479,0,0),(6480,0,0),(6481,0,0),(6482,0,0),(6483,0,0),(6484,0,0),(6485,0,0),(6486,0,0),(6487,0,0),(6488,0,0),(6489,0,0),(6490,0,0),(6491,0,0),(6492,0,0),(6493,0,0),(6494,0,0),(6495,0,0),(6496,0,0),(6497,0,0),(6498,0,0),(6499,0,0),(6500,0,0),(6501,0,0),(6502,0,0),(6503,0,0),(6504,0,0),(6505,0,0),(6506,0,0),(6507,0,0),(6508,0,0),(6509,0,0),(6510,0,0),(6511,0,0),(6512,0,0),(6513,0,0),(6514,0,0),(6515,0,0),(6516,0,0),(6517,0,0),(6518,0,0),(6519,0,0),(6520,0,0),(6521,0,0),(6522,0,0),(6523,0,0),(6524,0,0),(6525,0,0),(6526,0,0),(6527,0,0),(6528,0,0),(6529,0,0),(6530,0,0),(6531,0,0),(6532,0,0),(6533,0,0),(6534,0,0),(6535,0,0),(6536,0,0),(6537,0,0),(6538,0,0),(6539,0,0),(6540,0,0),(6541,0,0),(6542,0,0),(6543,0,0),(6544,0,0),(6545,0,0),(6546,0,0),(6547,0,0),(6548,0,0),(6549,0,0),(6550,0,0),(6551,0,0),(6552,0,0),(6553,0,0),(6554,0,0),(6555,0,0),(6556,0,0),(6557,0,0),(6558,0,0),(6559,0,0),(6560,0,0),(6561,0,0),(6562,0,0),(6563,0,0),(6564,0,0),(6565,0,0),(6566,0,0),(6567,0,0),(6568,0,0),(6569,0,0),(6570,0,0),(6571,0,0),(6572,0,0),(6573,0,0),(6574,0,0),(6575,0,0),(6576,0,0),(6577,0,0),(6578,0,0),(6579,0,0),(6580,0,0),(6581,0,0),(6582,0,0),(6583,0,0),(6584,0,0),(6585,0,0),(6586,0,0),(6587,0,0),(6588,0,0),(6589,0,0),(6590,0,0),(6591,0,0),(6592,0,0),(6593,0,0),(6594,0,0),(6595,0,0),(6596,0,0),(6597,0,0),(6598,0,0),(6599,0,0),(6600,0,0),(6601,0,0),(6602,0,0),(6603,0,0),(6604,0,0),(6605,0,0),(6606,0,0),(6607,0,0),(6608,0,0),(6609,0,0),(6610,0,0),(6611,0,0),(6612,0,0),(6613,0,0),(6614,0,0),(6615,0,0),(6616,0,0),(6617,0,0),(6618,0,0),(6619,0,0),(6620,0,0),(6621,0,0),(6622,0,0),(6623,0,0),(6624,0,0),(6625,0,0),(6626,0,0),(6627,0,0),(6628,0,0),(6629,0,0),(6630,0,0),(6631,0,0),(6632,0,0),(6633,0,0),(6634,0,0),(6635,0,0),(6636,0,0),(6637,0,0),(6638,0,0),(6639,0,0),(6640,0,0),(6641,0,0),(6642,0,0),(6643,0,0),(6644,0,0),(6645,0,0),(6646,0,0),(6647,0,0),(6648,0,0),(6649,0,0),(6650,0,0),(6651,0,0),(6652,0,0),(6653,0,0),(6654,0,0),(6655,0,0),(6656,0,0),(6657,0,0),(6658,0,0),(6659,0,0),(6660,0,0),(6661,0,0),(6662,0,0),(6663,0,0),(6664,0,0),(6665,0,0),(6666,0,0),(6667,0,0),(6668,0,0),(6669,0,0),(6670,0,0),(6671,0,0),(6672,0,0),(6673,0,0),(6674,0,0),(6675,0,0),(6676,0,0),(6677,0,0),(6678,0,0),(6679,0,0),(6680,0,0),(6681,0,0),(6682,0,0),(6683,0,0),(6684,0,0),(6685,0,0),(6686,0,0),(6687,0,0),(6688,0,0),(6689,0,0),(6690,0,0),(6691,0,0),(6692,0,0),(6693,0,0),(6694,0,0),(6695,0,0),(6696,0,0),(6697,0,0),(6698,0,0),(6699,0,0),(6700,0,0),(6701,0,0),(6702,0,0),(6703,0,0),(6704,0,0),(6705,0,0),(6706,0,0),(6707,0,0),(6708,0,0),(6709,0,0),(6710,0,0),(6711,0,0),(6712,0,0),(6713,0,0),(6714,0,0),(6715,0,0),(6716,0,0),(6717,0,0),(6718,0,0),(6719,0,0),(6720,0,0),(6721,0,0),(6722,0,0),(6723,0,0),(6724,0,0),(6725,0,0),(6726,0,0),(6727,0,0),(6728,0,0),(6729,0,0),(6730,0,0),(6731,0,0),(6732,0,0),(6733,0,0),(6734,0,0),(6735,0,0),(6736,0,0),(6737,0,0),(6738,0,0),(6739,0,0),(6740,0,0),(6741,0,0),(6742,0,0),(6743,0,0),(6744,0,0),(6745,0,0),(6746,0,0),(6747,0,0),(6748,0,0),(6749,0,0),(6750,0,0),(6751,0,0),(6752,0,0),(6753,0,0),(6754,0,0),(6755,0,0),(6756,0,0),(6757,0,0),(6758,0,0),(6759,0,0),(6760,0,0),(6761,0,0),(6762,0,0),(6763,0,0),(6764,0,0),(6765,0,0),(6766,0,0),(6767,0,0),(6768,0,0),(6769,0,0),(6770,0,0),(6771,0,0),(6772,0,0),(6773,0,0),(6774,0,0),(6775,0,0),(6776,0,0),(6777,0,0),(6778,0,0),(6779,0,0),(6780,0,0),(6781,0,0),(6782,0,0),(6783,0,0),(6784,0,0),(6785,0,0),(6786,0,0),(6787,0,0),(6788,0,0),(6789,0,0),(6790,0,0),(6791,0,0),(6792,0,0),(6793,0,0),(6794,0,0),(6795,0,0),(6796,0,0),(6797,0,0),(6798,0,0),(6799,0,0),(6800,0,0),(6801,0,0),(6802,0,0),(6803,0,0),(6804,0,0),(6805,0,0),(6806,0,0),(6807,0,0),(6808,0,0),(6809,0,0),(6810,0,0),(6811,0,0),(6812,0,0),(6813,0,0),(6814,0,0),(6815,0,0),(6816,0,0),(6817,0,0),(6818,0,0),(6819,0,0),(6820,0,0),(6821,0,0),(6822,0,0),(6823,0,0),(6824,0,0),(6825,0,0),(6826,0,0),(6827,0,0),(6828,0,0),(6829,0,0),(6830,0,0),(6831,0,0),(6832,0,0),(6833,0,0),(6834,0,0),(6835,0,0),(6836,0,0),(6837,0,0),(6838,0,0),(6839,0,0),(6840,0,0),(6841,0,0),(6842,0,0),(6843,0,0),(6844,0,0),(6845,0,0),(6846,0,0),(6847,0,0),(6848,0,0),(6849,0,0),(6850,0,0),(6851,0,0),(6852,0,0),(6853,0,0),(6854,0,0),(6855,0,0),(6856,0,0),(6857,0,0),(6858,0,0),(6859,0,0),(6860,0,0),(6861,0,0),(6862,0,0),(6863,0,0),(6864,0,0),(6865,0,0),(6866,0,0),(6867,0,0),(6868,0,0),(6869,0,0),(6870,0,0),(6871,0,0),(6872,0,0),(6873,0,0),(6874,0,0),(6875,0,0),(6876,0,0),(6877,0,0),(6878,0,0),(6879,0,0),(6880,0,0),(6881,0,0),(6882,0,0),(6883,0,0),(6884,0,0),(6885,0,0),(6886,0,0),(6887,0,0),(6888,0,0),(6889,0,0),(6890,0,0),(6891,0,0),(6892,0,0),(6893,0,0),(6894,0,0),(6895,0,0),(6896,0,0),(6897,0,0),(6898,0,0),(6899,0,0),(6900,0,0),(6901,0,0),(6902,0,0),(6903,0,0),(6904,0,0),(6905,0,0),(6906,0,0),(6907,0,0),(6908,0,0),(6909,0,0),(6910,0,0),(6911,0,0),(6912,0,0),(6913,0,0),(6914,0,0),(6915,0,0),(6916,0,0),(6917,0,0),(6918,0,0),(6919,0,0),(6920,0,0),(6921,0,0),(6922,0,0),(6923,0,0),(6924,0,0),(6925,0,0),(6926,0,0),(6927,0,0),(6928,0,0),(6929,0,0),(6930,0,0),(6931,0,0),(6932,0,0),(6933,0,0),(6934,0,0),(6935,0,0),(6936,0,0),(6937,0,0),(6938,0,0),(6939,0,0),(6940,0,0),(6941,0,0),(6942,0,0),(6943,0,0),(6944,0,0),(6945,0,0),(6946,0,0),(6947,0,0),(6948,0,0),(6949,0,0),(6950,0,0),(6951,0,0),(6952,0,0),(6953,0,0),(6954,0,0),(6955,0,0),(6956,0,0),(6957,0,0),(6958,0,0),(6959,0,0),(6960,0,0),(6961,0,0),(6962,0,0),(6963,0,0),(6964,0,0),(6965,0,0),(6966,0,0),(6967,0,0),(6968,0,0),(6969,0,0),(6970,0,0),(6971,0,0),(6972,0,0),(6973,0,0),(6974,0,0),(6975,0,0),(6976,0,0),(6977,0,0),(6978,0,0),(6979,0,0),(6980,0,0),(6981,0,0),(6982,0,0),(6983,0,0),(6984,0,0),(6985,0,0),(6986,0,0),(6987,0,0),(6988,0,0),(6989,0,0),(6990,0,0),(6991,0,0),(6992,0,0),(6993,0,0),(6994,0,0),(6995,0,0),(6996,0,0),(6997,0,0),(6998,0,0),(6999,0,0),(7000,0,0),(7001,0,0),(7002,0,0),(7003,0,0),(7004,0,0),(7005,0,0),(7006,0,0),(7007,0,0),(7008,0,0),(7009,0,0),(7010,0,0),(7011,0,0),(7012,0,0),(7013,0,0),(7014,0,0),(7015,0,0),(7016,0,0),(7017,0,0),(7018,0,0),(7019,0,0),(7020,0,0),(7021,0,0),(7022,0,0),(7023,0,0),(7024,0,0),(7025,0,0),(7026,0,0),(7027,0,0),(7028,0,0),(7029,0,0),(7030,0,0),(7031,0,0),(7032,0,0),(7033,0,0),(7034,0,0),(7035,0,0),(7036,0,0),(7037,0,0),(7038,0,0),(7039,0,0),(7040,0,0),(7041,0,0),(7042,0,0),(7043,0,0),(7044,0,0),(7045,0,0),(7046,0,0),(7047,0,0),(7048,0,0),(7049,0,0),(7050,0,0),(7051,0,0),(7052,0,0),(7053,0,0),(7054,0,0),(7055,0,0),(7056,0,0),(7057,0,0),(7058,0,0),(7059,0,0),(7060,0,0),(7061,0,0),(7062,0,0),(7063,0,0),(7064,0,0),(7065,0,0),(7066,0,0),(7067,0,0),(7068,0,0),(7069,0,0),(7070,0,0),(7071,0,0),(7072,0,0),(7073,0,0),(7074,0,0),(7075,0,0),(7076,0,0),(7077,0,0),(7078,0,0),(7079,0,0),(7080,0,0),(7081,0,0),(7082,0,0),(7083,0,0),(7084,0,0),(7085,0,0),(7086,0,0),(7087,0,0),(7088,0,0),(7089,0,0),(7090,0,0),(7091,0,0),(7092,0,0),(7093,0,0),(7094,0,0),(7095,0,0),(7096,0,0),(7097,0,0),(7098,0,0),(7099,0,0),(7100,0,0),(7101,0,0),(7102,0,0),(7103,0,0),(7104,0,0),(7105,0,0),(7106,0,0),(7107,0,0),(7108,0,0),(7109,0,0),(7110,0,0),(7111,0,0),(7112,0,0),(7113,0,0),(7114,0,0),(7115,0,0),(7116,0,0),(7117,0,0),(7118,0,0),(7119,0,0),(7120,0,0),(7121,0,0),(7122,0,0),(7123,0,0),(7124,0,0),(7125,0,0),(7126,0,0),(7127,0,0),(7128,0,0),(7129,0,0),(7130,0,0),(7131,0,0),(7132,0,0),(7133,0,0),(7134,0,0),(7135,0,0),(7136,0,0),(7137,0,0),(7138,0,0),(7139,0,0),(7140,0,0),(7141,0,0),(7142,0,0),(7143,0,0),(7144,0,0),(7145,0,0),(7146,0,0),(7147,0,0),(7148,0,0),(7149,0,0),(7150,0,0),(7151,0,0),(7152,0,0),(7153,0,0),(7154,0,0),(7155,0,0),(7156,0,0),(7157,0,0),(7158,0,0),(7159,0,0),(7160,0,0),(7161,0,0),(7162,0,0),(7163,0,0),(7164,0,0),(7165,0,0),(7166,0,0),(7167,0,0),(7168,0,0),(7169,0,0),(7170,0,0),(7171,0,0),(7172,0,0),(7173,0,0),(7174,0,0),(7175,0,0),(7176,0,0),(7177,0,0),(7178,0,0),(7179,0,0),(7180,0,0),(7181,0,0),(7182,0,0),(7183,0,0),(7184,0,0),(7185,0,0),(7186,0,0),(7187,0,0),(7188,0,0),(7189,0,0),(7190,0,0),(7191,0,0),(7192,0,0),(7193,0,0),(7194,0,0),(7195,0,0),(7196,0,0),(7197,0,0),(7198,0,0),(7199,0,0),(7200,0,0),(7201,0,0),(7202,0,0),(7203,0,0),(7204,0,0),(7205,0,0),(7206,0,0),(7207,0,0),(7208,0,0),(7209,0,0),(7210,0,0),(7211,0,0),(7212,0,0),(7213,0,0),(7214,0,0),(7215,0,0),(7216,0,0),(7217,0,0),(7218,0,0),(7219,0,0),(7220,0,0),(7221,0,0),(7222,0,0),(7223,0,0),(7224,0,0),(7225,0,0),(7226,0,0),(7227,0,0),(7228,0,0),(7229,0,0),(7230,0,0),(7231,0,0),(7232,0,0),(7233,0,0),(7234,0,0),(7235,0,0),(7236,0,0),(7237,0,0),(7238,0,0),(7239,0,0),(7240,0,0),(7241,0,0),(7242,0,0),(7243,0,0),(7244,0,0),(7245,0,0),(7246,0,0),(7247,0,0),(7248,0,0),(7249,0,0),(7250,0,0),(7251,0,0),(7252,0,0),(7253,0,0),(7254,0,0),(7255,0,0),(7256,0,0),(7257,0,0),(7258,0,0),(7259,0,0),(7260,0,0),(7261,0,0),(7262,0,0),(7263,0,0),(7264,0,0),(7265,0,0),(7266,0,0),(7267,0,0),(7268,0,0),(7269,0,0),(7270,0,0),(7271,0,0),(7272,0,0),(7273,0,0),(7274,0,0),(7275,0,0),(7276,0,0),(7277,0,0),(7278,0,0),(7279,0,0),(7280,0,0),(7281,0,0),(7282,0,0),(7283,0,0),(7284,0,0),(7285,0,0),(7286,0,0),(7287,0,0),(7288,0,0),(7289,0,0),(7290,0,0),(7291,0,0),(7292,0,0),(7293,0,0),(7294,0,0),(7295,0,0),(7296,0,0),(7297,0,0),(7298,0,0),(7299,0,0),(7300,0,0),(7301,0,0),(7302,0,0),(7303,0,0),(7304,0,0),(7305,0,0),(7306,0,0),(7307,0,0),(7308,0,0),(7309,0,0),(7310,0,0),(7311,0,0),(7312,0,0),(7313,0,0),(7314,0,0),(7315,0,0),(7316,0,0),(7317,0,0),(7318,0,0),(7319,0,0),(7320,0,0),(7321,0,0),(7322,0,0),(7323,0,0),(7324,0,0),(7325,0,0),(7326,0,0),(7327,0,0),(7328,0,0),(7329,0,0),(7330,0,0),(7331,0,0),(7332,0,0),(7333,0,0),(7334,0,0),(7335,0,0),(7336,0,0),(7337,0,0),(7338,0,0),(7339,0,0),(7340,0,0),(7341,0,0),(7342,0,0),(7343,0,0),(7344,0,0),(7345,0,0),(7346,0,0),(7347,0,0),(7348,0,0),(7349,0,0),(7350,0,0),(7351,0,0),(7352,0,0),(7353,0,0),(7354,0,0),(7355,0,0),(7356,0,0),(7357,0,0),(7358,0,0),(7359,0,0),(7360,0,0),(7361,0,0),(7362,0,0),(7363,0,0),(7364,0,0),(7365,0,0),(7366,0,0),(7367,0,0),(7368,0,0),(7369,0,0),(7370,0,0),(7371,0,0),(7372,0,0),(7373,0,0),(7374,0,0),(7375,0,0),(7376,0,0),(7377,0,0),(7378,0,0),(7379,0,0),(7380,0,0),(7381,0,0),(7382,0,0),(7383,0,0),(7384,0,0),(7385,0,0),(7386,0,0),(7387,0,0),(7388,0,0),(7389,0,0),(7390,0,0),(7391,0,0),(7392,0,0),(7393,0,0),(7394,0,0),(7395,0,0),(7396,0,0),(7397,0,0),(7398,0,0),(7399,0,0),(7400,0,0),(7401,0,0),(7402,0,0),(7403,0,0),(7404,0,0),(7405,0,0),(7406,0,0),(7407,0,0),(7408,0,0),(7409,0,0),(7410,0,0),(7411,0,0),(7412,0,0),(7413,0,0),(7414,0,0),(7415,0,0),(7416,0,0),(7417,0,0),(7418,0,0),(7419,0,0),(7420,0,0),(7421,0,0),(7422,0,0),(7423,0,0),(7424,0,0),(7425,0,0),(7426,0,0),(7427,0,0),(7428,0,0),(7429,0,0),(7430,0,0),(7431,0,0),(7432,0,0),(7433,0,0),(7434,0,0),(7435,0,0),(7436,0,0),(7437,0,0),(7438,0,0),(7439,0,0),(7440,0,0),(7441,0,0),(7442,0,0),(7443,0,0),(7444,0,0),(7445,0,0),(7446,0,0),(7447,0,0),(7448,0,0),(7449,0,0),(7450,0,0),(7451,0,0),(7452,0,0),(7453,0,0),(7454,0,0),(7455,0,0),(7456,0,0),(7457,0,0),(7458,0,0),(7459,0,0),(7460,0,0),(7461,0,0),(7462,0,0),(7463,0,0),(7464,0,0),(7465,0,0),(7466,0,0),(7467,0,0),(7468,0,0),(7469,0,0),(7470,0,0),(7471,0,0),(7472,0,0),(7473,0,0),(7474,0,0),(7475,0,0),(7476,0,0),(7477,0,0),(7478,0,0),(7479,0,0),(7480,0,0),(7481,0,0),(7482,0,0),(7483,0,0),(7484,0,0),(7485,0,0),(7486,0,0),(7487,0,0),(7488,0,0),(7489,0,0),(7490,0,0),(7491,0,0),(7492,0,0),(7493,0,0),(7494,0,0),(7495,0,0),(7496,0,0),(7497,0,0),(7498,0,0),(7499,0,0),(7500,0,0),(7501,0,0),(7502,0,0),(7503,0,0),(7504,0,0),(7505,0,0),(7506,0,0),(7507,0,0),(7508,0,0),(7509,0,0),(7510,0,0),(7511,0,0),(7512,0,0),(7513,0,0),(7514,0,0),(7515,0,0),(7516,0,0),(7517,0,0),(7518,0,0),(7519,0,0),(7520,0,0),(7521,0,0),(7522,0,0),(7523,0,0),(7524,0,0),(7525,0,0),(7526,0,0),(7527,0,0),(7528,0,0),(7529,0,0),(7530,0,0),(7531,0,0),(7532,0,0),(7533,0,0),(7534,0,0),(7535,0,0),(7536,0,0),(7537,0,0),(7538,0,0),(7539,0,0),(7540,0,0),(7541,0,0),(7542,0,0),(7543,0,0),(7544,0,0),(7545,0,0),(7546,0,0),(7547,0,0),(7548,0,0),(7549,0,0),(7550,0,0),(7551,0,0),(7552,0,0),(7553,0,0),(7554,0,0),(7555,0,0),(7556,0,0),(7557,0,0),(7558,0,0),(7559,0,0),(7560,0,0),(7561,0,0),(7562,0,0),(7563,0,0),(7564,0,0),(7565,0,0),(7566,0,0),(7567,0,0),(7568,0,0),(7569,0,0),(7570,0,0),(7571,0,0),(7572,0,0),(7573,0,0),(7574,0,0),(7575,0,0),(7576,0,0),(7577,0,0),(7578,0,0),(7579,0,0),(7580,0,0),(7581,0,0),(7582,0,0),(7583,0,0),(7584,0,0),(7585,0,0),(7586,0,0),(7587,0,0),(7588,0,0),(7589,0,0),(7590,0,0),(7591,0,0),(7592,0,0),(7593,0,0),(7594,0,0),(7595,0,0),(7596,0,0),(7597,0,0),(7598,0,0),(7599,0,0),(7600,0,0),(7601,0,0),(7602,0,0),(7603,0,0),(7604,0,0),(7605,0,0),(7606,0,0),(7607,0,0),(7608,0,0),(7609,0,0),(7610,0,0),(7611,0,0),(7612,0,0),(7613,0,0),(7614,0,0),(7615,0,0),(7616,0,0),(7617,0,0),(7618,0,0),(7619,0,0),(7620,0,0),(7621,0,0),(7622,0,0),(7623,0,0),(7624,0,0),(7625,0,0),(7626,0,0),(7627,0,0),(7628,0,0),(7629,0,0),(7630,0,0),(7631,0,0),(7632,0,0),(7633,0,0),(7634,0,0),(7635,0,0),(7636,0,0),(7637,0,0),(7638,0,0),(7639,0,0),(7640,0,0),(7641,0,0),(7642,0,0),(7643,0,0),(7644,0,0),(7645,0,0),(7646,0,0),(7647,0,0),(7648,0,0),(7649,0,0),(7650,0,0),(7651,0,0),(7652,0,0),(7653,0,0),(7654,0,0),(7655,0,0),(7656,0,0),(7657,0,0),(7658,0,0),(7659,0,0),(7660,0,0),(7661,0,0),(7662,0,0),(7663,0,0),(7664,0,0),(7665,0,0),(7666,0,0),(7667,0,0),(7668,0,0),(7669,0,0),(7670,0,0),(7671,0,0),(7672,0,0),(7673,0,0),(7674,0,0),(7675,0,0),(7676,0,0),(7677,0,0),(7678,0,0),(7679,0,0),(7680,0,0),(7681,0,0),(7682,0,0),(7683,0,0),(7684,0,0),(7685,0,0),(7686,0,0),(7687,0,0),(7688,0,0),(7689,0,0),(7690,0,0),(7691,0,0),(7692,0,0),(7693,0,0),(7694,0,0),(7695,0,0),(7696,0,0),(7697,0,0),(7698,0,0),(7699,0,0),(7700,0,0),(7701,0,0),(7702,0,0),(7703,0,0),(7704,0,0),(7705,0,0),(7706,0,0),(7707,0,0),(7708,0,0),(7709,0,0),(7710,0,0),(7711,0,0),(7712,0,0),(7713,0,0),(7714,0,0),(7715,0,0),(7716,0,0),(7717,0,0),(7718,0,0),(7719,0,0),(7720,0,0),(7721,0,0),(7722,0,0),(7723,0,0),(7724,0,0),(7725,0,0),(7726,0,0),(7727,0,0),(7728,0,0),(7729,0,0),(7730,0,0),(7731,0,0),(7732,0,0),(7733,0,0),(7734,0,0),(7735,0,0),(7736,0,0),(7737,0,0),(7738,0,0),(7739,0,0),(7740,0,0),(7741,0,0),(7742,0,0),(7743,0,0),(7744,0,0),(7745,0,0),(7746,0,0),(7747,0,0),(7748,0,0),(7749,0,0),(7750,0,0),(7751,0,0),(7752,0,0),(7753,0,0),(7754,0,0),(7755,0,0),(7756,0,0),(7757,0,0),(7758,0,0),(7759,0,0),(7760,0,0),(7761,0,0),(7762,0,0),(7763,0,0),(7764,0,0),(7765,0,0),(7766,0,0),(7767,0,0),(7768,0,0),(7769,0,0),(7770,0,0),(7771,0,0),(7772,0,0),(7773,0,0),(7774,0,0),(7775,0,0),(7776,0,0),(7777,0,0),(7778,0,0),(7779,0,0),(7780,0,0),(7782,0,0),(7783,0,0),(7784,0,0),(7785,0,0),(7786,0,0),(7787,0,0),(7788,0,0),(7789,0,0),(7790,0,0),(7791,0,0),(7793,0,0),(7794,0,0),(7796,0,0),(7798,0,0),(7799,0,0),(7800,0,0),(7801,0,0),(7802,0,0),(7803,0,0),(7804,0,0),(7805,0,0),(7806,0,0),(7807,0,0),(7808,0,0),(7809,0,0),(7810,0,0),(7811,0,0),(7812,0,0),(7813,0,0),(7814,0,0),(7815,0,0),(7816,0,0),(7817,0,0),(7818,0,0),(7819,0,0),(7820,0,0),(7821,0,0),(7822,0,0),(7823,0,0),(7824,0,0),(7825,0,0),(7826,0,0),(7827,0,0),(7828,0,0),(7829,0,0),(7830,0,0),(7831,0,0),(7832,0,0),(7833,0,0),(7834,0,0),(7835,0,0),(7836,0,0),(7837,0,0),(7838,0,0),(7839,0,0),(7840,0,0),(7841,0,0),(7842,0,0),(7843,0,0),(7844,0,0),(7845,0,0),(7846,0,0),(7847,0,0),(7848,0,0),(7849,0,0),(7850,0,0),(7851,0,0),(7852,0,0),(7853,0,0),(7854,0,0),(7855,0,0),(7856,0,0),(7857,0,0),(7858,0,0),(7859,0,0),(7860,0,0),(7861,0,0),(7862,0,0),(7863,0,0),(7864,0,0),(7865,0,0),(7866,0,0),(7867,0,0),(7868,0,0),(7869,0,0),(7870,0,0),(7871,0,0),(7872,0,0),(7873,0,0),(7874,0,0),(7875,0,0),(7876,0,0),(7877,0,0),(7878,0,0),(7879,0,0),(7880,0,0),(7881,0,0),(7882,0,0),(7883,0,0),(7884,0,0),(7885,0,0),(7886,0,0),(7887,0,0),(7888,0,0),(7889,0,0),(7890,0,0),(7891,0,0),(7892,0,0),(7893,0,0),(7894,0,0),(7895,0,0),(7896,0,0),(7897,0,0),(7898,0,0),(7899,0,0),(7900,0,0),(7901,0,0),(7906,0,0),(7907,0,0),(7908,0,0),(7909,0,0),(7920,0,0),(7921,0,0),(7924,0,0),(7925,0,0),(7926,0,0),(7927,0,0),(7928,0,0),(7929,0,0),(7930,0,0),(7933,0,0),(7934,0,0),(7937,0,0),(7938,0,0),(7939,0,0),(7940,0,0),(7943,0,0),(7944,0,0),(7945,0,0),(7948,0,0),(7949,0,0),(7950,0,0),(7951,0,0),(7954,0,0),(7956,0,0),(7957,0,0),(7958,0,0),(7959,0,0),(7960,0,0),(7961,0,0),(7962,0,0),(7963,0,0),(7964,0,0),(7966,0,0),(7967,0,0),(7968,0,0),(7969,0,0),(7970,0,0),(7971,0,0),(7973,0,0),(7975,0,0),(7977,0,0),(7979,0,0),(7981,0,0),(7983,0,0),(7985,0,0),(7986,0,0),(7990,0,0),(7992,0,0),(7994,0,0),(7996,0,0),(7998,0,0),(8000,0,0),(8003,0,0),(8011,0,0),(8012,0,0),(8018,0,0),(8020,0,0),(8029,0,0),(8030,0,0),(8034,0,0),(8035,0,0),(8038,0,0),(8039,0,0),(8042,0,0),(8047,0,0),(8051,0,0),(8052,0,0),(8053,0,0),(8062,0,0),(8066,0,0),(8073,0,0),(8095,0,0),(8100,0,0),(8106,0,0),(8114,0,0),(8115,0,0),(8116,0,0),(8117,0,0),(8119,0,0),(8122,0,0),(8123,0,0),(8124,0,0),(8130,0,0),(8131,0,0),(8132,0,0),(8135,0,0),(8138,0,0),(8140,0,0),(8142,0,0),(8144,0,0),(8146,0,0),(8148,0,0),(8150,0,0),(8152,0,0),(8154,0,0),(8156,0,0),(8158,0,0),(8160,0,0),(8162,0,0),(8164,0,0),(8165,0,0),(8168,0,0),(8169,0,0),(8170,0,0),(8178,0,0),(8185,0,0),(8186,0,0),(8187,0,0),(8188,0,0),(8192,0,0),(8199,0,0),(8201,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2021-02-05  2:57:07
